@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap");

:root {
  --ink: #121715;
  --ink-soft: #4f5955;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --surface-soft: #eef2ee;
  --line: #d9dfda;
  --brand: #111111;
  --brand-strong: #000000;
  --brand-pale: #e8e8e5;
  --night: #050505;
  --night-soft: #c9c9c5;
  --danger: #b42318;
  --warning: #9a6700;
  --success: #087a5b;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(18, 23, 21, 0.08);
  --page: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Outfit", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
::selection { color: var(--ink); background: #d8d8d4; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(0, 0, 0, 0.35); outline-offset: 3px; }

.container { width: var(--page); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 8vw, 7.2rem); font-weight: 680; }
h2 { font-size: clamp(2.15rem, 4.7vw, 4.75rem); font-weight: 650; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); font-weight: 650; }
.lede { color: var(--ink-soft); font-size: clamp(1.06rem, 1.8vw, 1.3rem); line-height: 1.62; }
.muted { color: var(--ink-soft); }
.brand-text { color: var(--brand-strong); }
.eyebrow-on-brand { color: #dededb; }
.eyebrow-on-dark { color: #e4e4e1; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 245, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}
.site-header.scrolled { border-color: var(--line); }
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 34px;
}
.site-header .brand,
.payment-header .brand { gap: 10px; }
.site-header .brand img,
.payment-header .brand img {
  width: 42px;
  height: 32px;
  flex: 0 0 42px;
}
.site-header .brand span,
.payment-header .brand span {
  font-family: var(--font-brand);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 620;
  text-decoration: none;
  transition: color 160ms ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links .nav-cta { color: #fff; }
.nav-cta, .button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover, .nav-cta:hover { transform: translateY(-1px); background: #27302c; }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }
.button-light:hover { background: var(--brand-pale); }
.button-quiet { border-color: var(--line); background: transparent; color: var(--ink); }
.button-quiet:hover { background: var(--surface-soft); }
.icon-button {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.icon-button:hover { transform: translateY(-2px); background: var(--brand-pale); }
.mail-icon {
  position: relative;
  width: 20px;
  height: 15px;
  display: block;
  overflow: hidden;
  border: 1.8px solid currentColor;
  border-radius: 3px;
}
.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 13px;
  height: 1.8px;
  background: currentColor;
}
.mail-icon::before { left: -1px; transform: rotate(34deg); transform-origin: left center; }
.mail-icon::after { right: -1px; transform: rotate(-34deg); transform-origin: right center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  width: 18px;
  height: 1.5px;
  display: block;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-button[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-button[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }
.mobile-menu { display: none; pointer-events: none; }

.hero { padding: clamp(82px, 12vw, 150px) 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr); gap: 72px; align-items: end; }
.hero h1 { max-width: 900px; margin-bottom: 32px; }
.hero-copy { max-width: 560px; padding-bottom: 8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.launch-note { margin: 18px 0 0; color: var(--ink-soft); font-size: 0.86rem; }
.hero-rule { height: 1px; margin-top: 84px; background: var(--line); }

.section { padding: clamp(82px, 11vw, 140px) 0; }
.section-head { max-width: 820px; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 24px; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.audience { padding: 48px 54px 24px 0; }
.audience + .audience { padding-left: 54px; border-left: 1px solid var(--line); }
.audience-index { margin-bottom: 70px; color: var(--brand-strong); font-size: 0.76rem; font-weight: 760; letter-spacing: 0.12em; }
.audience h3 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 3rem); }
.product-guide-link { margin-top: 34px; }

.record-layout { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: 90px; align-items: start; }
.download-section { padding-block: 24px; scroll-margin-top: 74px; }
.company-section { padding-top: 36px; }
.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.store-badge {
  width: 190px;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 15px;
  border: 1px solid #202522;
  border-radius: 10px;
  color: #fff;
  background: #111;
}
.store-badge svg { flex: 0 0 auto; }
.store-badge-play { width: 29px; height: 32px; }
.store-badge-apple { width: 27px; height: 32px; }
.store-badge span { display: flex; min-width: 0; flex-direction: column; }
.store-badge small { color: #d8dcda; font-size: 0.62rem; font-weight: 500; line-height: 1.2; letter-spacing: 0.01em; }
.store-badge strong { color: #fff; font-size: 1.12rem; font-weight: 620; line-height: 1.28; letter-spacing: -0.025em; }

.contact-band { padding: 84px 0; color: #fff; background: var(--brand-strong); }
.contact-layout { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.contact-layout h2 { max-width: 760px; margin-bottom: 20px; }
.contact-layout p { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,0.78); }

.site-footer { padding: 64px 0 34px; color: var(--night-soft); background: var(--night); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 0.7fr); gap: 48px; padding-bottom: 54px; }
.footer-brand { max-width: 330px; }
.footer-brand .brand { margin-bottom: 20px; color: #fff; }
.footer-brand p { color: var(--night-soft); font-size: 0.9rem; }
.footer-col strong { display: block; margin-bottom: 18px; color: #fff; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 10px 0; color: var(--night-soft); font-size: 0.9rem; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; }

.page-hero { padding: 92px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 980px; margin-bottom: 28px; font-size: clamp(3rem, 7vw, 6.4rem); }
.page-hero .lede { max-width: 720px; }
.page-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: var(--ink-soft); font-size: 0.84rem; }

.updates-hero h1 { max-width: 930px; }
.updates-hero { padding-bottom: 32px; border-bottom: 0; }
.updates-section { padding: 0 0 132px; }
.updates-layout { display: block; }
.updates-feed { min-width: 0; }
.updates-list { border-top: 0; }
.update-list-item { margin: 0; border-bottom: 1px solid var(--line); }
.update-list-link { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 28px 0 30px; color: inherit; text-decoration: none; transition: background-color 180ms ease; }
.update-list-link:hover { background: color-mix(in srgb, var(--brand) 4%, transparent); }
.update-list-link:focus-visible { position: relative; z-index: 1; border-radius: 3px; outline: 3px solid color-mix(in srgb, var(--brand) 35%, transparent); outline-offset: 5px; }
.update-list-link .update-meta { margin: 0; }
.update-list-content h2 { max-width: 700px; margin-bottom: 10px; font-size: clamp(1.35rem, 2.4vw, 2rem); letter-spacing: -0.025em; }
.update-list-content > p { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }
.update-list-action { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: 8px; color: var(--brand-strong); font-size: 0.84rem; font-weight: 720; }
.update-list-action svg { flex: 0 0 auto; transition: transform 180ms ease; }
.update-list-link:hover .update-list-action svg { transform: translateX(3px); }
.updates-load-more { min-height: 46px; margin-top: 32px; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--ink); font: inherit; font-size: 0.88rem; font-weight: 700; cursor: pointer; }
.updates-load-more:hover { color: var(--brand-strong); }
.updates-load-more:focus-visible { border-radius: 3px; outline: 3px solid color-mix(in srgb, var(--brand) 35%, transparent); outline-offset: 4px; }
.update-back-link { min-height: 44px; display: inline-flex; align-items: center; margin-bottom: 38px; color: var(--brand-strong); font-size: 0.88rem; font-weight: 700; text-underline-offset: 4px; }
.product-update { padding: 0; }
.product-update-detail { max-width: 760px; }
.product-update-detail .update-meta { margin-bottom: 30px; }
.update-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-bottom: 18px; color: var(--ink-soft); font-size: 0.76rem; font-weight: 680; letter-spacing: 0.055em; text-transform: uppercase; }
.update-meta > * + * { position: relative; }
.update-meta > * + *::before { content: ""; position: absolute; top: 50%; left: -10px; width: 3px; height: 3px; border-radius: 50%; background: var(--brand); transform: translateY(-50%); }
.update-body { max-width: 720px; color: #38423e; }
.update-body p { margin-bottom: 22px; font-size: 1.03rem; line-height: 1.78; }
.update-body strong { color: var(--ink); font-weight: 760; }
.update-body em { font-style: italic; }
.update-body u { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.update-body a { color: var(--brand-strong); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.update-body a:hover { color: var(--ink); }
.update-article-heading {
  margin: 44px 0 16px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.update-article-subheading {
  margin: 34px 0 13px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.1vw, 1.48rem);
  line-height: 1.35;
  letter-spacing: -0.018em;
}
.update-article-quote {
  margin: 30px 0;
  padding: 3px 0 3px 20px;
  border-left: 3px solid var(--brand);
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-style: italic;
  line-height: 1.7;
}
.update-body-list { margin: 0 0 22px; padding-left: 21px; }
.update-body-list li { margin: 9px 0; padding-left: 4px; }
.update-text-block + .update-text-block { margin-top: 30px; }
.update-image-block { margin: 34px 0 38px; }
.update-image-link { display: block; border-radius: 14px; }
.update-image-link:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 35%, transparent); outline-offset: 5px; }
.update-image-block img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #eef1ef;
}
.update-image-block figcaption {
  max-width: 660px;
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}
.updates-notice { margin: 0 0 34px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.86rem; }
.updates-empty { min-height: 260px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border-top: 1px solid var(--line); }
.updates-empty h3 { margin-bottom: 10px; }
.updates-empty p { margin-bottom: 22px; color: var(--ink-soft); }
.update-skeleton { padding-bottom: 62px; margin-bottom: 62px; border-bottom: 1px solid var(--line); }
.skeleton-line { width: 100%; height: 14px; display: block; margin-bottom: 13px; border-radius: 3px; background: linear-gradient(90deg, #e6eae6 20%, #f1f3f0 45%, #e6eae6 70%); background-size: 240% 100%; animation: update-skeleton 1.35s ease-in-out infinite; }
.skeleton-meta { width: 28%; height: 10px; margin-bottom: 24px; }
.skeleton-title { width: 76%; height: 38px; margin-bottom: 26px; }
.skeleton-short { width: 64%; }
@keyframes update-skeleton { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

@media (prefers-reduced-motion: reduce) {
  .update-list-link,
  .update-list-action svg { transition: none; }
}

.legal-wrap { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 90px; align-items: start; padding: 72px 0 120px; }
.legal-nav { position: sticky; top: 102px; }
.legal-nav strong { display: block; margin-bottom: 16px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.legal-nav a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: 0.88rem; text-decoration: none; }
.legal-nav a:hover { color: var(--brand-strong); }
.legal-content { min-width: 0; }
.legal-summary { margin-bottom: 56px; padding: 26px 28px; border-left: 4px solid var(--brand); background: var(--surface-soft); }
.legal-summary p:last-child { margin-bottom: 0; }
.legal-section { padding: 42px 0 10px; border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.legal-section:first-of-type { border-top: 0; }
.legal-section h2 { margin-bottom: 24px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.legal-section h3 { margin: 30px 0 12px; font-size: 1.08rem; letter-spacing: -0.015em; }
.legal-section p, .legal-section li { color: #38423e; }
.legal-section ul, .legal-section ol { padding-left: 22px; }
.legal-section li { margin: 9px 0; }
.legal-section a { color: var(--brand-strong); text-underline-offset: 3px; }
.data-table { width: 100%; margin: 26px 0; border-collapse: collapse; font-size: 0.9rem; }
.data-table th, .data-table td { padding: 15px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--surface-soft); font-size: 0.78rem; letter-spacing: 0.04em; }
.notice { margin: 28px 0; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.notice strong { display: block; margin-bottom: 8px; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.guide-hero { padding: 88px 0 62px; border-bottom: 1px solid var(--line); }
.guide-hero h1 { max-width: 840px; margin-bottom: 24px; font-size: clamp(2.5rem, 4vw, 3.75rem); }
.guide-hero .lede { max-width: 740px; margin-bottom: 34px; }
.guide-search {
  width: min(720px, 100%);
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.guide-search:focus-within { border-color: var(--brand-strong); box-shadow: 0 0 0 4px rgba(0, 127, 96, 0.1); }
.guide-search svg { width: 21px; height: 21px; flex: 0 0 21px; fill: none; stroke: var(--ink-soft); stroke-linecap: round; stroke-width: 1.8; }
.guide-search input { min-width: 0; flex: 1; padding: 18px 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 1rem; }
.guide-search input::placeholder { color: #6d7772; opacity: 1; }
.guide-search-clear { min-height: 44px; padding: 0 4px; border: 0; color: var(--brand-strong); background: transparent; font-size: 0.82rem; font-weight: 700; }
.guide-search-status { min-height: 24px; margin: 10px 0 0; color: var(--ink-soft); font-size: 0.82rem; }
.guide-shortcuts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.guide-shortcuts a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.guide-shortcuts a:hover { border-color: #aeb8b2; color: var(--ink); background: var(--surface); }
.guide-layout { display: grid; grid-template-columns: 220px minmax(0, 780px); gap: clamp(54px, 8vw, 110px); align-items: start; padding: 68px 0 120px; }
.guide-nav { position: sticky; top: 104px; }
.guide-nav p { margin: 0 0 15px; color: var(--ink); font-size: 0.74rem; font-weight: 760; letter-spacing: 0.11em; text-transform: uppercase; }
.guide-nav a { display: block; padding: 6px 0; color: var(--ink-soft); font-size: 0.88rem; text-decoration: none; transition: color 150ms ease; }
.guide-nav a:hover, .guide-nav a[aria-current="true"] { color: var(--brand-strong); }
.guide-content { min-width: 0; }
.guide-intro { margin: 0 0 30px; padding: 0 0 0 16px; border-left: 4px solid var(--line); color: var(--ink-soft); }
.guide-intro p { margin-bottom: 8px; color: inherit; }
.guide-intro strong { color: var(--ink); }
.guide-intro span { color: var(--ink-soft); font-size: 0.78rem; }
.guide-section { padding: 58px 0 6px; border-top: 1px solid var(--line); scroll-margin-top: 92px; }
.guide-section:first-of-type { border-top: 0; }
.guide-section-heading { margin-bottom: 34px; }
.guide-section-heading h2 { margin-bottom: 0; font-size: clamp(1.5rem, 2.2vw, 2rem); }
.guide-topic { padding: 30px 0 32px; border-top: 1px solid var(--line); }
.guide-topic[hidden], .guide-section[hidden] { display: none; }
.guide-topic h3 { margin-bottom: 13px; font-size: 1.05rem; letter-spacing: -0.015em; }
.guide-topic p, .guide-topic li, .guide-topic dd { color: #38423e; }
.guide-topic > p:last-child { margin-bottom: 0; }
.guide-topic a { color: var(--brand-strong); text-underline-offset: 3px; }
.guide-steps { margin: 22px 0 0; padding-left: 21px; list-style: decimal; }
.guide-steps li { display: list-item; margin: 9px 0; padding-left: 4px; }
.guide-steps li > span {
  display: none;
}
.guide-steps p { margin: 0; }
.guide-checklist { margin: 20px 0 0; padding-left: 21px; list-style: disc; }
.guide-checklist li { margin: 9px 0; padding-left: 4px; }
.guide-definitions { margin: 20px 0 0; border-top: 1px solid var(--line); }
.guide-definitions > div { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.guide-definitions dt { color: var(--ink); font-weight: 700; }
.guide-definitions dd { margin: 0; }
.guide-note, .guide-warning {
  margin: 24px 0 0;
  padding: 0 0 0 16px;
  border-left: 4px solid var(--line);
  border-radius: 0;
  color: var(--ink-soft);
  background: transparent;
}
.guide-note strong, .guide-warning strong { display: block; margin-bottom: 5px; color: var(--ink); }
.guide-note p, .guide-warning p { margin: 0; color: inherit; }
.guide-follow-up { margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--line); }
.guide-empty { padding: 72px 0; text-align: center; }
.guide-empty h2 { margin-bottom: 12px; font-size: 2rem; }
.guide-empty p { margin-bottom: 24px; color: var(--ink-soft); }
.guide-help { padding: 64px 0; border-top: 1px solid var(--line); background: var(--surface); }
.guide-help-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center; }
.guide-help h2 { margin-bottom: 10px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.guide-help p { max-width: 680px; margin-bottom: 0; color: var(--ink-soft); }
.guide-help .icon-button { border-color: var(--line); background: transparent; color: var(--ink); }
.guide-help .icon-button:hover { background: var(--surface-soft); }

.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.safety-item { min-height: 260px; padding: 36px 42px 36px 0; border-bottom: 1px solid var(--line); }
.safety-item:nth-child(even) { padding-left: 42px; border-left: 1px solid var(--line); }
.safety-number { display: block; margin-bottom: 50px; color: var(--brand-strong); font-size: 0.76rem; font-weight: 760; }
.safety-item h2 { margin-bottom: 14px; font-size: 1.55rem; }
.safety-item p { margin-bottom: 0; color: var(--ink-soft); }
.urgent { padding: 54px; border-radius: var(--radius-lg); color: #fff; background: var(--night); }
.urgent h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.urgent p { max-width: 750px; color: var(--night-soft); }

.legal-index { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.legal-link { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px 42px 34px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.legal-link:nth-child(even) { padding-left: 42px; border-left: 1px solid var(--line); }
.legal-link span { color: var(--brand-strong); font-size: 0.75rem; font-weight: 760; }
.legal-link h2 { margin: 44px 0 12px; font-size: 1.7rem; }
.legal-link p { margin: 0; color: var(--ink-soft); }

.payment-page { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; background: var(--paper); }
.payment-header { padding: 26px 0; }
.payment-main { display: grid; place-items: center; padding: 40px 0 80px; }
.payment-panel { width: min(560px, calc(100% - 40px)); padding-top: 32px; border-top: 4px solid var(--brand); }
.status-kicker { margin-bottom: 20px; color: var(--brand-strong); font-size: 0.75rem; font-weight: 760; letter-spacing: 0.15em; text-transform: uppercase; }
.payment-panel h1 { margin-bottom: 20px; font-size: clamp(2.7rem, 8vw, 5rem); }
.payment-panel .lede { margin-bottom: 34px; }
.reference { margin: 0 0 28px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.86rem; overflow-wrap: anywhere; }
.payment-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.spinner { width: 22px; height: 22px; border: 2px solid var(--line); border-top-color: var(--brand); border-radius: 50%; animation: spin 700ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }
.section-tight-top { padding-top: 0; }
.status-warning { color: var(--warning); }
.status-danger { color: var(--danger); }
.payment-panel-danger { border-top-color: var(--danger); }
.payment-footer { padding-bottom: 24px; border-top-color: var(--line); color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --page: min(100% - 32px, 760px); }
  .nav-links { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - 75px);
    height: calc(100dvh - 75px);
    z-index: 90;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }
  .mobile-menu.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .mobile-menu-inner { width: var(--page); margin: 0 auto; padding: 22px 0 44px; }
  .mobile-menu-group { padding: 18px 0 20px; border-bottom: 1px solid var(--line); }
  .mobile-menu-group:first-child { padding-top: 4px; }
  .mobile-menu-group:last-child { padding-bottom: 0; border-bottom: 0; }
  .mobile-menu-group > p {
    margin: 0 0 6px;
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 720;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 650;
    text-decoration: none;
  }
  .mobile-menu a[aria-current="page"] { color: var(--brand-strong); }
  .mobile-menu-contact {
    margin-top: 8px;
    border-top: 1px solid var(--line);
    color: var(--brand-strong) !important;
  }
  .mobile-menu-contact span { font-size: 1.2rem; transition: transform 180ms ease; }
  .mobile-menu-contact:active span { transform: translateX(3px); }
  .hero-grid, .record-layout, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { padding-bottom: 0; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-wrap { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; display: flex; gap: 8px 20px; overflow-x: auto; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .legal-nav strong { display: none; }
  .legal-nav a { flex: 0 0 auto; }
  .guide-layout { grid-template-columns: 1fr; gap: 38px; }
  .guide-nav { position: static; display: flex; gap: 8px 20px; overflow-x: auto; padding-bottom: 14px; border-bottom: 1px solid var(--line); scrollbar-width: thin; }
  .guide-nav p { display: none; }
  .guide-nav a { min-height: 44px; display: inline-flex; flex: 0 0 auto; align-items: center; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 32px); }
  h1 { letter-spacing: -0.045em; }
  .hero { padding-top: 64px; }
  .hero-rule { margin-top: 56px; }
  .audience-grid, .safety-grid, .legal-index { grid-template-columns: 1fr; }
  .audience { padding: 36px 0; }
  .audience + .audience { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .audience-index { margin-bottom: 38px; }
  .section-head { margin-bottom: 44px; }
  .download-section { padding-block: 20px; }
  .company-section { padding-top: 28px; }
  .store-badges { flex-wrap: nowrap; gap: 8px; }
  .store-badge {
    width: calc((100% - 8px) / 2);
    min-height: 52px;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 8px;
  }
  .store-badge-play { width: 23px; height: 26px; }
  .store-badge-apple { width: 22px; height: 27px; }
  .store-badge small { font-size: 0.49rem; }
  .store-badge strong { font-size: 0.88rem; white-space: nowrap; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-bottom { flex-direction: column; }
  .safety-item, .safety-item:nth-child(even), .legal-link, .legal-link:nth-child(even) { min-height: auto; padding: 32px 0; border-left: 0; }
  .safety-number { margin-bottom: 34px; }
  .urgent { padding: 34px 26px; border-radius: var(--radius-md); }
  .data-table { display: block; overflow-x: auto; white-space: normal; }
  .page-hero { padding-top: 64px; }
  .updates-hero { padding-bottom: 28px; }
  .updates-section { padding-top: 0; padding-bottom: 92px; }
  .update-back-link { margin-bottom: 28px; }
  .skeleton-title { width: 88%; height: 30px; }
  .legal-wrap { padding-top: 48px; }
  .payment-actions .button { width: 100%; }
  .guide-hero { padding: 62px 0 44px; }
  .guide-hero h1 { font-size: clamp(2.4rem, 10vw, 2.8rem); }
  .guide-search { min-height: 58px; padding: 0 14px; }
  .guide-layout { padding-top: 40px; padding-bottom: 86px; }
  .guide-intro { padding-left: 16px; }
  .guide-section { padding-top: 48px; }
  .guide-section-heading { margin-bottom: 28px; }
  .guide-topic { padding: 26px 0; }
  .guide-definitions > div { grid-template-columns: 1fr; gap: 4px; }
  .guide-note, .guide-warning { padding-left: 16px; }
  .guide-help { padding: 48px 0; }
  .guide-help-inner { gap: 20px; }
}

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


/* What's New suggestion box */
.suggestion-section { padding: 0 0 112px; }
.suggestion-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 8vw, 110px);
  padding-top: 62px;
  border-top: 1px solid var(--line);
}
.suggestion-copy h2 { max-width: 520px; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.8rem); }
.suggestion-copy p:last-child { max-width: 520px; margin-bottom: 0; color: var(--ink-soft); }
.suggestion-form { display: grid; gap: 19px; }
.suggestion-field { display: grid; gap: 8px; }
.suggestion-field label { color: var(--ink); font-size: .86rem; font-weight: 720; }
.suggestion-field textarea,
.suggestion-field input {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid #aeb5b0;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--surface);
}
.suggestion-field textarea { min-height: 154px; resize: vertical; line-height: 1.55; }
.suggestion-field textarea:focus,
.suggestion-field input:focus { border-color: var(--ink); outline: 3px solid rgba(0, 0, 0, .12); outline-offset: 1px; }
.suggestion-field small,
.suggestion-meta { color: var(--ink-soft); font-size: .78rem; line-height: 1.5; }
.suggestion-counter { justify-self: end; margin-top: -4px; }
.suggestion-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.suggestion-submit { min-width: 158px; }
.suggestion-status { min-height: 24px; margin: 0; color: var(--ink-soft); font-size: .84rem; }
.suggestion-status[data-state="success"] { color: var(--success); }
.suggestion-status[data-state="error"] { color: var(--danger); }
.suggestion-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 760px) {
  .suggestion-section { padding-bottom: 86px; }
  .suggestion-panel { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }
  .suggestion-submit { width: 100%; }
}

/* Homepage spacing and responsive composition */
.home-page .hero { padding: clamp(56px, 7vw, 96px) 0 48px; }
.home-page .hero-grid { gap: clamp(36px, 5vw, 58px); }
.home-page .hero h1 { margin-bottom: 20px; }
.home-page .hero-actions { margin-top: 24px; }
.home-page .hero-rule { margin-top: 52px; }
.home-page .section { padding: clamp(54px, 7vw, 88px) 0; }
.home-page .section-head { margin-bottom: 44px; }
.home-page .section-head h2 { margin-bottom: 18px; }
.home-page .audience { padding-top: 36px; padding-bottom: 18px; }
.home-page .audience-index { margin-bottom: 42px; }
.home-page .product-guide-link { margin-top: 26px; }
.home-page .download-section { padding-block: 20px; }
.home-page .company-section { padding: 46px 0 64px; }
.home-page .contact-band { padding: 64px 0; }
.home-page .site-footer { padding-top: 52px; }

@media (max-width: 760px) {
  .home-page { font-size: 15px; line-height: 1.55; }
  .home-page .nav { min-height: 64px; }
  .home-page .site-header .brand span { font-size: 1.05rem; }
  .home-page .mobile-menu {
    height: calc(100vh - 65px);
    height: calc(100dvh - 65px);
  }
  .home-page .hero { padding: 36px 0 30px; }
  .home-page .hero .eyebrow { margin-bottom: 12px; }
  .home-page .hero-grid { display: block; }
  .home-page .hero h1 {
    max-width: 11ch;
    margin-bottom: 0;
    font-size: clamp(2.7rem, 13.5vw, 4.2rem);
    line-height: 0.98;
  }
  .home-page .hero-copy { max-width: none; margin-top: 26px; }
  .home-page .hero-copy .lede { margin-bottom: 0; font-size: 1rem; line-height: 1.55; }
  .home-page .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
  .home-page .hero-actions .button { width: 100%; min-height: 48px; padding-inline: 12px; }
  .home-page .launch-note { margin-top: 14px; font-size: 0.8rem; }
  .home-page .hero-rule { margin-top: 30px; }

  .home-page .section { padding: 46px 0; }
  .home-page .section-head { margin-bottom: 26px; }
  .home-page .section-head .eyebrow { margin-bottom: 12px; }
  .home-page .section-head h2 { margin-bottom: 14px; font-size: clamp(1.9rem, 9vw, 2.5rem); line-height: 1.06; }
  .home-page .section-head .lede { margin-bottom: 0; font-size: 0.98rem; line-height: 1.55; }

  .home-page .audience-grid { display: grid; grid-template-columns: 1fr; gap: 12px; border-top: 0; }
  .home-page .audience,
  .home-page .audience + .audience {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
  }
  .home-page .audience-index { margin-bottom: 24px; font-size: 0.68rem; line-height: 1.4; }
  .home-page .audience h3 { margin-bottom: 12px; font-size: 1.45rem; line-height: 1.12; }
  .home-page .audience p:last-child { margin-bottom: 0; }
  .home-page .product-guide-link { margin-top: 18px; }
  .home-page .product-guide-link .button { width: 100%; }

  .home-page .download-section { padding: 8px 0 42px; }
  .home-page .store-badges { width: 100%; flex-direction: column; gap: 10px; }
  .home-page .store-badge {
    width: 100%;
    min-height: 58px;
    gap: 12px;
    padding: 9px 14px;
    border-radius: 10px;
  }
  .home-page .store-badge-play { width: 27px; height: 30px; }
  .home-page .store-badge-apple { width: 25px; height: 30px; }
  .home-page .store-badge small { font-size: 0.6rem; }
  .home-page .store-badge strong { font-size: 1.05rem; }

  .home-page .company-section { padding: 42px 0 48px; border-top: 1px solid var(--line); }
  .home-page .record-layout { gap: 18px; }
  .home-page .record-layout .eyebrow { margin-bottom: 12px; }
  .home-page .record-layout h2 { margin-bottom: 0; font-size: 2rem; }
  .home-page .record-layout .lede { font-size: 0.98rem; line-height: 1.58; }
  .home-page .record-layout .muted { margin-bottom: 0; font-size: 0.86rem; }

  .home-page .contact-band { padding: 44px 0; }
  .home-page .contact-layout { gap: 24px; align-items: start; }
  .home-page .contact-layout .eyebrow { margin-bottom: 12px; }
  .home-page .contact-layout h2 { margin-bottom: 14px; font-size: 2rem; }
  .home-page .contact-layout p { font-size: 0.94rem; }
  .home-page .contact-layout .icon-button { width: 48px; height: 48px; flex-basis: 48px; }

  .home-page .site-footer { padding: 44px 0 24px; }
  .home-page .site-footer .footer-top { gap: 30px 20px; padding-bottom: 36px; }
  .home-page .site-footer .footer-brand .brand { margin-bottom: 12px; }
  .home-page .site-footer .footer-col strong { margin-bottom: 12px; }
  .home-page .site-footer .footer-col a { min-height: 34px; display: flex; align-items: center; margin: 2px 0; }
  .home-page .site-footer .footer-bottom { gap: 6px; padding-top: 20px; }
}

@media (max-width: 390px) {
  .home-page .hero-actions { grid-template-columns: 1fr; }
  .home-page .footer-top { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
}
