:root {
  --blue: #2b6cb0;
  --purple: #6b46c1;
  --magenta: #c026d3;
  --orange: #ea580c;
  --pink: #db2777;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 1rem;
  --shadow: 0 4px 24px rgba(30, 41, 59, 0.08);
  --gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 45%, #ec4899 75%, #f97316 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.site-header {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.site-header .brand-link:hover {
  text-decoration: none;
  opacity: 0.9;
}

.site-header .sharda-logo {
  height: 90px;
  width: auto;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 1.25rem;
}

.site-nav a:hover {
  color: var(--purple);
  text-decoration: none;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-footer {
  margin-top: auto;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer a {
  color: var(--text-muted);
  margin: 0 0.75rem;
}

.site-footer a:hover {
  color: var(--purple);
}

/* Coming soon home */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding: 4rem 0 3rem;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: min(320px, 85vw);
  border-radius: 65px;
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-content .byline {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.hero-content .byline strong {
  color: var(--purple);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(236, 72, 153, 0.12));
  border-radius: 999px;
  margin-bottom: 1rem;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 0 3rem;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--purple);
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.store-section {
  text-align: center;
  padding: 2rem 0 3rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 1px solid #f1f5f9;
}

.store-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.store-section p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  background: #0f172a;
  color: var(--white);
  border-radius: 0.65rem;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: default;
  opacity: 0.85;
  border: none;
}

.store-badge svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.store-badge .label {
  text-align: left;
  line-height: 1.2;
}

.store-badge .label small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
  font-weight: 400;
}

.store-badge .label span {
  font-weight: 600;
  font-size: 1rem;
}

.store-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-strip {
  text-align: center;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-strip a {
  font-weight: 500;
}

/* Policy pages */
.policy-page {
  padding: 2rem 0 3rem;
}

.policy-page .policy-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.policy-page h1 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.policy-page .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.policy-content h2,
.policy-content h3 {
  color: var(--text);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.policy-content h2 {
  font-size: 1.25rem;
}

.policy-content h3 {
  font-size: 1.05rem;
}

.policy-content p,
.policy-content li {
  color: var(--text);
  font-size: 0.95rem;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.35rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 1rem;
}

.back-link:hover {
  text-decoration: none;
  opacity: 0.85;
}
