:root {
  color-scheme: light dark;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", Baskerville, Georgia, serif;
  --font-tamil: "Noto Sans Tamil UI", "Noto Sans Tamil", "Tamil MN", "Latha", sans-serif;
  --font-mono: "Geist Mono", "SF Mono", SFMono-Regular, ui-monospace, Menlo, Consolas, monospace;

  --bg: #f6f0e4;
  --bg-soft: #fbf6ec;
  --surface: rgba(255, 251, 244, 0.82);
  --surface-strong: rgba(255, 251, 244, 0.95);
  --surface-soft: rgba(255, 245, 226, 0.72);
  --line: rgba(54, 41, 29, 0.09);
  --line-strong: rgba(54, 41, 29, 0.16);
  --text: #1e1813;
  --text-soft: #675a4f;
  --text-muted: #8d7e71;
  --accent: #b87926;
  --accent-strong: #d19235;
  --accent-soft: rgba(184, 121, 38, 0.12);
  --accent-deep: #60472c;
  --focus: #d19235;
  --shadow-sm: 0 18px 38px rgba(61, 44, 22, 0.08);
  --shadow-lg: 0 28px 84px rgba(61, 44, 22, 0.12);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --page-width: 1120px;
  --header-width: 940px;
  --brand-accent: color-mix(in srgb, var(--accent-strong) 80%, white 20%);
}

:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #110f10;
  --bg-soft: #181415;
  --surface: rgba(29, 23, 24, 0.86);
  --surface-strong: rgba(24, 19, 20, 0.96);
  --surface-soft: rgba(41, 31, 22, 0.58);
  --line: rgba(244, 232, 213, 0.09);
  --line-strong: rgba(244, 232, 213, 0.16);
  --text: #f5ede1;
  --text-soft: #c5b8a7;
  --text-muted: #998c7d;
  --accent: #d39a45;
  --accent-strong: #efb35a;
  --accent-soft: rgba(211, 154, 69, 0.14);
  --accent-deep: #f2d1a0;
  --focus: #efb35a;
  --shadow-sm: 0 18px 42px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 36px 100px rgba(0, 0, 0, 0.4);
  --brand-accent: color-mix(in srgb, var(--accent-strong) 78%, white 22%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg: #110f10;
    --bg-soft: #181415;
    --surface: rgba(29, 23, 24, 0.86);
    --surface-strong: rgba(24, 19, 20, 0.96);
    --surface-soft: rgba(41, 31, 22, 0.58);
    --line: rgba(244, 232, 213, 0.09);
    --line-strong: rgba(244, 232, 213, 0.16);
    --text: #f5ede1;
    --text-soft: #c5b8a7;
    --text-muted: #998c7d;
    --accent: #d39a45;
    --accent-strong: #efb35a;
    --accent-soft: rgba(211, 154, 69, 0.14);
    --accent-deep: #f2d1a0;
    --focus: #efb35a;
    --shadow-sm: 0 18px 42px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 36px 100px rgba(0, 0, 0, 0.4);
    --brand-accent: color-mix(in srgb, var(--accent-strong) 78%, white 22%);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 179, 90, 0.14), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(118, 93, 61, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 88%, black 12%) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.28) 1px, transparent 0),
    linear-gradient(transparent 96%, rgba(255, 255, 255, 0.04) 100%);
  background-size: 22px 22px, 100% 4px;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  padding: 0.1rem 0.36rem;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
}

.site-header {
  position: relative;
  z-index: 40;
}

.header-inner,
.page-main,
.site-footer {
  width: min(var(--page-width), calc(100% - 2rem));
  margin: 0 auto;
}

.header-inner {
  width: min(var(--header-width), calc(100% - 2rem));
}

.page-main {
  padding: 0 0 5rem;
}

.theme-toggle,
.nav-link,
.footer-links a,
.cta-link,
.support-link,
.text-link {
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.nav-link {
  color: var(--text-soft);
}

.nav-link:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--accent-strong);
}

.theme-toggle {
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  color: var(--text-soft);
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--accent) 24%, var(--line-strong));
  background: color-mix(in srgb, var(--accent-soft) 68%, var(--surface-strong));
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle-icon {
  display: none;
  width: 18px;
  height: 18px;
}

.theme-toggle-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  line-height: 1;
}

.theme-toggle[data-theme-state] {
  width: 40px;
  padding: 0;
}

.theme-toggle[data-theme-state] .theme-toggle-fallback {
  display: none;
}

.theme-toggle[data-theme-state="light"] .theme-toggle-icon-sun,
.theme-toggle[data-theme-state="dark"] .theme-toggle-icon-moon {
  display: inline-flex;
}

.hero {
  position: relative;
  padding: 1.5rem 0 3rem;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(239, 179, 90, 0.14), transparent 32rem),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 90%, transparent) 0%, color-mix(in srgb, var(--surface) 92%, transparent) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-strong) 30%, transparent);
  pointer-events: none;
}

.hero-frame::before {
  width: 16rem;
  height: 16rem;
  top: -7rem;
  right: -4rem;
  opacity: 0.22;
}

.hero-frame::after {
  width: 12rem;
  height: 12rem;
  bottom: -5rem;
  left: -3rem;
  opacity: 0.16;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-mark {
  width: clamp(4.8rem, 14vw, 6.3rem);
  aspect-ratio: 1;
  border-radius: 28px;
  box-shadow: 0 24px 42px rgba(190, 130, 40, 0.16);
}

.hero-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}

.hero-preview-glow {
  position: absolute;
  inset: 10% 4% 6%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 215, 146, 0.32), transparent 26%),
    radial-gradient(circle at 30% 78%, rgba(180, 113, 44, 0.22), transparent 30%),
    radial-gradient(circle at 74% 60%, rgba(255, 196, 119, 0.12), transparent 34%);
  filter: blur(28px);
  opacity: 0.96;
}

.hero-stage {
  position: relative;
  width: min(100%, 360px);
  min-height: 100%;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 5% 0 2%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 56% 14%, rgba(255, 210, 145, 0.3), transparent 20%),
    radial-gradient(circle at 50% 55%, rgba(79, 46, 20, 0.4), transparent 46%),
    linear-gradient(180deg, rgba(33, 21, 18, 0.3) 0%, rgba(14, 11, 11, 0.05) 100%);
  opacity: 0.78;
}

.hero-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 314px);
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(16, 15, 15, 0.98) 0%, rgba(7, 7, 8, 1) 100%);
  border: 1px solid rgba(255, 241, 219, 0.12);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.48),
    0 8px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 82px;
  height: 8px;
  border-radius: 999px;
  background: rgba(18, 17, 18, 0.96);
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-screen {
  position: relative;
  overflow: hidden;
  min-height: 572px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 214, 143, 0.95), rgba(255, 231, 186, 0.72) 28%, transparent 42%),
    linear-gradient(180deg, #fbefd9 0%, #f6ead6 32%, #f1e3cb 100%);
  color: #251b14;
}

.hero-screen-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 3.9rem 1.25rem 1.2rem;
}

.hero-sun-halo {
  position: absolute;
  top: -44px;
  left: 50%;
  width: 232px;
  height: 232px;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(255, 247, 227, 0.98) 0%, rgba(255, 214, 140, 0.96) 40%, rgba(255, 192, 102, 0.2) 66%, transparent 72%);
  opacity: 0.95;
}

.hero-screen-heading {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  text-align: center;
}

.hero-screen-day {
  margin: 0;
  color: #291c14;
  font-size: 1.52rem;
  font-weight: 780;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-screen-date,
.hero-screen-city {
  margin: 0;
  color: rgba(58, 41, 31, 0.82);
  font-size: 0.98rem;
  font-weight: 560;
}

.hero-local-copy {
  font-family: var(--font-tamil);
  letter-spacing: 0;
}

.hero-screen-city span {
  color: rgba(80, 57, 41, 0.82);
}

.hero-screen-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(109, 77, 52, 0.22) 18%, rgba(109, 77, 52, 0.22) 82%, transparent 100%);
}

.hero-summary-list {
  display: grid;
  gap: 0.2rem;
}

.hero-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.74rem 0;
  border-bottom: 1px solid rgba(109, 77, 52, 0.12);
}

.hero-summary-row:last-child {
  border-bottom: 0;
}

.hero-summary-copy {
  display: grid;
  gap: 0.08rem;
}

.hero-summary-copy strong {
  color: #261b14;
  font-size: 0.98rem;
  font-weight: 650;
}

.hero-summary-copy span {
  color: rgba(87, 62, 45, 0.78);
  font-size: 0.9rem;
}

.hero-summary-value {
  color: #3a291f;
  font-size: 0.94rem;
  font-weight: 620;
  white-space: nowrap;
}

.hero-lucky-panel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(109, 77, 52, 0.14);
}

.hero-lucky-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(204, 143, 62, 0.14);
  color: #9b5f1f;
  font-size: 1.28rem;
  font-weight: 700;
}

.hero-kicker,
.section-kicker,
.card-kicker,
.eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.section-title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 5.8rem);
}

.page-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.hero-title em,
.page-title em,
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}

.hero-copy,
.hero-support-copy,
.section-copy,
.intro,
.faq-answer {
  margin: 0;
  max-width: 42rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero-copy {
  max-width: 34rem;
}

.hero-copy strong,
.section-copy strong,
.intro strong {
  color: var(--text);
}

.hero-actions,
.pill-row,
.footer-links,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cta-link,
.cta-pill,
.release-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
}

.cta-link {
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
  color: var(--text);
}

.cta-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line-strong));
  background: color-mix(in srgb, var(--accent-soft) 68%, var(--surface-strong));
}

.cta-link-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1c140d;
}

.cta-link-primary:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 92%, white 8%) 0%, color-mix(in srgb, var(--accent-strong) 92%, white 8%) 100%);
}

.release-pill {
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line-strong));
  background: color-mix(in srgb, var(--accent-soft) 84%, var(--surface-soft));
  color: var(--text);
}

.release-pill strong {
  color: var(--accent-strong);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.meta-card,
.feature-card,
.policy-card,
.support-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  box-shadow: var(--shadow-sm);
}

.meta-card,
.feature-card,
.policy-card,
.support-card {
  padding: 1.05rem;
}

.meta-label,
.faq-question {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.meta-card strong,
.feature-card h3,
.policy-card h2,
.support-card h2 {
  display: block;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.meta-card p,
.feature-card p,
.policy-card p,
.policy-card li,
.support-card p,
.faq-answer,
.footer-note,
.page-date {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
}

.section,
.privacy-band,
.page-hero,
.support-panel {
  margin-top: 2.4rem;
}

.section-grid,
.policy-grid,
.support-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.feature-card h3,
.policy-card h2,
.support-card h2 {
  margin-top: 0.35rem;
}

.pull-quote {
  margin: 2rem auto 0;
  max-width: 32rem;
  color: var(--accent-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.34rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.feature-card p,
.support-card p {
  margin-top: 0.45rem;
}

.policy-grid--two {
  margin-top: 1.2rem;
}

.policy-closing-note {
  margin: 1.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.feature-list,
.detail-list {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.detail-list li + li,
.feature-list li + li {
  margin-top: 0.42rem;
}

.privacy-band {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(239, 179, 90, 0.12), transparent 18rem),
    color-mix(in srgb, var(--surface-strong) 86%, transparent);
}

.privacy-band h2,
.page-hero h1 {
  margin: 0;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.privacy-pills li {
  padding: 0.5rem 0.78rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.support-panel {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-soft) 84%, transparent);
}

.page-hero {
  padding: 1rem 0 0.3rem;
}

.page-hero--tight {
  padding-bottom: 0;
}

.page-date {
  font-size: 0.94rem;
}

.policy-grid .policy-card h2,
.support-grid .support-card h2 {
  font-size: 1.02rem;
}

.policy-card p + p,
.support-card p + p {
  margin-top: 0.55rem;
}

.faq-grid {
  margin-top: 1rem;
}

.faq-item {
  padding: 1rem 1.05rem;
}

.faq-question {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-note {
  font-size: 0.84rem;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
    align-items: stretch;
  }

  .section-grid,
  .policy-grid,
  .support-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .policy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .policy-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .hero-frame {
    padding: 1.2rem;
  }

  .hero-screen {
    min-height: 500px;
  }

  .hero-preview {
    margin-top: 0.4rem;
  }

  .hero-screen-day {
    font-size: 1.34rem;
  }

  .hero-screen-date,
  .hero-screen-city {
    font-size: 0.92rem;
  }
}
