/* MailTwin — shared theme for all pages.
   Pulled from the landing page's CSS variables and type system. */

:root {
  --pink: #F4A6C8;
  --pink-2: #E879B5;
  --magenta: #C26FD9;
  --purple: #9B6FE0;
  --indigo: #7B7BE8;
  --blue: #6BA0F0;

  --ink: #0E0B14;
  --ink-2: #1A1424;
  --muted: #6B6478;
  --muted-2: #9A93A8;
  --line: rgba(15,11,20,0.08);
  --line-2: rgba(15,11,20,0.04);
  --bg: #FBF8FE;
  --bg-2: #F4EEFB;
  --card: #FFFFFF;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
::selection { background: var(--magenta); color: white; }

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
:where(a, button, input, select, textarea, [role="button"]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.serif { font-family: "Instrument Serif", "Times New Roman", serif; font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: "Geist Mono", ui-monospace, monospace; }

code {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.9em;
  background: rgba(155, 111, 224, 0.1);
  color: var(--ink-2);
  padding: 2px 6px;
  border-radius: 5px;
}

/* ── Header ── */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 254, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
header.site .inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
header.site .brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; color: var(--ink);
  letter-spacing: -0.01em;
}
header.site .brand img { width: 28px; height: 28px; border-radius: 7px; }
header.site nav {
  margin-left: auto;
  display: flex; gap: 28px; align-items: center;
}
header.site nav a {
  color: var(--muted); font-size: 14.5px; font-weight: 500;
}
header.site nav a:hover { color: var(--ink); text-decoration: none; }
header.site nav a.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; color: white;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 50%, var(--blue) 100%);
  box-shadow: 0 6px 20px -8px rgba(155, 111, 224, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  font-weight: 600;
}
header.site nav a.cta:hover { color: white; }

/* ── Article (long-form pages) ── */
main {
  max-width: 760px; margin: 0 auto;
  padding: 80px 28px 40px;
}

article .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 22px;
}
article .eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--magenta); display: inline-block; }

article h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 600; margin: 0 0 14px;
}
article .updated {
  color: var(--muted); font-size: 16px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
article h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 56px 0 16px;
  line-height: 1.2;
}
article h2 .serif { font-style: italic; color: var(--purple); font-weight: 400; }
article h3 {
  font-size: 18px; font-weight: 600;
  margin: 32px 0 10px;
}
article p, article li {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.65;
}
article p { margin: 0 0 16px; }
article ul, article ol { margin: 0 0 24px; padding-left: 22px; }
article li { margin-bottom: 8px; }
article li::marker { color: var(--purple); }

article strong { color: var(--ink); font-weight: 600; }
article em { font-style: italic; color: var(--ink); }

article .note {
  background: linear-gradient(135deg, rgba(244, 166, 200, 0.08), rgba(123, 123, 232, 0.08));
  border: 1px solid rgba(155, 111, 224, 0.2);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 32px 0 40px;
}
article .note strong { color: var(--ink); }
article .note p:last-child { margin-bottom: 0; }

article .release-highlight {
  position: relative;
  margin: 8px 0 52px;
  padding: 28px 30px 26px;
  overflow: hidden;
  border: 1px solid rgba(155,111,224,.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(107,160,240,.2), transparent 38%),
    linear-gradient(135deg, rgba(244,166,200,.13), rgba(123,123,232,.09));
}
article .release-highlight::after {
  content: "✦";
  position: absolute; inset-inline-end: 22px; top: 14px;
  color: rgba(155,111,224,.25); font-size: 38px;
}
article .release-highlight h2 { margin: 0 0 8px; margin-inline-end: 42px; font-size: 28px; }
article .release-highlight .release-kicker {
  color: var(--purple); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
article .release-highlight .release-summary { margin: 8px 0 16px; font-size: 18px; }
article .release-highlight ul { margin-bottom: 0; }

/* Tables */
article table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 32px;
  font-size: 15px;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
article thead {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
article th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
article td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-2);
}
article tbody tr:last-child td { border-bottom: none; }
article tbody tr:hover { background: rgba(155, 111, 224, 0.03); }

/* Inline link styling inside articles */
article a {
  color: var(--purple);
  font-weight: 500;
  border-bottom: 1px solid rgba(155, 111, 224, 0.3);
}
article a:hover {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
  text-decoration: none;
}

/* ── Page hero (used at the top of each long page) ── */
.page-hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%, rgba(244, 166, 200, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(123, 123, 232, 0.15), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ── Footer ── */
footer.site {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 40px;
  margin-top: 100px;
}
footer.site .inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
}
footer.site .brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: white; font-weight: 600; font-size: 15px;
}
footer.site .brand img { width: 22px; height: 22px; border-radius: 5px; }
footer.site .meta { font-size: 13px; }
footer.site nav {
  display: flex; gap: 22px; flex-wrap: wrap;
}
footer.site nav a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  border-bottom: none;
}
footer.site nav a:hover { color: white; text-decoration: none; }

footer.site .lang-switcher {
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  font-size: 12.5px;
}
footer.site .lang-switcher span {
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
footer.site .lang-switcher a {
  color: rgba(255,255,255,0.6);
  border-bottom: none;
}
footer.site .lang-switcher a:hover { color: white; text-decoration: none; }
footer.site .lang-switcher a[aria-current="true"] {
  color: white;
  font-weight: 500;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  main { padding: 48px 24px 24px; }
  header.site nav { display: none; }
  header.site nav a.cta { display: inline-flex; }
  header.site nav { display: flex; gap: 12px; }
  article h1 { font-size: 36px; }
  article h2 { font-size: 22px; margin-top: 40px; }
  article p, article li { font-size: 15.5px; }
  footer.site .inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* === inline style block from index.html (merged 2026-05-04) === */
:root {
    /* Brand — pulled from the app icon gradient */
    --pink: #F4A6C8;
    --pink-2: #E879B5;
    --magenta: #C26FD9;
    --purple: #9B6FE0;
    --indigo: #7B7BE8;
    --blue: #6BA0F0;

    --ink: #0E0B14;
    --ink-2: #1A1424;
    --muted: #6B6478;
    --muted-2: #9A93A8;
    --line: rgba(15,11,20,0.08);
    --line-2: rgba(15,11,20,0.04);
    --bg: #FBF8FE;
    --bg-2: #F4EEFB;
    --card: #FFFFFF;

    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.45;
    overflow-x: hidden;
  }
  ::selection { background: var(--magenta); color: white; }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  /* Keyboard users land directly on the React-rendered main content without
     having to tab through the fixed navigation on every visit. */
  .skip-link {
    position: fixed;
    inset-block-start: 10px;
    inset-inline-start: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 10px;
    color: white;
    background: var(--ink);
    box-shadow: 0 8px 24px rgba(15,11,20,.25);
    transform: translateY(-160%);
    transition: transform .15s ease;
  }
  .skip-link:focus { transform: translateY(0); text-decoration: none; }
  .landing-main { max-width: none; margin: 0; padding: 0; }

  /* Useful fallback for script blockers and transient bundle failures. The
     localized description is copied from each page's existing metadata by
     the deterministic site build. */
  .no-js-shell {
    max-width: 720px;
    min-height: 70vh;
    margin: 0 auto;
    padding: 100px 28px 60px;
    text-align: center;
  }
  .no-js-shell img { width: 64px; height: 64px; border-radius: 15px; }
  .no-js-shell h1 { margin-top: 24px; }
  .no-js-shell p { margin-top: 18px; color: var(--muted); font-size: 18px; }
  .no-js-shell .btn { margin-top: 28px; }
  .no-js-shell .no-js-contact { font-size: 14px; }

  .serif { font-family: "Instrument Serif", "Times New Roman", serif; font-weight: 400; letter-spacing: -0.01em; }
  .mono  { font-family: "Geist Mono", ui-monospace, monospace; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
  .container-tight { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

  /* Brand gradient utilities */
  .brand-grad {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 35%, var(--purple) 65%, var(--blue) 100%);
  }
  .brand-text {
    background: linear-gradient(135deg, var(--pink-2) 0%, var(--magenta) 30%, var(--purple) 65%, var(--blue) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Reusable */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); font-weight: 500;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--magenta); }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 999px; font-weight: 600;
    font-size: 15px; border: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 50%, var(--blue) 100%);
    box-shadow: 0 10px 30px -10px rgba(155, 111, 224, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px -12px rgba(155, 111, 224, 0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
  .btn-ghost {
    color: var(--ink); background: transparent;
    border: 1px solid var(--line);
  }
  .btn-ghost:hover { background: rgba(15,11,20,0.04); }
  .btn-dark {
    color: white; background: var(--ink);
  }
  .btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }

  /* Section spacing */
  section { padding: 120px 0; }
  @media (max-width: 768px) { section { padding: 80px 0; } }

  h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; line-height: 1.05; font-weight: 600; }
  h1 { font-size: clamp(44px, 6.4vw, 92px); }
  h2 { font-size: clamp(36px, 4.8vw, 64px); letter-spacing: -0.03em; }
  h3 { font-size: clamp(22px, 2vw, 28px); }
  p  { margin: 0; }

  .lede { font-size: clamp(18px, 1.4vw, 22px); color: var(--muted); line-height: 1.5; }

  /* Card */
  .card {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
  }

  /* SF symbols-ish chip */
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 500;
    background: rgba(155, 111, 224, 0.1);
    color: var(--purple);
  }

  /* Subtle grid background */
  .grid-bg {
    background-image:
      linear-gradient(to right, rgba(15,11,20,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(15,11,20,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
  }

  /* Skeleton helpers for placeholder mac UI */
  .sk { background: rgba(15,11,20,0.06); border-radius: 6px; }

  /* Current release — shared across every localized landing page. */
  .whats-new-section {
    position: relative;
    background: var(--bg-2);
    overflow: hidden;
  }
  .whats-new-heading { max-width: 720px; margin-bottom: 60px; }
  .whats-new-heading h2 { margin-top: 18px; }
  .whats-new-heading h2 .serif { font-style: italic; }
  .whats-new-heading .lede { margin-top: 22px; max-width: 560px; }
  .whats-new-hero {
    display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 0; overflow: hidden;
    box-shadow: 0 32px 90px -54px rgba(38,22,64,.5);
  }
  .cleanup-preview {
    margin-block: 34px; margin-inline-start: 34px; border-radius: 22px;
    background: rgba(255,255,255,.96); border: 1px solid rgba(15,11,20,.09);
    box-shadow: 0 26px 70px -38px rgba(37,24,58,.55); overflow: hidden;
  }
  .cleanup-preview-bar {
    height: 48px; padding: 0 16px; display: grid;
    grid-template-columns: 1fr auto 1fr; align-items: center;
    border-bottom: 1px solid var(--line); color: var(--ink-2);
    font-size: 12px; font-weight: 650;
  }
  .cleanup-preview-dots { display: flex; gap: 6px; }
  .cleanup-preview-dots i { width: 9px; height: 9px; border-radius: 50%; background: #ff6159; }
  .cleanup-preview-dots i:nth-child(2) { background: #ffbd2e; }
  .cleanup-preview-dots i:nth-child(3) { background: #28c840; }
  .cleanup-preview-count { justify-self: end; padding: 3px 8px; border-radius: 999px; background: var(--bg-2); color: var(--purple); }
  .cleanup-preview-body { padding: 18px; }
  .cleanup-preview-note {
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px;
    padding: 6px 9px; border-radius: 999px; background: rgba(155,111,224,.09);
    color: #6f4e9e; font-size: 10.5px; font-weight: 600;
  }
  .cleanup-preview-row {
    display: grid; grid-template-columns: 34px minmax(0,1fr) auto; gap: 11px;
    align-items: center; padding: 13px 4px; border-bottom: 1px solid var(--line-2);
  }
  .cleanup-preview-avatar { width: 32px; height: 32px; border-radius: 10px; opacity: .82; }
  .cleanup-preview-lines { display: flex; flex-direction: column; gap: 7px; }
  .cleanup-preview-lines i { height: 6px; border-radius: 999px; background: rgba(15,11,20,.12); }
  .cleanup-preview-lines i + i { background: rgba(15,11,20,.06); }
  .cleanup-preview-action {
    display: inline-flex; align-items: center; gap: 4px; border-radius: 999px;
    padding: 5px 8px; font-size: 10.5px; font-weight: 650; white-space: nowrap;
  }
  .cleanup-preview-action.archive { color: #5959c5; background: rgba(123,123,232,.13); }
  .cleanup-preview-action.trash { color: #b44772; background: rgba(232,121,181,.13); }
  .cleanup-preview-action.keep { color: #25845a; background: rgba(85,185,133,.13); }
  .cleanup-preview-plan {
    margin-top: 16px; padding: 11px 14px; border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
    color: white; background: linear-gradient(135deg,var(--magenta),var(--indigo));
    font-size: 12px; font-weight: 600;
  }
  .cleanup-preview-plan strong {
    display: grid; place-items: center; width: 24px; height: 24px;
    border-radius: 50%; background: rgba(255,255,255,.2);
  }
  .whats-new-copy { padding: 46px 48px; }
  .release-badge {
    display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px;
    border-radius: 999px; color: #7046a9; background: rgba(155,111,224,.1);
    font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  }
  .whats-new-copy h3 { margin-top: 22px; font-size: clamp(28px,3vw,42px); }
  .whats-new-copy > p { margin-top: 14px; color: var(--muted); line-height: 1.6; }
  .whats-new-steps { display: grid; gap: 17px; margin-top: 26px; }
  .whats-new-step { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
  .whats-new-step-icon {
    width: 32px; height: 32px; display: grid; place-items: center;
    border-radius: 10px; color: white; background: linear-gradient(135deg,var(--pink-2),var(--indigo));
  }
  .whats-new-step strong { display: block; font-size: 14px; }
  .whats-new-step small { display: block; margin-top: 3px; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
  .whats-new-supporting { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 18px; }
  .whats-new-support-card {
    padding: 26px; border-radius: var(--radius-lg);
    background: var(--card); border: 1px solid var(--line);
  }
  .whats-new-support-icon { color: var(--purple); }
  .whats-new-support-card h3 { margin-top: 16px; font-size: 18px; line-height: 1.2; }
  .whats-new-support-card p { margin-top: 9px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
  .whats-new-changelog {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
    color: var(--purple); font-size: 14px; font-weight: 650;
  }
  .whats-new-changelog:hover { gap: 11px; text-decoration: none; }
  [dir="rtl"] .whats-new-changelog svg { transform: rotate(180deg); }

  /* Post-build-73 product preview. The status line deliberately distinguishes
     checked-in development work from the signed public download. */
  .workspace-preview-section { background: var(--bg); }
  .workspace-preview-heading {
    display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.72fr);
    gap: 64px; align-items: end; margin-bottom: 48px;
  }
  .workspace-preview-heading h2 { margin-top: 18px; }
  .workspace-preview-heading h2 .serif { font-style: italic; }
  .workspace-preview-status {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
    padding: 8px 11px; border-radius: 999px; color: #7046a9;
    background: rgba(155,111,224,.10); font-size: 12px; font-weight: 650;
  }
  .workspace-preview-grid {
    display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px;
  }
  .workspace-preview-card { padding: 24px; }
  .workspace-preview-icon {
    display: grid; place-items: center; width: 40px; height: 40px;
    border-radius: 11px; color: white;
    background: linear-gradient(135deg,var(--pink-2),var(--indigo));
  }
  .workspace-preview-card h3 { margin-top: 17px; font-size: 17px; line-height: 1.2; }
  .workspace-preview-card p { margin-top: 8px; color: var(--muted); font-size: 13.5px; line-height: 1.58; }
  .workspace-preview-safety {
    display: flex; align-items: flex-start; justify-content: center; gap: 7px;
    max-width: 760px; margin: 28px auto 0; text-align: center;
    color: var(--muted); font-size: 13px; line-height: 1.55;
  }

  @media (max-width: 900px) {
    .whats-new-heading { margin-bottom: 40px; }
    .whats-new-hero { grid-template-columns: 1fr; }
    .cleanup-preview { margin: 24px 24px 0; }
    .whats-new-supporting { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .whats-new-copy { padding: 32px 24px; }
    .cleanup-preview { margin: 14px 14px 0; }
    .cleanup-preview-action { font-size: 0; width: 25px; height: 25px; padding: 0; justify-content: center; }
    .cleanup-preview-row { grid-template-columns: 30px minmax(0,1fr) 25px; }
    .cleanup-preview-avatar { width: 28px; height: 28px; }
  }
  [dir="rtl"] article ul,
  [dir="rtl"] article ol { padding-inline-start: 22px; padding-inline-end: 0; }

  /* Landing-page responsiveness. Inline layout values are desktop defaults;
     these named hooks make every section collapse without widening the page. */
  .container,
  .container-tight,
  .container > *,
  .container-tight > *,
  .voice-layout > *,
  .whats-new-hero > * { min-width: 0; max-width: 100%; }
  .comparison-scroll { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
  .comparison-table { min-width: 660px; }

  @media (max-width: 1050px) {
    .landing-nav-links { display: none !important; }
    .landing-nav-inner { gap: 14px !important; }
    .providers-grid,
    .features-grid,
    .workspace-preview-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
    .footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
  }

  @media (max-width: 768px) {
    body { overflow-x: hidden; }
    .container,
    .container-tight { padding-inline: 20px; }
    .landing-nav { padding-block: 10px !important; background: rgba(251,248,254,.92) !important; backdrop-filter: blur(20px) saturate(180%) !important; }
    .landing-nav-inner { justify-content: space-between; }
    .landing-nav-inner > div[style*="flex: 1"] { display: none; }
    .landing-nav-download { margin-inline-start: auto; }
    .landing-hero { padding-top: 112px !important; padding-bottom: 56px !important; }
    .landing-hero h1 { font-size: clamp(42px, 12vw, 68px); overflow-wrap: anywhere; }
    .landing-hero .eyebrow { line-height: 1.5; }
    .voice-layout,
    .workspace-preview-heading,
    .providers-heading,
    .privacy-architecture-grid,
    .privacy-cards-grid,
    .pricing-grid,
    .faq-layout { grid-template-columns: minmax(0,1fr) !important; gap: 32px !important; }
    .features-grid { grid-template-columns: minmax(0,1fr) !important; }
    .workspace-preview-grid { grid-template-columns: minmax(0,1fr) !important; }
    .providers-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
    .providers-heading { margin-bottom: 38px !important; }
    .voice-layout .card > div:first-child { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 34px 24px !important; }
    .whats-new-heading { margin-bottom: 34px; }
  }

  @media (max-width: 600px) {
    .hero-stage-container { display: none; }
    .landing-hero { padding-bottom: 48px !important; }
  }

  @media (max-width: 480px) {
    .container,
    .container-tight { padding-inline: 18px; }
    .landing-hero .eyebrow {
      display: block !important;
      max-width: 330px;
      margin-inline: auto !important;
      text-align: center;
      letter-spacing: .14em;
    }
    .landing-hero .eyebrow .dot {
      display: inline-block;
      margin-inline-end: 8px;
    }
    .landing-nav-brand { font-size: 15px !important; }
    .landing-nav-brand img { width: 28px; height: 28px; }
    .landing-nav-download { width: 40px; height: 40px; padding: 0 !important; justify-content: center; }
    .landing-nav-download-label { display: none; }
    .providers-grid,
    .footer-grid { grid-template-columns: minmax(0,1fr) !important; }
    .whats-new-support-card { padding: 22px; }
    .pricing-grid > div { padding: 28px 24px !important; transform: none !important; }
  }

  /* Motion is decorative on this page. Respect the OS preference in CSS;
     Hero.jsx separately stops the typewriter and automatic account switch. */
  @media (prefers-reduced-motion: reduce) {
    html:focus-within { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }
