:root {
  --ink: #15131c;
  --ink-2: #292633;
  --muted: #6f6a79;
  --line: #ddd9e3;
  --paper: #f7f6f8;
  --white: #ffffff;
  --purple: #6f35ef;
  --purple-dark: #4f20bd;
  --purple-pale: #eee8ff;
  --teal: #167c78;
  --coral: #e76f51;
  --success: #18845c;
  --shadow: 0 24px 70px rgba(18, 13, 31, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100%;
}
body.menu-open { overflow: hidden; }
button, input, select { font: inherit; letter-spacing: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 90px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; line-height: 1.02; }
h1 { font-size: clamp(2.75rem, 6.5vw, 6.4rem); font-weight: 760; max-width: 980px; }
h2 { font-size: clamp(2.15rem, 4.7vw, 4.75rem); font-weight: 735; }
h3 { font-size: 1.25rem; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--white);
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 14px 20px;
  color: var(--white);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 8px));
  min-height: 62px;
  margin: 0 auto;
  padding: 9px 11px 9px 13px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(18, 16, 25, .58);
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
  backdrop-filter: blur(18px) saturate(130%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 42px; height: 42px; border-radius: 11px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 16px; }
.brand small { margin-top: 3px; color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: 0; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: 28px; }
.site-nav a { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 760;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 3px solid rgba(111,53,239,.35);
  outline-offset: 3px;
}
.button-primary { color: var(--white); background: var(--purple); box-shadow: 0 13px 28px rgba(111,53,239,.27); }
.button-primary:hover { background: var(--purple-dark); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(15,13,20,.28); }
.button-ghost:hover { border-color: var(--white); background: rgba(15,13,20,.62); }
.button-light { color: var(--ink); background: var(--white); }
.button-white { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 12px; }
.button-block { width: 100%; }
.text-link { color: var(--white); font-size: 14px; font-weight: 700; text-underline-offset: 5px; }

.hero {
  position: relative;
  min-height: 680px;
  height: 88svh;
  max-height: 880px;
  overflow: hidden;
  color: var(--white);
  background: #16141b;
}
.hero-media { position: absolute; inset: 0; background: url('/assets/hero-tenerife.webp') center center / cover no-repeat; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,9,14,.94) 0%, rgba(10,9,14,.83) 36%, rgba(10,9,14,.17) 69%, rgba(10,9,14,.06) 100%),
    linear-gradient(0deg, rgba(10,9,14,.62) 0%, transparent 38%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(138px, 19vh, 190px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow { color: rgba(255,255,255,.75); }
.eyebrow span { width: 28px; height: 2px; background: #9d78ff; }
.hero h1 { max-width: 840px; margin-bottom: 23px; }
.hero-copy { max-width: 650px; margin-bottom: 30px; color: rgba(255,255,255,.76); font-size: clamp(1.02rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-offer {
  margin-top: auto;
  margin-bottom: 34px;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-offer div { min-width: 165px; padding: 16px 26px 0 0; }
.hero-offer div + div { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-offer strong, .hero-offer span { display: block; }
.hero-offer strong { font-size: 17px; }
.hero-offer span { margin-top: 3px; color: rgba(255,255,255,.56); font-size: 11px; }
.hero-caption { position: absolute; z-index: 2; right: 28px; bottom: 24px; max-width: 320px; text-align: right; color: rgba(255,255,255,.58); font-size: 11px; }
.hero-caption span { color: rgba(255,255,255,.9); font-weight: 700; }

.trust-strip { color: var(--white); background: var(--purple); }
.section-inner { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.trust-grid { min-height: 96px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 28px; }
.trust-grid p { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; }
.trust-grid strong { color: var(--white); }

.section { padding: clamp(84px, 10vw, 150px) 0; }
.section-problem { background: var(--white); }
.split-intro { display: grid; grid-template-columns: 1.1fr .8fr; align-items: end; gap: 80px; }
.split-intro h2 { max-width: 720px; margin-bottom: 0; }
.section-lede { margin: 0 0 8px; color: var(--muted); font-size: 1.12rem; }
.steps { margin-top: 80px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps article { padding: 28px 46px 0 0; }
.steps article + article { padding-left: 46px; border-left: 1px solid var(--line); }
.step-number { display: block; margin-bottom: 50px; color: var(--purple); font-size: 13px; font-weight: 800; }
.steps h3 { margin-bottom: 14px; }
.steps p { color: var(--muted); margin-bottom: 0; }

.product-section { color: var(--white); background: #17151d; }
.product-grid { display: grid; grid-template-columns: .86fr 1.1fr; align-items: center; gap: clamp(64px, 9vw, 130px); }
.section-kicker-light { color: #af94ff; }
.product-copy h2 { margin-bottom: 25px; }
.product-copy > p:not(.section-kicker) { color: rgba(255,255,255,.62); font-size: 1.08rem; }
.feature-list { margin: 32px 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.feature-list li { color: rgba(255,255,255,.8); }
.feature-list span { margin-right: 10px; color: #6fd2b0; }
.signal-console { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: #0e0d12; box-shadow: 0 36px 100px rgba(0,0,0,.34); }
.console-top { min-height: 66px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); }
.console-brand { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 760; }
.console-brand img { border-radius: 7px; }
.live-indicator { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; }
.live-indicator i { width: 7px; height: 7px; border-radius: 50%; background: #58d19f; box-shadow: 0 0 0 5px rgba(88,209,159,.12); }
.console-stats { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.1); }
.console-stats div { padding: 22px; }
.console-stats div + div { border-left: 1px solid rgba(255,255,255,.1); }
.console-stats strong, .console-stats span { display: block; }
.console-stats strong { font-size: 24px; }
.console-stats span { color: rgba(255,255,255,.46); font-size: 10px; }
.signal-feed { padding: 10px 18px; }
.signal-item { min-height: 68px; display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.08); }
.signal-item > i { width: 7px; height: 7px; border-radius: 50%; background: #7d748d; }
.signal-item.active > i { background: #9b73ff; box-shadow: 0 0 0 5px rgba(155,115,255,.12); }
.signal-item.success > i { background: #58d19f; }
.signal-item span, .signal-item strong, .signal-item small { display: block; }
.signal-item strong { font-size: 12px; }
.signal-item small, .signal-item time { color: rgba(255,255,255,.4); font-size: 10px; }
.console-note { margin: 0; padding: 12px 18px; color: rgba(255,255,255,.58); background: rgba(255,255,255,.025); font-size: 11px; }

.included-section { background: #f0eef3; }
.include-grid { margin-top: 74px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.include-grid article { min-height: 245px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.include-grid span { color: var(--purple); font-size: 11px; font-weight: 800; }
.include-grid h3 { margin: 54px 0 13px; }
.include-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.pricing-section { background: var(--white); }
.pricing-layout { display: grid; grid-template-columns: 1fr 470px; align-items: center; gap: clamp(70px, 10vw, 150px); }
.pricing-copy h2 { max-width: 650px; }
.pricing-copy > p:not(.section-kicker) { max-width: 620px; color: var(--muted); font-size: 1.08rem; }
.comparison { margin-top: 42px; border-top: 1px solid var(--line); }
.comparison div { min-height: 62px; display: grid; grid-template-columns: 1fr 120px 130px; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); font-size: 13px; }
.comparison s { color: #9a94a0; }
.comparison strong { text-align: right; }
.price-card { overflow: hidden; border: 1px solid #cec6dc; border-radius: 8px; background: #f8f6fc; box-shadow: var(--shadow); }
.price-card-head { padding: 29px; color: var(--white); background: var(--ink); }
.price-card-head > span { color: #b8a5ec; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.price-card-head div { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
.price-card-head strong { font-size: 58px; line-height: 1; }
.price-card-head small, .price-card-head p { color: rgba(255,255,255,.57); }
.price-card-head p { margin: 11px 0 0; font-size: 12px; }
.price-card ul { margin: 0; padding: 25px 29px 12px; list-style: none; }
.price-card li { position: relative; padding: 9px 0 9px 25px; border-bottom: 1px solid var(--line); font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.price-card .button { width: calc(100% - 58px); margin: 14px 29px 0; }
.price-fine { margin: 17px 29px 24px; color: var(--muted); font-size: 11px; line-height: 1.5; }

.proposal-section { color: var(--white); background: var(--purple); }
.proposal-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(60px, 8vw, 120px); }
.proposal-copy { position: sticky; top: 120px; }
.proposal-copy h2 { margin-bottom: 24px; }
.proposal-copy > p:not(.section-kicker) { color: rgba(255,255,255,.7); }
.proposal-copy > a { color: var(--white); font-weight: 700; text-underline-offset: 5px; }
.response-promise { margin: 36px 0 26px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.25); font-size: 12px; }
.response-promise span { color: rgba(255,255,255,.6); }
.lead-form { padding: clamp(26px, 4vw, 48px); border: 1px solid rgba(255,255,255,.22); border-radius: 8px; color: var(--ink); background: var(--white); box-shadow: 0 28px 70px rgba(42,18,103,.24); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; margin-bottom: 16px; font-size: 11px; font-weight: 800; }
label > span { color: var(--muted); font-weight: 500; }
input, select { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid #d7d2dc; border-radius: 5px; color: var(--ink); background: #fbfafc; }
input::placeholder { color: #aaa4b0; }
.check-label { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; font-weight: 500; line-height: 1.45; }
.check-label input { width: 17px; min-height: 17px; margin: 2px 0 0; accent-color: var(--purple); }
.check-label a { color: var(--purple-dark); }
.field-note { margin: -8px 0 18px; color: var(--muted); font-size: 12px; }
.form-noscript { margin: 0 0 14px; padding: 12px; border-left: 3px solid var(--coral); color: var(--ink-2); background: #fff4ef; font-size: 12px; }
.form-noscript a { color: var(--purple-dark); font-weight: 700; }
.form-status { min-height: 22px; margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.form-status:focus { outline: 2px solid rgba(111,53,239,.32); outline-offset: 3px; }
.form-status.success { color: var(--success); }
.form-status.error { color: #b8383b; }

.booking-section { background: #e8f1ef; }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.booking-layout > div p:not(.section-kicker) { max-width: 560px; color: var(--muted); }
.booking-form { padding-left: 46px; border-left: 1px solid #b9cfca; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 42px 23px 0; cursor: pointer; font-weight: 730; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--purple); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 720px; padding: 0 45px 22px 0; color: var(--muted); font-size: 14px; }

.closing-section { padding: 120px 0; color: var(--white); text-align: center; background: #15131c; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing-inner img { margin-bottom: 22px; border-radius: 16px; }
.closing-inner p { margin-bottom: 8px; color: rgba(255,255,255,.58); }
.closing-inner h2 { max-width: 820px; margin-bottom: 32px; }

.site-footer { padding: 40px 0 30px; color: #c9c4d0; background: #0d0c10; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.brand-footer img { border-radius: 10px; }
.brand-footer small { color: #837d8d; }
.footer-grid > p { max-width: 500px; margin: 0; color: #837d8d; font-size: 12px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 20px; font-size: 12px; }
.footer-link, .inline-link { padding: 0; color: inherit; background: transparent; border: 0; border-radius: 0; font: inherit; text-decoration: underline; cursor: pointer; }
.inline-link { color: var(--purple-dark); }
.footer-grid > small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid #28252d; color: #625d68; }
.nav-mobile-cta { display: none; }

@media (min-width: 1200px) and (max-height: 980px) {
  .hero-inner { padding-top: 112px; }
  .eyebrow { margin-bottom: 16px; }
  .hero h1 { max-width: 900px; margin-bottom: 16px; font-size: 5rem; }
  .hero-copy { margin-bottom: 22px; }
  .hero-offer { margin-bottom: 24px; }
}

@media (max-width: 980px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 11px; }
  .hero-caption { display: none; }
  .product-grid, .pricing-layout { grid-template-columns: 1fr; }
  .signal-console { width: min(720px, 100%); }
  .pricing-layout { gap: 60px; }
  .price-card { width: min(520px, 100%); }
  .include-grid { grid-template-columns: repeat(2, 1fr); }
  .proposal-layout { grid-template-columns: .75fr 1.25fr; gap: 50px; }
}

@media (max-width: 760px) {
  body.menu-open::before { content: ""; position: fixed; inset: 0; z-index: 46; background: rgba(8,7,11,.82); }
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  .site-header { position: absolute; padding: 9px; }
  section[id] { scroll-margin-top: 16px; }
  .nav-wrap { width: 100%; max-width: calc(100vw - 18px); min-height: 56px; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; padding: 7px 9px; background: #17141f; backdrop-filter: none; }
  .brand img { width: 38px; height: 38px; }
  .nav-cta { display: none; }
  .menu-toggle { justify-self: end; display: block; min-height: 38px; padding: 0 12px; border: 1px solid rgba(255,255,255,.17); border-radius: 5px; color: var(--white); background: transparent; font-size: 12px; font-weight: 700; }
  .site-nav { position: fixed; top: 73px; right: 9px; left: 9px; width: auto; padding: 18px; display: none; flex-direction: column; align-items: stretch; justify-self: stretch; gap: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: rgba(16,14,21,.98); box-shadow: var(--shadow); }
  body.menu-open .site-nav { display: flex; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
  .site-nav .nav-mobile-cta { display: flex; min-height: 46px; margin-top: 14px; padding: 0 14px; align-items: center; justify-content: center; border: 0; border-radius: 6px; color: var(--white); background: var(--purple); font-weight: 800; }
  .hero { height: auto; min-height: 0; max-height: none; overflow: hidden; isolation: isolate; }
  .hero-media { background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,9,14,.92), rgba(10,9,14,.48)), linear-gradient(0deg, rgba(10,9,14,.82), transparent 55%); }
  .hero-inner, .section-inner { width: calc(100% - 32px); max-width: var(--max); min-width: 0; }
  .hero-inner { height: auto; min-height: 0; padding-top: 108px; padding-bottom: 28px; }
  .eyebrow { margin-bottom: 16px; }
  .hero h1 { max-width: 560px; margin-bottom: 15px; }
  .hero-copy { max-width: 520px; margin-bottom: 22px; font-size: .98rem; }
  .hero-actions { width: 100%; min-width: 0; align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero-actions .button { width: 100%; max-width: 100%; min-height: 46px; justify-content: space-between; white-space: normal; }
  .hero-offer { width: 100%; min-width: 0; margin-top: 40px; margin-bottom: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-offer div { min-width: 0; padding: 12px 10px 0 0; overflow: hidden; }
  .hero-offer div + div { padding-left: 10px; }
  .hero-offer strong { font-size: 13px; overflow-wrap: anywhere; }
  .hero-offer span { font-size: 8px; overflow-wrap: anywhere; }
  .trust-grid { padding: 22px 0; grid-template-columns: 1fr; gap: 10px; }
  .trust-grid p { padding-left: 15px; border-left: 2px solid rgba(255,255,255,.35); }
  .section { padding: 82px 0; }
  .split-intro, .product-grid, .proposal-layout, .booking-layout, .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .steps { margin-top: 52px; grid-template-columns: 1fr; }
  .steps article, .steps article + article { padding: 24px 0 30px; border-left: 0; border-bottom: 1px solid var(--line); }
  .step-number { margin-bottom: 28px; }
  .include-grid { margin-top: 48px; grid-template-columns: 1fr; }
  .include-grid article { min-height: 210px; }
  .include-grid h3 { margin-top: 42px; }
  .comparison div { grid-template-columns: 1fr 78px 95px; font-size: 11px; }
  .price-card-head strong { font-size: 48px; }
  .proposal-copy { position: static; }
  .lead-form { padding: 23px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form { padding-left: 0; border-left: 0; }
  .faq-layout { gap: 22px; }
  .closing-section { padding: 86px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid nav { justify-content: flex-start; }
}

@media (max-width: 420px) {
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .hero-offer strong { font-size: 12px; }
  .hero-offer span { max-width: 100%; }
  .console-stats strong { font-size: 19px; }
  .signal-item { grid-template-columns: 8px 1fr; }
  .signal-item time { display: none; }
}

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

.form-status[data-state="success"] { color: var(--success); }
.form-status[data-state="error"] { color: #b52828; }
.anti-bot-slot { width: 100%; min-height: 0; margin: 0 0 14px; overflow: hidden; }
.anti-bot-slot[hidden] { display: none; }
.anti-bot-slot iframe { max-width: 100%; }
button:disabled { cursor: wait; opacity: .72; }
form[aria-busy="true"] { cursor: progress; }

.legal-page { min-height: 100vh; background: var(--white); }
.legal-header {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.legal-header .brand span { display: grid; }
.legal-header .brand small { color: var(--muted); }
.legal-content { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 120px; }
.legal-content h1 { max-width: 740px; font-size: clamp(2.6rem, 7vw, 5rem); }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.55rem; }
.legal-content p { color: var(--ink-2); line-height: 1.75; }
.legal-content a { color: var(--purple-dark); }
.legal-lead { max-width: 660px; font-size: 1.2rem; }
.legal-updated { margin-top: 70px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .9rem; }
.fallback-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.fallback-actions > a:not(.button) { color: var(--purple-dark); font-weight: 700; }
