/* ============ TOKENS ============ */
:root {
  /* brand */
  --warm:        #EFA765;
  --warm-light:  #F1B77C;
  --warm-soft:   #F0AC76;
  --warm-pale:   #FFE7A0;
  --rose:        #93334A;
  --rose-hover:  #7B3E4E;
  --trust:       #1F396D;
  --trust-soft:  #3B547D;
  --error:       #DD6160;
  --success:     #3D8B5C;

  /* surfaces */
  --bg:        #FFF8F0;
  --surface:   #FFFFFF;
  --tint:      #FFF1E0;
  --divider:   #F0E4D4;
  --ink:       #2D1810;
  --ink-soft:  #6B5750;

  /* dark */
  --dark-bg:      #1A1414;
  --dark-surface: #2D2420;
  --dark-tint:    #3A2E28;
  --dark-ink:     #FFE7D6;
  --dark-ink-soft:#B8A89E;

  /* layout */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --maxw:      1200px;
  --gut:       clamp(20px, 4vw, 48px);

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(45,24,16,.06), 0 2px 6px rgba(45,24,16,.04);
  --shadow:    0 8px 28px rgba(45,24,16,.10), 0 2px 6px rgba(45,24,16,.05);
  --shadow-lg: 0 24px 60px rgba(45,24,16,.18), 0 8px 20px rgba(45,24,16,.08);

  /* fonts */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ============ TYPE ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--warm) 0%, var(--rose) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 6px 12px;
  border: 1px solid color-mix(in oklab, var(--rose) 25%, transparent);
  background: color-mix(in oklab, var(--rose) 6%, white);
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  max-width: 22ch;
}
.section-sub {
  margin-top: 14px;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.4vw, 18px);
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid color-mix(in oklab, var(--divider) 80%, transparent);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--warm-pale), white);
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: flex; gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--tint); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; margin: 4px auto;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px var(--gut) 22px;
  border-top: 1px solid var(--divider);
  background: var(--bg);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 12px 14px; border-radius: 12px; font-weight: 500; color: var(--ink);
}
.mobile-menu a:hover { background: var(--tint); }
.mobile-menu .btn { margin-top: 6px; justify-content: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  font-weight: 600; font-size: 14px;
  border-radius: 999px;
  border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, #B14463 100%);
  color: #fff;
  box-shadow: 0 8px 22px color-mix(in oklab, var(--rose) 40%, transparent);
}
.btn-primary:hover { background: var(--rose-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--divider);
}
.btn-ghost:hover { background: var(--tint); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(50px, 8vw, 90px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .65;
}
.orb-1 { width: 520px; height: 520px; left: -120px; top: -160px;
  background: radial-gradient(circle, var(--warm) 0%, transparent 60%); }
.orb-2 { width: 520px; height: 520px; right: -160px; top: 40px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 65%); opacity:.4; }
.orb-3 { width: 380px; height: 380px; right: 30%; bottom: -180px;
  background: radial-gradient(circle, var(--warm-pale) 0%, transparent 60%); }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--ink) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--ink) 5%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: .6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--rose);
  padding: 6px 14px;
  background: color-mix(in oklab, var(--rose) 8%, white);
  border: 1px solid color-mix(in oklab, var(--rose) 18%, transparent);
  border-radius: 999px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--rose) 25%, transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); opacity:.5; } }

.hero-title {
  font-size: clamp(36px, 5.4vw, 68px);
  margin: 22px 0 18px;
  max-width: 16ch;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 52ch;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* ----- phone mock ----- */
.hero-visual { position: relative; justify-self: center; }
.phone {
  width: clamp(260px, 28vw, 330px);
  aspect-ratio: 9/19;
  background: linear-gradient(160deg, #221a18, #3a2e28);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg),
              inset 0 0 0 2px color-mix(in oklab, var(--warm) 30%, transparent);
  position: relative;
  transform: rotate(-3deg);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-10px); }
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; background: #0a0707;
  border-radius: 999px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 30%, var(--tint) 100%);
  border-radius: 32px;
  padding: 36px 14px 12px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
}
.ps-status {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600; color: var(--ink);
  padding: 0 4px;
}
.ps-greet {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px;
}
.ps-greet > div:first-child { display: flex; flex-direction: column; gap: 1px; }
.ps-greet strong { font-size: 13px; color: var(--ink); }
.ps-greet span { font-size: 10px; color: var(--ink-soft); }
.ps-bell {
  position: relative;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: white; border: 1px solid var(--divider);
  border-radius: 999px; color: var(--ink);
}
.ps-badge {
  position: absolute; top: 2px; right: 2px;
  width: 7px; height: 7px; background: var(--rose);
  border-radius: 999px; border: 1.5px solid white;
}
.ps-search {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: white;
  border: 1px solid var(--divider);
  border-radius: 14px;
  font-size: 11px; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.ps-chips { display: flex; gap: 5px; flex-wrap: nowrap; overflow: hidden; }
.ps-chip {
  font-size: 9.5px; padding: 5px 9px;
  background: white;
  border: 1px solid var(--divider);
  border-radius: 999px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.ps-chip.active { background: var(--rose); color: white; border-color: var(--rose); }
.ps-section {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px; margin-top: 2px;
}
.ps-section strong { font-size: 11.5px; color: var(--ink); }
.ps-section span { font-size: 9.5px; color: var(--rose); font-weight: 600; }

.ps-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
}
.ps-card-img {
  position: relative;
  height: 64px;
  background: linear-gradient(135deg, var(--warm-pale), var(--warm), var(--rose));
}
.ps-card-img.alt {
  background: linear-gradient(135deg, var(--trust-soft), var(--trust), #0c1e3d);
}
.ps-rate {
  position: absolute; top: 6px; left: 6px;
  background: rgba(0,0,0,.55); color: white;
  font-size: 9px; font-weight: 600;
  padding: 2px 6px; border-radius: 999px;
}
.ps-heart {
  position: absolute; top: 6px; right: 6px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: white; color: var(--rose);
  border-radius: 999px; font-size: 11px;
}
.ps-card-meta {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 10px;
}
.ps-card-meta strong { font-size: 11px; color: var(--ink); }
.ps-card-meta span { font-size: 9.5px; color: var(--ink-soft); }
.ps-card-meta .ps-price {
  font-size: 11px; font-weight: 700; color: var(--rose);
  margin-top: 2px;
}
.ps-card-meta .ps-price em {
  font-style: normal; font-weight: 500;
  color: var(--ink-soft); font-size: 9.5px;
}

.ps-tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around;
  padding: 6px 4px 4px;
  border-top: 1px solid var(--divider);
  background: white;
  border-radius: 0 0 18px 18px;
}
.ps-tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 8.5px; color: var(--ink-soft);
  flex: 1;
}
.ps-tab svg { width: 14px; height: 14px; }
.ps-tab.active { color: var(--rose); }

/* ============ MARQUEE ============ */
.marquee {
  border-block: 1px solid var(--divider);
  background: linear-gradient(90deg, var(--bg), white, var(--bg));
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink-soft);
}
.marquee-track span:not(:nth-child(2n)) { color: var(--ink); font-style: normal; font-weight: 600; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(70px, 9vw, 120px) 0;
}
.section-tint { background: var(--tint); }
.section-dark {
  background: linear-gradient(160deg, #1F396D 0%, #2D1810 100%);
  color: var(--dark-ink);
}
.section-dark .section-tag { color: var(--warm-pale); border-color: color-mix(in oklab, var(--warm-pale) 30%, transparent); background: color-mix(in oklab, white 4%, transparent); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .section-sub, .section-dark p { color: var(--dark-ink-soft); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.light h2 em {
  background: linear-gradient(135deg, var(--warm-pale) 0%, var(--warm) 90%);
  -webkit-background-clip: text; background-clip: text;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.65;
}

/* ============ FEATURE GRID ============ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feat {
  background: white;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--warm) 0%, var(--rose) 100%);
  opacity: 0; transition: opacity .25s;
  z-index: -1;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feat:hover::before { opacity: .08; }
.feat-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--warm-pale), color-mix(in oklab, var(--warm) 40%, white));
  color: var(--rose);
  margin-bottom: 18px;
}
.feat-icon svg { width: 22px; height: 22px; }
.feat h3 { font-size: 19px; margin-bottom: 8px; }
.feat p { color: var(--ink-soft); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ============ CAPACIDADES ============ */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cap-card {
  background: white;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
}
.cap-card::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, var(--warm-pale) 0%, transparent 65%);
}
.cap-card.alt::after {
  background: radial-gradient(circle, color-mix(in oklab, var(--trust) 30%, transparent) 0%, transparent 65%);
}
.cap-card header { margin-bottom: 22px; position: relative; }
.cap-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 10px;
}
.cap-card.alt .cap-tag { color: var(--trust); }
.cap-card h3 { font-size: clamp(22px, 2.4vw, 30px); max-width: 16ch; }
.cap-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--divider);
  color: var(--ink-soft);
  font-size: 15px;
}
.cap-list li:first-child { border-top: 0; }
.cap-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm), var(--rose));
  box-shadow: 0 4px 10px color-mix(in oklab, var(--rose) 25%, transparent);
}
.cap-list li::after {
  content: ""; position: absolute; left: 4px; top: 23px;
  width: 10px; height: 5px;
  border-left: 2px solid white; border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.cap-card.alt .cap-list li::before {
  background: linear-gradient(135deg, var(--trust-soft), var(--trust));
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: stepcount;
}
.steps li {
  background: color-mix(in oklab, white 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--warm-pale) 25%, transparent);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, var(--warm-pale), var(--warm));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 12px;
}
.steps h3 { font-size: 20px; color: white; margin-bottom: 10px; }
.steps p { font-size: 14.5px; color: var(--dark-ink-soft); margin: 0; }

/* ============ BENEFITS ============ */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.ben {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, white 0%, var(--tint) 100%);
  border: 1px solid var(--divider);
  transition: transform .25s;
}
.ben:hover { transform: translateY(-3px); }
.ben-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--warm) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px color-mix(in oklab, var(--rose) 30%, transparent);
}
.ben-icon svg { width: 26px; height: 26px; }
.ben h3 { font-size: 19px; margin-bottom: 6px; }
.ben p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ============ FAQ ============ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: white;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: box-shadow .2s, border-color .2s;
}
.faq details[open] { box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--rose) 25%, transparent); }
.faq summary {
  font-weight: 600; font-size: 16px;
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--rose);
  transition: transform .25s;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ CTA ============ */
.section-cta {
  background:
    radial-gradient(circle at 20% 20%, color-mix(in oklab, var(--warm) 50%, transparent) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, color-mix(in oklab, var(--rose) 60%, transparent) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg), #fff);
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.cta-inner h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  background: linear-gradient(135deg, var(--ink) 0%, var(--rose) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cta-inner p { color: var(--ink-soft); font-size: 17px; max-width: 50ch; margin: 0; }
.store-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  transition: transform .15s, background .2s;
}
.store-btn:hover { background: #1a0e09; transform: translateY(-2px); }
.store-btn span { font-size: 15px; font-weight: 600; line-height: 1.05; text-align: left; }
.store-btn small { font-size: 10px; font-weight: 400; opacity: .8; letter-spacing: .05em; text-transform: uppercase; }
.cta-foot { font-size: 13px !important; color: var(--ink-soft); }

/* ============ LEGAL ============ */
.section-legal { background: var(--bg); }
.legal-tabs {
  display: inline-flex;
  padding: 6px;
  background: white;
  border: 1px solid var(--divider);
  border-radius: 999px;
  gap: 4px;
  margin-bottom: 32px;
}
.legal-tab {
  border: 0; background: transparent;
  padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.legal-tab.active {
  background: var(--ink);
  color: white;
}
.legal-tab:hover:not(.active) { color: var(--ink); }

.legal-panel {
  background: white;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
}
.legal-panel[hidden] { display: none; }
.legal-header { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--divider); }
.legal-header h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 6px; }
.legal-date { font-size: 13px; color: var(--ink-soft); }

.legal-body details {
  border-top: 1px solid var(--divider);
  padding: 18px 0;
}
.legal-body details:first-child { border-top: 0; padding-top: 4px; }
.legal-body summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink);
}
.legal-body summary::-webkit-details-marker { display: none; }
.legal-body summary::after {
  content: "→"; margin-left: auto;
  color: var(--rose);
  transition: transform .25s;
}
.legal-body details[open] summary::after { transform: rotate(90deg); }
.legal-body .legal-content {
  padding: 14px 0 4px 0;
  white-space: pre-wrap;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--dark-ink-soft);
  padding: 72px 0 24px;
}
.footer .brand-mark { background: color-mix(in oklab, var(--warm) 18%, transparent); }
.footer .brand-name { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid color-mix(in oklab, white 10%, transparent);
}
.footer-tag { margin-top: 14px; max-width: 30ch; }
.footer h4 {
  color: white; font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer a {
  display: block; padding: 6px 0;
  font-size: 14.5px;
  transition: color .2s;
}
.footer a:hover { color: var(--warm-pale); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 24px;
  font-size: 13px;
  opacity: .7;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .two-col { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(32px, 9vw, 42px); }
}

/* ============ MOTION ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
