/* ==========================================================================
   Do? — Official website design system
   Reconstructed from the design handoff (Rose theme, pixel-level tokens).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand / accent */
  --accent: #c2506b;
  --accent-hover: #a63f58;
  --accent-soft: #e88ea4;
  --tint: #fce4ea;          /* icon bg, dot bg, device screen bg */
  --tint-deep: #f5c2ce;     /* ::selection */
  --rose-wash: #fdf1f4;     /* light rose blocks, hero grad start */
  --footer-bg: #faf7f8;
  --dark: #1b141a;          /* dark sections, popular plan, text */
  --dark-rose: #f5b4c2;     /* rose accent inside dark sections */

  /* Text */
  --fg: rgba(28, 25, 28, 0.92);
  --fg-2: rgba(28, 25, 28, 0.66);
  --fg-3: rgba(28, 25, 28, 0.62);
  --fg-4: rgba(28, 25, 28, 0.55);
  --fg-5: rgba(28, 25, 28, 0.42);

  /* Lines / surfaces */
  --line: rgba(60, 60, 67, 0.10);
  --line-2: rgba(60, 60, 67, 0.12);
  --line-soft: rgba(60, 60, 67, 0.08);
  --white: #ffffff;
  --success: #5a8a5f;
  --phone: #0a0a0b;

  /* Radii */
  --r-chip: 999px;
  --r-sm: 12px;
  --r-input: 14px;
  --r-card-sm: 16px;
  --r-card: 20px;
  --r-card-lg: 22px;
  --r-cta: 28px;
  --r-cta-lg: 32px;

  /* Shadows */
  --sh-card: 0 2px 8px rgba(16, 24, 40, 0.06);
  --sh-card-xs: 0 2px 8px rgba(16, 24, 40, 0.04);
  --sh-cta: 0 24px 60px -18px rgba(194, 80, 107, 0.5);
  --sh-nav: 0 2px 18px rgba(160, 40, 72, 0.07);

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-head: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-round: ui-rounded, 'SF Pro Rounded', 'Nunito', system-ui, sans-serif;

  /* Container */
  --wrap: 1080px;
  --wrap-wide: 1120px;
  --wrap-doc: 760px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-body);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
::selection { background: var(--tint-deep); }

h1, h2, h3, p { margin: 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; }
.wrap-1000 { max-width: 1000px; margin: 0 auto; }
.wrap-940 { max-width: 940px; margin: 0 auto; }
.wrap-900 { max-width: 900px; margin: 0 auto; }
.wrap-820 { max-width: 820px; margin: 0 auto; }
.wrap-doc { max-width: var(--wrap-doc); margin: 0 auto; }
.center { text-align: center; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(252, 228, 234, 0.82);
  -webkit-backdrop-filter: saturate(1.6) blur(20px);
  backdrop-filter: saturate(1.6) blur(20px);
  box-shadow: var(--sh-nav);
}
.brand { display: flex; align-items: center; gap: 10px; color: inherit; }
.brand:hover { color: inherit; }
.brand-icon {
  width: 34px; height: 34px; border-radius: 9px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.12);
}
.brand-name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 19px;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links {
  display: flex; align-items: center; gap: 24px;
  font-size: 14px; font-weight: 500; color: var(--fg-2);
}
.nav-links a { color: inherit; }
.nav-links a:hover { color: var(--accent); }

/* Language segmented control */
.lang-seg {
  display: flex; align-items: center; gap: 2px;
  padding: 3px; border-radius: var(--r-chip);
  background: rgba(60, 60, 67, 0.06);
}
.lang-btn {
  padding: 6px 13px; border: none; border-radius: var(--r-chip);
  cursor: pointer; font-family: var(--font-body); font-weight: 600;
  font-size: 13px; background: transparent; color: rgba(28, 25, 28, 0.5);
  transition: all .2s;
}
.lang-btn.is-active { background: var(--accent); color: #fff; }

.nav-download {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--r-chip);
  background: var(--accent); color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 14px rgba(194, 80, 107, 0.28);
  transition: background .18s ease, transform .18s ease;
}
.nav-download:hover { background: var(--accent-hover); color: #fff; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.btn svg { flex: 0 0 auto; }
.btn-primary {
  padding: 14px 22px; border-radius: var(--r-input);
  background: var(--dark); color: #fff; font-size: 15px;
  box-shadow: 0 10px 28px rgba(27, 20, 26, 0.22);
  transition: transform .18s ease, opacity .18s ease;
}
.btn-primary:hover { color: #fff; opacity: .93; transform: translateY(-1px); }
.btn-ghost {
  padding: 14px 20px; border-radius: var(--r-input);
  background: #fff; border: 1px solid rgba(60, 60, 67, 0.14);
  color: var(--dark); font-size: 15px; font-weight: 600;
  transition: background .18s ease;
}
.btn-ghost:hover { color: var(--dark); background: #fafafa; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r-input);
  background: #fff; color: var(--dark); font-size: 16px; font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: transform .18s ease, opacity .18s ease;
}
.btn-white:hover { color: var(--dark); transform: translateY(-1px); opacity: .95; }

/* ---------- Sections & headings ---------- */
.section { padding: 80px 24px 8px; }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}
.kicker-sm {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
}
.h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(34px, 8vw, 56px); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--dark); white-space: pre-line;
}
.h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 5vw, 38px); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--dark);
}
.h2-fixed {
  font-family: var(--font-head); font-weight: 800; font-size: 34px;
  letter-spacing: -0.02em; color: var(--dark);
}
.h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 30px;
  line-height: 1.2; letter-spacing: -0.02em; color: var(--dark);
}
.section-sub {
  font-size: 17.5px; line-height: 1.6; color: var(--fg-3); max-width: 560px;
}
.section-sub-lg {
  font-size: 17px; line-height: 1.6; color: var(--fg-3); max-width: 540px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 80px 24px 64px;
  background: linear-gradient(180deg, var(--rose-wash) 0%, #ffffff 78%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, #f8cdd8 0%, rgba(248, 205, 216, 0) 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; max-width: var(--wrap-wide); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-chip);
  background: #fff; border: 1px solid rgba(194, 80, 107, 0.18);
  font-size: 12.5px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.02em; box-shadow: 0 2px 8px rgba(16, 24, 40, 0.05);
}
.hero-lead {
  font-size: 18px; line-height: 1.6; color: var(--fg-3);
  margin: 22px 0 0; max-width: 520px;
}
.cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px;
}
.hero-note { font-size: 13px; color: var(--fg-5); margin: 16px 0 0; }

/* ---------- Trust chips ---------- */
.trust-row {
  max-width: var(--wrap-wide); margin: 52px auto 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.chip {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-chip);
  background: #fff; border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: rgba(28, 25, 28, 0.7);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04);
}
.dot-green {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success); flex: 0 0 auto;
}

/* ---------- Cards grid ---------- */
.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.grid-200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 26px;
  box-shadow: var(--sh-card-xs);
}
.card-soft {
  background: #fff; border-radius: var(--r-card); padding: 28px 24px;
  box-shadow: var(--sh-card);
}
.icon-block {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--r-sm); background: var(--tint); margin-bottom: 16px;
}
.icon-block > span {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
}
.card-title {
  font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--dark);
}
.card-desc {
  font-size: 14.5px; line-height: 1.6; color: var(--fg-3); margin-top: 9px;
}

/* ---------- Feature rows ---------- */
.feat {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px; align-items: center;
}
.feat-desc { font-size: 16.5px; line-height: 1.6; color: var(--fg-3); margin: 14px 0 0; }
.bullets { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px; }
.bullet {
  display: flex; align-items: center; gap: 11px;
  font-size: 15px; font-weight: 500; color: rgba(28, 25, 28, 0.8);
}
.bullet-dot {
  display: grid; place-items: center; width: 22px; height: 22px;
  border-radius: 50%; background: var(--tint); flex: 0 0 auto;
}
.bullet-dot > span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.media-center { display: flex; justify-content: center; }

/* ---------- Device frames ---------- */
.phone {
  background: var(--phone); border-radius: 44px; padding: 10px;
  box-shadow: 0 30px 60px -22px rgba(160, 40, 72, 0.32), 0 8px 24px rgba(16, 24, 40, 0.1);
}
.phone--hero {
  box-shadow: 0 40px 80px -24px rgba(160, 40, 72, 0.4), 0 10px 30px rgba(16, 24, 40, 0.14);
}
.phone--sm { border-radius: 40px; padding: 9px;
  box-shadow: 0 24px 50px -20px rgba(160, 40, 72, 0.3), 0 6px 18px rgba(16, 24, 40, 0.1); }
.phone__screen {
  position: relative; border-radius: 36px; overflow: hidden;
  background: var(--tint); aspect-ratio: 9 / 19.5;
}
.phone--sm .phone__screen { border-radius: 32px; }
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 25px; background: var(--phone); border-radius: 15px;
  pointer-events: none;
}
.phone--sm .phone__notch { top: 9px; width: 70px; height: 22px; border-radius: 13px; }

.watch { display: flex; flex-direction: column; align-items: center; }
.watch__band {
  height: 26px; width: 60%;
  background: linear-gradient(180deg, #3a2a2f, #20171a);
  border-radius: 11px 11px 5px 5px;
}
.watch__band--bottom {
  background: linear-gradient(180deg, #20171a, #3a2a2f);
  border-radius: 5px 5px 11px 11px;
}
.watch__body {
  position: relative; background: var(--phone); border-radius: 36px; padding: 7px;
  box-shadow: 0 18px 36px -14px rgba(160, 40, 72, 0.42), 0 6px 16px rgba(16, 24, 40, 0.16);
  margin: -6px 0; z-index: 1;
}
.watch__crown {
  position: absolute; right: -3px; top: 40%;
  width: 4px; height: 22px; background: #2a2a2c; border-radius: 2px;
}
.watch__screen {
  position: relative; border-radius: 30px; overflow: hidden;
  background: var(--tint); aspect-ratio: 0.82;
}
/* Larger watch (feature 2) */
.watch--lg .watch__band { height: 46px; width: 70px; border-radius: 16px 16px 6px 6px; }
.watch--lg .watch__band--bottom { border-radius: 6px 6px 16px 16px; }
.watch--lg .watch__body {
  border-radius: 46px; padding: 9px; margin: -10px 0;
  box-shadow: 0 20px 44px -18px rgba(160, 40, 72, 0.35), 0 6px 18px rgba(16, 24, 40, 0.12);
}
.watch--lg .watch__crown { right: -4px; top: 42%; width: 5px; height: 28px; border-radius: 3px; }
.watch--lg .watch__screen { border-radius: 38px; }

/* Hero device composition */
.hero-devices { position: relative; width: min(320px, 86vw); animation: floaty 6s ease-in-out infinite; }
.hero-phone-wrap { width: min(256px, 72vw); margin-left: auto; }
.hero-watch-wrap { position: absolute; left: 0; bottom: 8px; width: min(118px, 32vw); }
.feat2-devices { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: center; }
.feat2-watch { }
.feat2-phone { width: min(200px, 58vw); }
.feat2-watch .watch__screen { width: min(130px, 44vw); }
.device-262 { position: relative; width: min(262px, 78vw); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-devices { animation: none; }
  html { scroll-behavior: auto; }
}

/* Screenshot placeholder slot (swap for a real <img> in production) */
.slot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  background: var(--tint); color: var(--accent);
  font-size: 12px; font-weight: 600; line-height: 1.4;
}
.slot::before {
  content: ""; position: absolute; inset: 10px;
  border: 1.5px dashed rgba(194, 80, 107, 0.35); border-radius: 18px;
}
.slot span { position: relative; opacity: 0.75; }

/* Real app screenshot filling a device screen */
.shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; background: var(--tint);
}

/* ---------- Real device frames (PNG overlay + screen cutout) ---------- */
/* isolation:isolate keeps each device's internal z-index (screen=1, frame=2)
   scoped to itself, so an overlapping device's frame can't paint over another
   device's screen (e.g. the iPhone frame bleeding into the Watch screen). */
.dframe { position: relative; width: 100%; isolation: isolate; }
.dframe-img {
  display: block; width: 100%; height: auto; position: relative; z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 30px 50px rgba(160, 40, 72, 0.28)) drop-shadow(0 10px 24px rgba(16, 24, 40, 0.12));
}
.dframe-screen {
  position: absolute; z-index: 1; overflow: hidden; background: #000;
}
.dframe-screen > .shot { object-position: top center; }
/* iPhone 17 Pro (portrait) screen cutout — matches frame geometry exactly */
.dframe--phone .dframe-screen {
  left: 5.33%; top: 2.5%; width: 89.33%; height: 95%;
  border-radius: 14% / 6.2%;
}
.dframe--hero .dframe-img {
  filter: drop-shadow(0 40px 70px rgba(160, 40, 72, 0.36)) drop-shadow(0 12px 28px rgba(16, 24, 40, 0.14));
}
/* Apple Watch Ultra screen cutout */
.dframe--watch .dframe-screen {
  left: 14.83%; top: 23.23%; width: 70.33%; height: 53.54%;
  border-radius: 22% / 18%;
}
.dframe--watch .dframe-img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.34));
}
/* Device wrappers control on-page size */
.feat2-watch-wrap { width: min(128px, 40vw); }
.theme-phone-wrap { width: min(116px, 30vw); }

/* ---------- Theme showcase ---------- */
.theme-card {
  max-width: var(--wrap); margin: 0 auto;
  background: linear-gradient(135deg, #fdf1f4 0%, #faf0ec 100%);
  border-radius: var(--r-cta); padding: 44px 40px; text-align: center;
  border: 1px solid rgba(194, 80, 107, 0.1);
}
.theme-row { display: flex; flex-wrap: wrap; gap: 26px 22px; justify-content: center; margin-top: 34px; }
.theme-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.theme-item .theme-icon { width: 48px; height: 48px; border-radius: 11px; box-shadow: 0 4px 12px rgba(16, 24, 40, 0.14); }
.theme-item span { font-size: 13px; font-weight: 600; color: rgba(28, 25, 28, 0.7); }
/* Compact themed phone mockup */
.theme-phone {
  width: min(118px, 30vw); background: var(--phone); border-radius: 26px; padding: 5px;
  box-shadow: 0 16px 34px -16px rgba(160, 40, 72, 0.35), 0 4px 12px rgba(16, 24, 40, 0.12);
}
.theme-phone__screen {
  position: relative; border-radius: 22px; overflow: hidden;
  background: var(--tint); aspect-ratio: 9 / 19.5;
}

/* ---------- Dark (privacy) section ---------- */
.dark-section { padding: 72px 24px; background: var(--dark); color: #fff; margin-top: 48px; }
.dark-section .kicker { color: var(--dark-rose); }
.dark-h2 {
  font-family: var(--font-head); font-weight: 800; font-size: 36px;
  line-height: 1.15; letter-spacing: -0.02em; color: #fff;
}
.dark-sub { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.dark-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px; padding: 24px 26px;
}
.dark-card-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #fff; }
.dark-card-desc { font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.6); margin-top: 8px; }
.dark-link { color: var(--dark-rose); font-size: 15px; font-weight: 600; }
.dark-link:hover { color: var(--dark-rose); opacity: .85; }

/* ---------- Light-rose block (couple / testimonials) ---------- */
.rose-block { background: var(--rose-wash); }
.quote-card { background: var(--rose-wash); border-radius: var(--r-card); padding: 28px 26px; }
.quote-text { font-size: 16px; line-height: 1.6; color: var(--dark); font-weight: 500; }
.quote-name { font-size: 13.5px; font-weight: 600; color: var(--accent); margin-top: 16px; }
.step-card { background: #fff; border-radius: var(--r-card); padding: 28px 24px; box-shadow: var(--sh-card); }
.step-card-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--accent); }
.step-card-desc { font-size: 15px; line-height: 1.55; color: var(--fg-3); margin-top: 10px; }

/* ---------- Pricing preview ---------- */
.plan-grid {
  max-width: var(--wrap-940); margin: 44px auto 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; align-items: stretch;
}
.plan {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-card-lg);
  padding: 30px 26px; display: flex; flex-direction: column;
}
.plan--hero {
  background: var(--dark); color: #fff; border: none; position: relative;
  box-shadow: 0 16px 40px rgba(27, 20, 26, 0.24);
}
.plan-name { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--dark); }
.plan--hero .plan-name { color: #fff; }
.plan-price { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--dark); margin: 10px 0 2px; }
.plan--hero .plan-price { color: #fff; }
.plan-note { font-size: 14px; color: var(--fg-4); }
.plan--hero .plan-note { color: rgba(255, 255, 255, 0.6); }
.plan-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px; border-radius: var(--r-chip); background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap;
}
.plan-period { font-size: 13px; color: var(--fg-4); }
.plan--hero .plan-period { color: rgba(255, 255, 255, 0.55); }
.plan-price--sm { font-size: 30px; margin: 8px 0 2px; }
.plan-note--mt { margin-top: 14px; line-height: 1.5; font-size: 13.5px; }

/* Pricing comparison table */
.cmp-wrap { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.cmp-head {
  display: grid; grid-template-columns: 1fr 88px 88px; background: var(--rose-wash);
  padding: 14px 22px; font-size: 13px; font-weight: 700; color: var(--dark);
}
.cmp-head .c { text-align: center; }
.cmp-head .c.prem { color: var(--accent); }
.cmp-row {
  display: grid; grid-template-columns: 1fr 88px 88px; padding: 15px 22px;
  border-top: 1px solid var(--line-soft); align-items: center;
}
.cmp-name { font-size: 14.5px; font-weight: 500; color: rgba(28, 25, 28, 0.82); }
.cmp-free { text-align: center; font-size: 15px; }
.cmp-prem { text-align: center; font-size: 15px; color: var(--accent); font-weight: 700; }

/* ---------- Steps (numbered) ---------- */
.step-num-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 24px; box-shadow: var(--sh-card-xs); }
.step-num {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: var(--r-chip); background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
}
.step-num-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--dark); margin-top: 16px; }
.step-num-desc { font-size: 14.5px; line-height: 1.6; color: var(--fg-3); margin-top: 9px; }

/* ---------- FAQ preview cards ---------- */
.faq-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card-sm); padding: 22px 24px; }
.faq-q { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--dark); }
.faq-a { font-size: 15px; line-height: 1.6; color: var(--fg-3); margin-top: 9px; }

/* ---------- FAQ page (accordion) ---------- */
.faq-group { margin-bottom: 36px; }
.faq-cat { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.faq-list { display: grid; gap: 12px; }
details.acc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card-sm);
  padding: 0 22px; box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04);
}
details.acc > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-family: var(--font-head); font-weight: 700; font-size: 16.5px; color: var(--dark);
}
details.acc > summary::-webkit-details-marker { display: none; }
.acc-answer { font-size: 15px; line-height: 1.65; color: var(--fg-3); margin: 0 0 20px; }
.faq-chev { flex: 0 0 auto; width: 16px; height: 16px; position: relative; transition: transform .2s; }
.faq-chev::before, .faq-chev::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-chev::before { top: 7px; left: 2px; width: 12px; height: 2px; }
.faq-chev::after { top: 2px; left: 7px; width: 2px; height: 12px; }
details.acc[open] .faq-chev { transform: rotate(45deg); }
.contact-note-card { text-align: center; background: var(--rose-wash); border-radius: var(--r-card); padding: 36px 32px; margin-top: 8px; }
.contact-note-title { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--dark); }
.contact-note-sub { font-size: 15px; color: var(--fg-3); margin-top: 8px; }

/* ---------- Download CTA band ---------- */
.cta-band {
  max-width: var(--wrap-1000); margin: 0 auto;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: var(--r-cta-lg); padding: 64px 40px; text-align: center;
  box-shadow: var(--sh-cta);
}
.cta-band--sm { padding: 52px 40px; border-radius: var(--r-cta); }
.cta-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 5vw, 38px); line-height: 1.15; letter-spacing: -0.02em; color: #fff;
}
.cta-title-sm { font-size: clamp(26px, 5vw, 32px); }
.cta-sub { font-size: 16px; color: rgba(255, 255, 255, 0.78); margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { padding: 56px 24px 40px; background: var(--footer-bg); border-top: 1px solid var(--line-soft); }
.footer--slim { padding: 40px 24px; }
.footer-grid {
  max-width: var(--wrap); margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px;
}
.footer-blurb { font-size: 14px; line-height: 1.6; color: var(--fg-4); margin-top: 14px; max-width: 300px; }
.footer-head { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(28, 25, 28, 0.4); }
.footer-links { display: grid; gap: 10px; margin-top: 14px; font-size: 14px; }
.footer-links a { color: rgba(28, 25, 28, 0.7); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--wrap); margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: var(--fg-5); }
.footer-disclaimer { font-size: 12px; color: rgba(28, 25, 28, 0.35); }
.footer-slim-inner {
  max-width: var(--wrap-doc); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between; align-items: center;
}
.footer-slim-inner.wide { max-width: 1000px; }
.footer-slim-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; }
.footer-slim-links a { color: var(--accent); }

/* ---------- Doc pages (privacy / terms / eula) ---------- */
.doc-hero { padding: 64px 24px 28px; background: linear-gradient(180deg, var(--rose-wash) 0%, #ffffff 100%); }
.back-link { font-size: 14px; font-weight: 600; }
.doc-h1 {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 6vw, 42px);
  line-height: 1.1; letter-spacing: -0.03em; color: var(--dark); margin: 12px 0 0;
}
.doc-eff { font-size: 13px; color: var(--fg-5); margin: 16px 0 0; }
.doc-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.doc-tab {
  padding: 8px 16px; border-radius: var(--r-chip); background: #fff;
  border: 1px solid rgba(60, 60, 67, 0.14); color: var(--fg-2);
  font-size: 13px; font-weight: 600;
}
.doc-tab:hover { color: var(--accent); }
.doc-tab--active { background: var(--accent); color: #fff; border-color: var(--accent); }
.doc-intro-lead { font-size: 17px; line-height: 1.75; color: rgba(28, 25, 28, 0.72); margin: 0 0 14px; }
.doc-intro-2 { font-size: 15.5px; line-height: 1.75; color: var(--fg-3); }
.toc { background: var(--rose-wash); border-radius: var(--r-card); padding: 26px 28px; }
.toc-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 14px; }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px 24px; }
.toc-grid a { font-size: 14px; line-height: 1.5; color: var(--fg-2); }
.toc-grid a:hover { color: var(--accent); }
.doc-section { margin-bottom: 36px; scroll-margin-top: 84px; }
.doc-h2 { font-family: var(--font-head); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--dark); margin: 0 0 12px; }
.doc-p { font-size: 15.5px; line-height: 1.75; color: var(--fg-3); margin: 0 0 12px; }
.doc-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.doc-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.65; color: var(--fg-3); }
.doc-bullet-dot { color: var(--accent); font-weight: 700; margin-top: 1px; }

/* ---------- Contact ---------- */
.channel-card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 26px; box-shadow: var(--sh-card-xs); color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.channel-card:hover { color: inherit; transform: translateY(-2px); box-shadow: var(--sh-card); }
.channel-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--dark); }
.channel-desc { font-size: 14.5px; line-height: 1.6; color: var(--fg-3); margin: 9px 0 12px; }
.channel-value { font-size: 15px; font-weight: 600; color: var(--accent); }
.social-block { background: var(--rose-wash); border-radius: 24px; padding: 36px 32px; text-align: center; }
.social-title { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--dark); }
.social-sub { font-size: 15px; color: var(--fg-3); margin: 8px 0 20px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.social-chip {
  padding: 10px 18px; border-radius: var(--r-chip); background: #fff;
  border: 1px solid var(--line-2); font-size: 14px; font-weight: 600; color: rgba(28, 25, 28, 0.75);
}
.social-chip:hover { color: var(--accent); }

/* ---------- About story ---------- */
.story-p { font-size: 16.5px; line-height: 1.8; color: rgba(28, 25, 28, 0.68); margin: 0 0 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .nlink { display: none !important; }
  .nav { padding-left: 16px; padding-right: 16px; }
}

/* i18n helper: hide list templates */
template { display: none; }
