/* ==========================================================================
   Dhvani AI — marketing site
   Direction A ("Ground Truth"). Dark is the brand default and matches the
   product app, which is dark-locked; light is a full peer theme, not a tint.

   Every text/background pair below was checked against WCAG AA (4.5:1 for
   body, 3:1 for large text) in BOTH themes. If you change a token, re-check
   it — several of these values are deliberately lighter/darker than they
   look like they need to be.
   ========================================================================== */

/* ---------- tokens: dark (default) ---------- */
:root {
  --bg: #0B0B11;
  --surface: #14141C;
  --surface-2: #17171F;
  --surface-3: #101017;

  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.17);

  --text: #FAFAFA;      /* 18.9:1 */
  --text-2: #C8C8D0;    /* 11.6:1 — body copy */
  --muted: #A6A6B0;     /*  8.0:1 */
  --dim: #9296A0;       /*  6.4:1 — small labels */
  --faint: #8A8A94;     /*  5.7:1 — smallest labels */

  --accent: #818CF8;            /* 6.9:1 — indigo for text/icons on dark */
  --accent-solid: #4F46E5;      /* button fill */
  --accent-solid-hover: #6366F1;
  --accent-text: #FBBF24;       /* 12.0:1 — amber eyebrow */
  --accent-soft-bg: rgba(79, 70, 229, 0.12);
  --accent-soft-border: rgba(129, 140, 248, 0.28);
  --accent-soft-text: #C7D2FE;

  --mark-a: #818CF8;
  --mark-b: #F59E0B;
  --pip: #F59E0B;
  --btn-primary-text: #FFFFFF;

  --ripple-opacity: 0.32;
  --shadow: none;

  --radius: 6px;
  --radius-lg: 10px;
  --wrap: 1180px;

  color-scheme: dark;
}

/* ---------- tokens: light ---------- */
:root[data-theme="light"] {
  --bg: #FCFCFD;
  --surface: #FFFFFF;
  --surface-2: #F5F5F8;
  --surface-3: #F0F0F4;

  --border: rgba(11, 11, 17, 0.11);
  --border-strong: rgba(11, 11, 17, 0.22);

  --text: #14141B;      /* 18.1:1 */
  --text-2: #3A3A45;    /* 10.8:1 */
  --muted: #4C4C58;     /*  8.1:1 */
  --dim: #5C5C68;       /*  6.4:1 */
  --faint: #6A6A76;     /*  5.3:1 */

  --accent: #4338CA;            /* 8.2:1 */
  --accent-solid: #4F46E5;
  --accent-solid-hover: #4338CA;
  --accent-text: #92400E;       /* 8.8:1 — amber reads as burnt sienna on light */
  --accent-soft-bg: rgba(79, 70, 229, 0.07);
  --accent-soft-border: rgba(79, 70, 229, 0.22);
  --accent-soft-text: #3730A3;

  --mark-a: #4F46E5;
  --mark-b: #F59E0B;
  --pip: #B45309;

  --ripple-opacity: 0.26;
  --shadow: 0 1px 2px rgba(11, 11, 17, 0.05), 0 12px 28px -20px rgba(11, 11, 17, 0.25);

  color-scheme: light;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Geist, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  transition: background-color 0.2s ease, color 0.2s ease;
}

h1, h2, h3 { margin: 0; font-weight: 600; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--accent-solid);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 500;
}
.skip:focus { left: 16px; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 40px;
}

.deva, .deva-inline { font-family: "Noto Sans Devanagari", Geist, sans-serif; }
/* One family per script — a language row that renders in system fallbacks
   undercuts the whole claim the section is making. */
.s-beng { font-family: "Noto Sans Bengali", Geist, sans-serif; }
.s-taml { font-family: "Noto Sans Tamil", Geist, sans-serif; }
.s-telu { font-family: "Noto Sans Telugu", Geist, sans-serif; }
.s-knda { font-family: "Noto Sans Kannada", Geist, sans-serif; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { width: 28px; height: 28px; flex-shrink: 0; }
.brand-word { font-size: 19px; font-weight: 600; letter-spacing: -0.4px; }
.brand-ai { color: var(--mark-b); font-weight: 400; }
:root[data-theme="light"] .brand-ai { color: var(--accent); }

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a { color: var(--muted); font-size: 15px; }
.nav-desktop a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.link-quiet { color: var(--muted); font-size: 15px; }
.link-quiet:hover { color: var(--text); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.icon-btn:hover { color: var(--text); background: var(--surface); border-color: var(--border); }
.icon-btn svg { width: 20px; height: 20px; }

/* theme toggle: show the icon for the theme you would switch TO */
.icon-sun { display: none; }
.icon-moon { display: block; }
:root[data-theme="light"] .icon-sun { display: none; }
:root[data-theme="light"] .icon-moon { display: block; }
:root:not([data-theme="light"]) .icon-sun { display: block; }
:root:not([data-theme="light"]) .icon-moon { display: none; }

.nav-toggle { display: none; }
.icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 15.5px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary { background: var(--accent-solid); color: var(--btn-primary-text); }
.btn-primary:hover { background: var(--accent-solid-hover); color: var(--btn-primary-text); }

.btn-ghost { border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface); color: var(--text); }

.btn-sm { min-height: 40px; padding: 9px 18px; font-size: 14.5px; }

.link-arrow { display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; }
.link-arrow svg { width: 15px; height: 15px; }

/* ---------- shared section furniture ---------- */
.section { padding-block: 92px; border-bottom: 1px solid var(--border); }

.eyebrow {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}
.eyebrow-accent { color: var(--accent-text); display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.eyebrow-accent .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.h2 { font-size: 42px; line-height: 1.1; letter-spacing: -1.6px; }
.lede { font-size: 17px; line-height: 1.62; color: var(--muted); margin-top: 20px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}
.section-head .h2 { max-width: 620px; }
.section-head-stack { display: block; }
.section-head-stack .h2 { max-width: 720px; }
.section-aside { font-size: 16.5px; line-height: 1.6; color: var(--muted); max-width: 380px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }

.hero-ripple {
  position: absolute;
  right: -300px;
  top: -220px;
  width: 900px;
  height: 900px;
  pointer-events: none;
  opacity: var(--ripple-opacity);
}
.hero-ripple svg { width: 100%; height: 100%; }

.ring { transform-origin: 256px 256px; animation: pulse 6s ease-out infinite; }
.ring-2 { animation-delay: 1.2s; }
.ring-3 { animation-delay: 2.4s; }
@keyframes pulse {
  0%   { transform: scale(0.35); opacity: 0; }
  18%  { opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 64px;
  align-items: center;
  padding-block: 96px 100px;
}

.hero-title { font-size: 66px; line-height: 1.03; letter-spacing: -2.6px; }
.hero-sub { font-size: 19.5px; line-height: 1.55; color: var(--muted); max-width: 33em; margin-top: 28px; }

/* The spoken promise is the page's thesis: the one sentence every Dhvani call
   opens with, in the dialect it is actually spoken in. It carries the hero. */
.spoken {
  margin: 0;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.spoken-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--dim);
}
.spoken-line {
  margin: 20px 0 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--text);
}
.wave { display: block; width: 100%; height: 34px; margin-top: 22px; fill: var(--accent); opacity: 0.55; }
.spoken-gloss { margin-top: 18px; font-size: 15.5px; color: var(--text-2); }
.spoken-note { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--dim); }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 38px; }

.hero-points { display: flex; flex-direction: column; gap: 11px; margin-top: 46px; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--faint); }
.hero-points svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- split layout ---------- */
.split { display: grid; gap: 56px; align-items: start; }
.split-5-7 { grid-template-columns: 5fr 7fr; }

.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; color: var(--text-2); }
.feature-list svg { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; color: var(--accent); }

/* ---------- call card ---------- */
.call-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.call-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.call-title { display: flex; align-items: center; gap: 11px; }
.call-title h3 { font-size: 14.5px; font-weight: 500; }
.pip { width: 7px; height: 7px; border-radius: 50%; background: var(--pip); flex-shrink: 0; }
.call-meta {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: var(--dim);
  text-transform: uppercase;
  white-space: nowrap;
}

.call-note {
  padding: 12px 22px;
  font-size: 13px;
  color: var(--dim);
  border-bottom: 1px solid var(--border);
  background: var(--surface-3);
}

.turns { display: flex; flex-direction: column; gap: 20px; padding: 26px 22px; }
.turn { display: flex; flex-direction: column; gap: 7px; }
.turn-citizen { padding-left: 26px; border-left: 2px solid var(--accent-soft-border); }

.who {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
}
.turn-citizen .who { color: var(--accent-text); }

.turn .deva { font-size: 16.5px; line-height: 1.72; color: var(--text); }
.turn-citizen .deva { color: var(--text-2); }
.gloss { font-size: 14px; line-height: 1.5; color: var(--dim); }

.call-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: var(--accent-soft-bg);
  border: 1px solid var(--accent-soft-border);
  border-radius: var(--radius);
}
.call-callout svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.call-callout p { font-size: 14px; line-height: 1.5; color: var(--accent-soft-text); }

.call-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  background: var(--surface-3);
}
.call-foot span {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.card p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.card-accent { border-color: var(--accent-soft-border); }
.card-sm { gap: 13px; padding: 26px; }
.card-sm p { font-size: 14.5px; }

.card-icon { width: 24px; height: 24px; color: var(--accent); }
.card-icon-amber { color: var(--accent-text); }

.card-title { font-size: 19px; letter-spacing: -0.4px; }
.card-title-sm { font-size: 17px; font-weight: 500; line-height: 1.35; letter-spacing: -0.3px; }

.card-meta {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--faint) !important;
  margin-top: auto;
}

.tag {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-text) !important;
}
.tag-indigo { color: var(--accent) !important; }
.tag-neutral { color: var(--dim) !important; }

.campaign-grid { gap: 18px; }
.card-campaign { gap: 11px; padding: 24px; }

/* ---------- language row ---------- */
.lang-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.lang-label {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--faint);
}
.lang-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 15px;
  padding: 10px 18px;
  border: 1px solid var(--accent-soft-border);
  border-radius: 999px;
  color: var(--accent-soft-text);
}
.pill-quiet { border-color: var(--border-strong); color: var(--muted); }
.lang-dialects { margin-top: 20px; font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 62ch; }

/* ---------- numbered list ---------- */
.guarantees { display: flex; flex-direction: column; }
.guarantees li { display: flex; gap: 20px; padding-block: 26px; border-bottom: 1px solid var(--border); }
.guarantees li:last-child { border-bottom: none; }
.guarantee-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.guarantees h3 { font-size: 19px; letter-spacing: -0.4px; margin-bottom: 8px; }
.guarantees p { font-size: 15.5px; line-height: 1.6; color: var(--muted); }

/* ---------- amber band (identical in both themes by design) ---------- */
.band { background: #F59E0B; color: #1A1408; }
.band-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; padding-block: 76px; }
.band-title { font-size: 52px; line-height: 1.04; letter-spacing: -2px; }
.band-body { display: flex; flex-direction: column; gap: 18px; }
.band-lede { font-size: 19px; line-height: 1.58; color: #2A2109; }
.band-sub { font-size: 16.5px; line-height: 1.6; color: #4A3B12; }

/* ---------- notice ---------- */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  margin-top: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.notice svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--dim); }
.notice p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }

/* ---------- cta ---------- */
.cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-title { font-size: 52px; line-height: 1.06; letter-spacing: -2.2px; max-width: 780px; }
.cta-sub { font-size: 18px; line-height: 1.55; color: var(--muted); max-width: 560px; margin-top: 26px; }
.cta .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { padding-block: 48px 60px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.brand-footer { color: var(--muted); }
.brand-footer .brand-mark { width: 24px; height: 24px; }
.brand-footer .brand-word { font-size: 15.5px; font-weight: 500; }
.footer-note { font-size: 14px; line-height: 1.6; color: var(--dim); max-width: 300px; }

.footer-cols { display: flex; gap: 72px; }
.foot-head {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 4px; }
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding-block: 6px;
}
.footer-cols a:hover { color: var(--text); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .hero-title { font-size: 58px; letter-spacing: -2.2px; }
  .spoken-line { font-size: 36px; }
  .h2, .cta-title, .band-title { font-size: 38px; letter-spacing: -1.3px; }
  .cta-title { font-size: 42px; letter-spacing: -1.6px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .wrap { padding-inline: 28px; }
  .section { padding-block: 68px; }

  .nav-desktop, .nav-signin, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 28px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
  }
  .nav-mobile[hidden] { display: none; }
  .nav-mobile a {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 16px;
    color: var(--text);
  }
  .nav-mobile-cta { justify-content: center; margin-top: 10px; color: var(--btn-primary-text); }

  .split-5-7, .band-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-aside { max-width: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-block: 64px 72px; }
  .hero-ripple { right: -260px; top: -120px; width: 620px; height: 620px; }

  /* Touch targets: below this width every link is a thumb target, so the
     44px floor applies to inline links too, not just buttons. */
  .footer-cols a { min-height: 44px; align-items: center; padding-block: 10px; }
  .link-arrow { min-height: 44px; align-items: center; }
  .brand { min-height: 44px; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-cols { gap: 48px; }
}

@media (max-width: 700px) {
  .wrap { padding-inline: 20px; }
  .nav-mobile { padding-inline: 20px; }

  .hero-title { font-size: 40px; letter-spacing: -1.5px; }
  .spoken { padding: 24px; }
  .spoken-line { font-size: 31px; }
  .hero-sub { font-size: 17px; }
  .h2 { font-size: 29px; letter-spacing: -1px; }
  .cta-title { font-size: 32px; letter-spacing: -1.2px; }
  .band-title { font-size: 36px; letter-spacing: -1.4px; }
  .band-inner { padding-block: 48px; }
  .band-lede { font-size: 17px; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Keep the ripple a corner accent at phone widths — at full size it runs
     behind the hero paragraph and eats its contrast. */
  .hero-ripple { right: -300px; top: -70px; width: 470px; height: 470px; opacity: 0.22; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .hero-points { flex-direction: column; gap: 10px; }

  .call-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .turns { padding: 20px 16px; }
  .turn-citizen { padding-left: 16px; }
  .call-note, .call-foot, .call-head { padding-inline: 16px; }
  .turn .deva { font-size: 15.5px; }

  .numbered li { gap: 16px; }

  .footer-cols { flex-wrap: wrap; gap: 32px; }
}

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ring { animation: none; opacity: 0.5; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- print ---------- */
@media print {
  .site-header, .hero-ripple, .skip { display: none; }
  body { background: #FFFFFF; color: #000000; }
}
