/* ---------------------------------------------------------------------
   Win The Week: marketing site
   Palette ported from the app's own design tokens (src/theme/colors.ts)
   so the site and the product feel like one thing.
------------------------------------------------------------------------*/

:root {
  --paper: #F5F5F4;
  --paper-raised: #FFFFFF;
  --paper-sunken: #EDECEA;
  --ink: #1C1917;
  --ink-soft: #57534E;
  --muted: #8C8681;
  --line: #E7E5E4;
  --line-strong: #D6D3D1;

  --accent: #3860E8;
  --accent-ink: #2848C4;
  --accent-soft: #E9EEFD;
  --highlight: #5B8DEF;
  --highlight-soft: #EAF0FD;

  --blue: #3860E8;
  --red: #D14B3F;
  --amber: #C97A1E;
  --green: #1B9C85;
  --violet: #8354E0;
  --pink: #D9527A;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 8px 28px -10px rgba(40, 35, 30, 0.18);
  --shadow-panel: 0 30px 70px -20px rgba(40, 35, 30, 0.28);
  --shadow-soft: 0 3px 14px -4px rgba(40, 35, 30, 0.10);

  --font-head: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --wrap: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --bezel: #1a1a1d;
  --bezel-edge: #303034;

  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0D0E11;
  --paper-raised: #17181C;
  --paper-sunken: #131419;
  --ink: #EEEFF2;
  --ink-soft: #A3A6AD;
  --muted: #71747C;
  --line: #232429;
  --line-strong: #2E3038;

  --accent: #5A8DEE;
  --accent-ink: #7FA8F2;
  --accent-soft: rgba(90, 141, 238, 0.16);
  --highlight: #7FA8F2;
  --highlight-soft: rgba(127, 168, 242, 0.14);

  --blue: #5A8DEE;
  --red: #FF8A76;
  --amber: #E9A15C;
  --green: #3FC7AE;
  --violet: #A78BFA;
  --pink: #EF7FA0;

  --shadow-card: 0 8px 28px -10px rgba(0, 0, 0, 0.55);
  --shadow-panel: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 3px 14px -4px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

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

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

::selection { background: var(--accent); color: #fff; }

/* subtle grain so flat color fields don't look like a flat AI gradient */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
:root[data-theme="dark"] .grain { opacity: .05; }

/* ---------------------------------------------------------------------
   Reveal-on-scroll
------------------------------------------------------------------------*/
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------------------------------------------------------------------
   Header
------------------------------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  box-shadow: var(--shadow-soft);
}
.brand-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.nav-cta {
  color: #fff;
  background: var(--accent);
  padding: 9px 18px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--accent) 70%, transparent);
}
.main-nav a.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px color-mix(in srgb, var(--accent) 75%, transparent); }

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

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.hamburger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hamburger span {
  width: 16px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 6px 28px 20px;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.mobile-nav a:last-child { border-bottom: none; color: var(--accent); }

/* ---------------------------------------------------------------------
   Hero
------------------------------------------------------------------------*/
.hero { padding: 88px 0 60px; position: relative; }

.hero-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 22px;
}

.hero-sub {
  font-size: 17.5px;
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 20px 11px 18px;
  border-radius: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .3s var(--ease);
  box-shadow: var(--shadow-soft);
}
:root[data-theme="dark"] .store-badge { background: var(--paper-raised); color: var(--ink); border: 1px solid var(--line-strong); }
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 10.5px; font-weight: 500; opacity: .7; }
.store-badge span:not(small) { font-family: var(--font-head); font-weight: 600; font-size: 15px; }

.hero-note { font-size: 13.5px; color: var(--muted); }

/* --- hero phones --- */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: absolute;
  width: 248px;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(155deg, var(--bezel-edge), var(--bezel));
  box-shadow: var(--shadow-panel);
  animation: floaty 7s ease-in-out infinite;
  /* The hover parallax updates this transform; easing it prevents the
     phones from snapping from one pointer position to the next. */
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.phone-back {
  transform: translate(-64px, -18px) rotate(-7deg);
  opacity: .92;
  animation-delay: -2.4s;
}
.phone-front {
  transform: translate(58px, 34px) rotate(6deg);
  animation-delay: -.4s;
}

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.dot-blue { background: var(--blue); color: var(--blue); }
.dot-green { background: var(--green); color: var(--green); }
.dot-pink { background: var(--pink); color: var(--pink); }
.dot-violet { background: var(--violet); color: var(--violet); }
.dot-amber { background: var(--amber); color: var(--amber); }
.dot-red { background: var(--red); color: var(--red); }

@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; }
}

/* --- shared device-frame chrome (hero phones, feature phones, showcase phones) ---
   Real screenshots have no status bar / home-indicator baked in, so the frame
   adds that breathing room itself: the image sits inset on matching --paper
   padding (never cropped or covered), with a notch and home-indicator drawn
   in the reserved space. */
.phone-screen {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding-top: 9%;
  padding-bottom: 5.5%;
  transition: background-color .4s var(--ease);
}
.phone-screen img { display: block; width: 100%; }
.phone-notch {
  position: absolute;
  top: 2.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3.4%;
  min-height: 12px;
  border-radius: 999px;
  background: var(--bezel);
  z-index: 2;
}
.phone-home {
  position: absolute;
  bottom: 1.8%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 4px;
  border-radius: 999px;
  background: var(--ink-soft);
  opacity: .3;
  z-index: 2;
}

/* ---------------------------------------------------------------------
   Stat strip
------------------------------------------------------------------------*/
.strip { padding: 10px 0 40px; }
.strip-row {
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
}
.strip-dot { width: 9px; height: 9px; border-radius: 999px; display: inline-block; margin-right: 9px; vertical-align: middle; }
.strip-sep { color: var(--line-strong); font-weight: 400; }

/* ---------------------------------------------------------------------
   Section heads
------------------------------------------------------------------------*/
.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 12px;
}
.section-sub { margin-top: 12px; font-size: 15.5px; }

/* ---------------------------------------------------------------------
   Feature rows
------------------------------------------------------------------------*/
.feature-rows { padding: 100px 0 40px; }

.feature-row {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 128px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse { grid-template-columns: 1.15fr .85fr; }
.feature-row-reverse .feature-visual { order: 2; }
.feature-row-reverse .feature-copy { order: 1; }

.feature-visual { display: flex; justify-content: center; }

.phone-frame {
  width: 250px;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(155deg, var(--bezel-edge), var(--bezel));
  box-shadow: var(--shadow-panel);
  transform: rotate(-2deg);
  transition: transform .5s var(--ease);
}
.feature-row-reverse .phone-frame { transform: rotate(2deg); }
.phone-frame:hover { transform: rotate(0deg) scale(1.015); }
.phone-frame .phone-screen, .phone .phone-screen { border-radius: 29px; }

.feature-icon {
  display: block;
  width: 34px;
  color: var(--accent);
  margin-bottom: 22px;
  filter: drop-shadow(0 4px 10px color-mix(in srgb, currentColor 35%, transparent));
}
.feature-icon-blue { color: var(--blue); }
.feature-icon-green { color: var(--green); }
.feature-icon-violet { color: var(--violet); }
.feature-icon-pink { color: var(--pink); }
.feature-copy h3 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 14px;
}
.feature-copy p { font-size: 16px; line-height: 1.65; max-width: 44ch; }

/* ---------------------------------------------------------------------
   Feature grid
------------------------------------------------------------------------*/
.grid-section { padding: 20px 0 110px; }

/* Each row borrows the app's own task-row shape: a colored spine on the
   left, title/description, and an unchecked ring standing in for the
   checkbox, so this reads as "here is the product" rather than a stock
   icon-and-card feature grid. */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper-raised);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: currentColor;
}
.feature-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.feature-item-text { flex: 1; min-width: 0; }
.feature-item-text h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-item-text p { font-size: 13.8px; line-height: 1.55; }
.feature-item-ring {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 2px solid currentColor;
  opacity: .4;
}

/* ---------------------------------------------------------------------
   How it works
   An editorial timeline instead of three numbered boxes: a connecting
   line runs behind the markers, text sits directly on the page.
------------------------------------------------------------------------*/
.how { padding: 20px 0 110px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  position: relative;
}
.step { position: relative; }
.step::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 20px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.step:first-child::before { left: 40px; }
.step-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--accent);
  width: 40px; height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--accent) 65%, transparent);
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14.5px; line-height: 1.6; max-width: 32ch; }
.steps-loop {
  margin-top: 44px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}

/* ---------------------------------------------------------------------
   Showcase strip (horizontal scroll)
------------------------------------------------------------------------*/
.showcase { padding: 20px 0 110px; }
.showcase-strip {
  overflow-x: auto;
  padding: 10px 28px 26px;
  scrollbar-width: thin;
}
.showcase-track {
  display: flex;
  gap: 22px;
  width: max-content;
  margin: 0 auto;
}
.showcase-phone {
  width: 210px;
  flex: none;
  border-radius: 32px;
  padding: 7px;
  background: linear-gradient(155deg, var(--bezel-edge), var(--bezel));
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease);
}
.showcase-phone:hover { transform: translateY(-8px); }
.showcase-phone .phone-screen { border-radius: 25px; }

.theme-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.theme-switch {
  width: 52px; height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--paper-sunken);
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: background-color .3s var(--ease);
}
.theme-switch-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--paper-raised);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.theme-switch[aria-checked="true"] { background: var(--accent); }
.theme-switch[aria-checked="true"] .theme-switch-knob { transform: translateX(22px); }

/* ---------------------------------------------------------------------
   CTA / Download
   Deliberately always-dark, regardless of the site's own light/dark
   toggle, the way a closing band on a page is allowed to just commit to
   a mood. Reuses the same dark gradient as the app icon's background.
------------------------------------------------------------------------*/
.cta {
  padding: 110px 0;
  margin-top: 40px;
  background: radial-gradient(120% 140% at 15% 0%, #2A2C34 0%, #0B0C0F 60%);
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}
.cta-eyebrow { color: #8FB0FF; }
.cta h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.12;
  margin-bottom: 18px;
}
.cta-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 30px;
}
.cta .store-badge {
  background: #fff;
  color: #17181C;
}
.cta .store-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); }
.cta-ctas { margin-bottom: 22px; }


.cta-visual { display: flex; justify-content: center; }
.cta-phone {
  width: 260px;
  transform: rotate(3deg);
  transition: transform .5s var(--ease);
}
.cta-phone:hover { transform: rotate(0deg); }
.cta-phone .phone-screen { background: #0D0E11; }

/* ---------------------------------------------------------------------
   Footer
------------------------------------------------------------------------*/
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 60px; }
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-nav { display: flex; gap: 26px; }
.footer-nav a { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--accent); }
.footer-fine { font-size: 12px; color: var(--muted); max-width: 320px; line-height: 1.6; flex-basis: 100%; }

/* ---------------------------------------------------------------------
   Privacy policy
------------------------------------------------------------------------*/
.privacy-back {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 10px;
}
.privacy-back:hover { background: var(--paper-sunken); color: var(--accent); }
.privacy-hero { padding: 126px 0 80px; border-bottom: 1px solid var(--line); }
.privacy-hero-inner { max-width: 780px; }
.privacy-hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.03; letter-spacing: -.045em; margin: 14px 0 22px; }
.privacy-lead { max-width: 650px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--ink-soft); }
.privacy-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; font-size: 13px; font-weight: 700; color: var(--muted); }
.privacy-content { padding: 72px 0 120px; }
.privacy-layout { display: grid; grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr); gap: clamp(52px, 9vw, 130px); align-items: start; }
.privacy-summary { position: sticky; top: 104px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-raised); box-shadow: var(--shadow-soft); }
.privacy-summary .eyebrow { margin-bottom: 16px; }
.privacy-summary ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.privacy-summary li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; color: var(--ink-soft); font-weight: 600; }
.summary-mark { width: 19px; height: 19px; display: inline-flex; align-items: center; justify-content: center; flex: none; border-radius: 999px; margin-top: 1px; }
.summary-mark svg { width: 9px; height: 9px; }
.summary-mark-blue svg { width: 7px; height: 7px; }
.summary-mark-green { background: color-mix(in srgb, var(--green) 16%, var(--paper-raised)); color: var(--green); }
.summary-mark-blue { background: var(--accent-soft); color: var(--accent); }

/* A quiet on-page nav beneath the checklist — turns the sidebar from a
   purely decorative summary into something actually useful while reading
   a long policy. Plain text links with a hover shift, matching the
   footer nav's own restraint rather than a boxed/pill treatment. */
.privacy-jump { display: grid; gap: 2px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.privacy-jump a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--line);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.privacy-jump a:hover { color: var(--accent); border-left-color: var(--accent); }

.privacy-copy { max-width: 720px; }
.privacy-copy section { padding: 0 0 38px; margin: 0 0 38px; border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
.privacy-copy section:last-child { border-bottom: 0; margin-bottom: 0; }
.privacy-section-head { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; }
.privacy-section-icon {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
}
.privacy-section-icon svg { width: 19px; height: 19px; }
.privacy-copy h2 { font-size: clamp(21px, 2.2vw, 26px); letter-spacing: -.02em; line-height: 1.25; margin: 0; }
.privacy-copy p { max-width: 68ch; font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 14px; }
.privacy-copy p:last-child { margin-bottom: 0; }
.privacy-copy strong { color: var(--ink); }
.privacy-copy a { color: var(--accent); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.privacy-copy a:hover { color: var(--accent-ink); }
.privacy-copy code { color: var(--ink); background: var(--paper-sunken); border: 1px solid var(--line); border-radius: 6px; padding: 2px 5px; font-size: .88em; }
.privacy-callout { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; padding: 20px; background: var(--accent-soft); border-radius: var(--radius-md); border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line)); }
.callout-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: none; background: var(--paper-raised); border-radius: 10px; color: var(--accent); }
.callout-icon svg { width: 17px; height: 17px; }
.privacy-callout p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.cta-privacy-note { margin: 0 !important; font-size: 13px !important; color: rgba(255, 255, 255, .56) !important; }
.cta-privacy-note a { color: #b8ceff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------------
   Responsive
------------------------------------------------------------------------*/
@media (max-width: 980px) {
  .hero-row { grid-template-columns: 1fr; }
  .hero-visual { height: 460px; margin-top: 10px; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; gap: 36px; }
  .feature-row-reverse .feature-visual, .feature-row-reverse .feature-copy { order: initial; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step::before { display: none; }
  .strip-row { grid-template-columns: 1fr; gap: 22px; }
  .cta-row { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .cta-copy p { margin-left: auto; margin-right: auto; }
  .hero-ctas.cta-ctas { justify-content: center; }
  .cta-visual { order: -1; }
  .cta-phone { width: 220px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 36px; }
  .privacy-summary { position: static; max-width: 680px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 0 40px; }
  .hero-visual { height: 400px; }
  .phone { width: 200px; }
  .phone-back { transform: translate(-40px, -14px) rotate(-7deg); }
  .phone-front { transform: translate(42px, 30px) rotate(6deg); }
  .feature-list { grid-template-columns: 1fr; }
  .cta { padding: 70px 0; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .privacy-hero { padding: 100px 0 58px; }
  .privacy-content { padding: 48px 0 80px; }
  .privacy-summary { padding: 22px; }
  .privacy-copy section { padding-bottom: 30px; margin-bottom: 30px; }
}
