:root {
  --ink: #17172f;
  --ink-deep: #101020;
  --paper: #f6f1e7;
  --surface: #ffffff;
  --violet: #7657ff;
  --violet-deep: #5135d5;
  --lime: #c8ff3d;
  --coral: #ff6b57;
  --sky: #dceaff;
  --muted: #666779;
  --line: #c9c6bd;
  --error: #b42336;
  --success: #08754f;
  --radius-small: 10px;
  --radius: 20px;
  --radius-large: 32px;
  --shadow: 8px 8px 0 var(--ink);
  --measure: 64ch;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 500 17px/1.5 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select { font: inherit; }

a { color: inherit; }

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

h1, h2, h3 {
  font-family: "Arial Black", "Avenir Next", Inter, ui-sans-serif, sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 { font-size: clamp(3.6rem, 7.4vw, 7.8rem); }
h2 { font-size: clamp(2.45rem, 5vw, 5.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.1; }

.wrap {
  width: min(100%, 76rem);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 3.5vw, 2.5rem);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: -9999px;
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-small);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.skip-link:focus { left: 0.75rem; }

:focus-visible {
  outline: 4px solid var(--coral);
  outline-offset: 3px;
}

[hidden] { display: none !important; }

/* Hero */

.hero {
  min-height: 46rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 44rem;
  height: 44rem;
  right: -20rem;
  top: -16rem;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5rem rgba(118,87,255,.16), 0 0 0 10rem rgba(118,87,255,.08);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  left: -8rem;
  bottom: -9rem;
  border-radius: 50%;
  background: var(--coral);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px dashed rgba(255,255,255,.24);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { width: 35rem; height: 35rem; right: 1rem; top: 9rem; transform: rotate(20deg); }
.orbit-two { width: 24rem; height: 24rem; right: 7rem; top: 15rem; transform: rotate(-18deg); }

.hero-wrap {
  min-height: 46rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, .85fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding-bottom: 8rem;
}

.topbar {
  grid-column: 1 / -1;
  min-height: 5.5rem;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.wordmark-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 0.7rem;
  background: var(--lime);
  color: var(--ink);
  font-family: "Arial Black", sans-serif;
  box-shadow: 3px 3px 0 currentColor;
}

.privacy-link {
  padding: 0.55rem 0;
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.privacy-link:hover { color: var(--lime); }

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 4.5rem;
}

.eyebrow,
.step-label {
  margin-bottom: 1rem;
  color: var(--violet-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--lime);
}

.live-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0.35rem rgba(200,255,61,.14);
}

.hero h1 { margin-bottom: 1.65rem; }
.hero h1 { font-size: clamp(3.5rem, 6vw, 5.75rem); }
.hero-line { display: block; }
.hero-lime { color: var(--lime); }

.lead {
  max-width: 36rem;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 2px solid var(--lime);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.hero-action span { color: var(--lime); }

.job-orbit {
  min-height: 29rem;
  position: relative;
  align-self: end;
}

.mail-window {
  width: 19rem;
  min-height: 14rem;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px solid var(--ink-deep);
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 10px 10px 0 rgba(0,0,0,.28);
  transform: translate(-50%, -50%) rotate(2deg);
}

.mail-top {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0 0.85rem;
  border-bottom: 2px solid var(--ink);
  background: #ece9ff;
}

.mail-top span { width: 0.55rem; height: 0.55rem; border: 1px solid var(--ink); border-radius: 50%; background: var(--coral); }
.mail-top span:nth-child(2) { background: var(--lime); }
.mail-top span:nth-child(3) { background: var(--sky); }
.mail-top b { margin-left: auto; font-size: 0.72rem; }

.mail-body { padding: 1.4rem; }
.mail-body p { margin: 0.75rem 0 0.2rem; color: var(--muted); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.mail-body strong { font-family: "Arial Black", sans-serif; font-size: 1.65rem; letter-spacing: -0.04em; }

.mail-icon {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--lime);
  font-size: 1.6rem;
  font-weight: 900;
}

.job-ticket {
  min-width: 16rem;
  min-height: 4.6rem;
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(0,0,0,.35);
}

.job-ticket b,
.job-ticket small { display: block; }
.job-ticket b { font-size: 0.82rem; line-height: 1.2; }
.job-ticket small { margin-top: 0.2rem; color: var(--muted); font-size: 0.66rem; }
.job-ticket i { color: var(--violet); font-style: normal; font-weight: 900; }

.ticket-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 0.65rem;
  background: var(--sky);
  font-weight: 900;
}

.ticket-one { top: 1rem; left: -2rem; transform: rotate(-5deg); }
.ticket-two { right: -1.25rem; top: 6rem; transform: rotate(4deg); }
.ticket-three { left: -1rem; bottom: 1.5rem; transform: rotate(3deg); }
.ticket-two .ticket-icon { background: var(--coral); }
.ticket-three .ticket-icon { background: var(--lime); }

/* Signup */

.signup-section {
  position: relative;
  background: var(--paper);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.signup-wrap { margin-top: -5.3rem; position: relative; z-index: 4; }

.signup-intro {
  width: min(100%, 45rem);
  margin-bottom: 1.25rem;
  padding: 1.45rem 2rem 0;
  color: var(--ink);
}

.signup-intro .step-label { color: var(--violet-deep); }
.signup-intro h2 { margin-bottom: 0.45rem; font-size: clamp(2rem, 4vw, 3.5rem); }
.signup-intro p:last-child { margin-bottom: 0; color: var(--muted); }

.panel-form {
  border: 2px solid var(--ink);
  border-radius: var(--radius-large);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-form a { color: #3f299f; }
.panel-form a:hover { color: var(--ink); }
.panel-form .quiet { color: var(--muted); }

.form { padding: clamp(1.4rem, 4vw, 3rem); }

.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}

.field { min-width: 0; margin: 0 0 1.25rem; padding: 0; border: 0; }

.answer {
  min-height: 13.6rem;
  margin: 0;
  padding: 1.4rem;
  background: #fff;
}

fieldset.answer { min-inline-size: 0; }
fieldset.answer > legend { width: 100%; float: left; }
fieldset.answer > .title-rows { clear: both; }

label,
legend {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  padding: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.answer-number,
.feature-number {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  border: 1px solid var(--ink);
  border-radius: 0.6rem;
  background: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
}

.optional { color: var(--muted); font-weight: 600; }

input[type="text"],
input[type="email"],
select {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid #9a98a7;
  border-radius: var(--radius-small);
  background: #fbfaf6;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
}

input::placeholder { color: #8b8898; opacity: 1; }
input:focus-visible,
select:focus-visible { border-color: var(--violet); outline-color: rgba(118,87,255,.45); }

.hint {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.error {
  margin: 0.45rem 0 0;
  color: var(--error);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
}

.field-invalid input,
.field-invalid select { border-color: var(--error); }

.title-rows { display: grid; gap: 0.6rem; margin-bottom: 0.65rem; }
.title-row { display: flex; gap: 0.45rem; }
.title-row input { min-width: 0; flex: 1 1 auto; }

.text-button {
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #412ca6;
  font-weight: 900;
  cursor: pointer;
}

.text-button:hover { color: var(--ink); }
.text-button[hidden] { display: none; }

.remove-title {
  flex: 0 0 auto;
  min-width: 2.75rem;
  padding: 0.5rem;
  border: 1px solid var(--ink);
  border-radius: 0.65rem;
  background: var(--paper);
  font-size: 0.72rem;
  text-decoration: none;
}

.more {
  margin: 1.35rem 0;
  border-block: 1px solid var(--line);
}

summary {
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #412ca6;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

.more summary::after {
  content: "+";
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.more[open] summary::after { content: "−"; }

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.5rem 0 0.35rem;
}

.optional-grid .field { margin-bottom: 0.85rem; }

.price-card {
  display: grid;
  grid-template-columns: minmax(12rem, .72fr) minmax(18rem, 1.28fr);
  gap: 1.5rem;
  align-items: center;
  margin: 1.35rem 0 1.5rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--sky);
  box-shadow: 5px 5px 0 var(--ink);
}

.price-copy h3 { margin-bottom: .45rem; font-size: clamp(1.9rem, 4vw, 3rem); }
.price-copy p:last-child { margin-bottom: 0; }
.old-price {
  margin-right: .6rem;
  color: var(--muted);
  font-size: .58em;
  text-decoration: line-through;
}
.offer-field { margin: 0; }
.offer-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .65rem; }
.offer-action {
  min-height: 48px;
  padding: .65rem 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-small);
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.offer-action:hover { background: var(--lime); }
.offer-status { min-height: 1.5em; margin: .25rem 0 0; color: var(--success); font-weight: 800; }

.consent {
  width: min(100%, 49rem);
  margin-bottom: 1.4rem;
}

.purchase-consent {
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 23, 47, 0.28);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
  cursor: pointer;
}

.checkbox input {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  margin: 0.08rem 0 0;
  accent-color: var(--violet);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-action {
  min-height: 3.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.35rem;
  border: 2px solid var(--ink);
  border-radius: 0.85rem;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 950;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.primary-action:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.primary-action:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.primary-action[disabled] { opacity: 0.62; cursor: progress; transform: none; }

.legal-note {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.status { margin: 1rem 0 0; font-weight: 850; }
.status-error { color: var(--error); }
.status-ok { color: var(--success); }

.honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  overflow: hidden;
}

.error-summary {
  margin-bottom: 1.35rem;
  padding: 1rem 1.15rem;
  border: 2px solid var(--error);
  border-radius: var(--radius-small);
  background: #fff0f1;
}

.error-summary h3 { margin-bottom: 0.45rem; color: var(--error); font-size: 1rem; letter-spacing: -0.01em; }
.error-summary ul { margin: 0; padding-left: 1.25rem; }
.error-summary li { margin-bottom: 0.25rem; font-size: 0.88rem; }
.error-summary a { color: var(--error); }

.accepted {
  min-height: 24rem;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  background: #f2ffcf;
  color: var(--ink);
  text-align: center;
}

.accepted[hidden] { display: none; }
.accepted h3 { margin: 0.4rem 0 1rem; font-size: clamp(2.3rem, 5vw, 4.4rem); }
.accepted p { max-width: 36rem; margin: 0 auto; }
.accepted .spam-reminder { margin-top: 1rem; font-weight: 850; }

.accepted-mark {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 2px solid var(--ink);
  border-radius: 1.15rem;
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 2rem;
  font-weight: 950;
}

.confirming-mark { animation: spin 1.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.preference {
  margin-top: 1.2rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ece8ff;
  color: var(--ink);
}

.preference h3 { margin-bottom: 0.75rem; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.preference > p:not(.step-label) { max-width: 42rem; color: #555469; }
.preference-field { margin-top: 1.5rem; }

.choice { margin-bottom: 0.55rem; }
.choice .checkbox {
  min-height: 3.2rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid #aba4ce;
  border-radius: 0.75rem;
  background: rgba(255,255,255,.75);
}
.choice .checkbox:hover { border-color: var(--violet); }

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.preference-thanks { min-height: 12rem; }

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.6rem 0 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.promise-item {
  min-height: 6.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
}

.promise-item + .promise-item { border-left: 1px solid var(--ink); }
.promise-icon { width: 2.8rem; height: 2.8rem; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 0.8rem; background: var(--sky); font-weight: 950; }
.promise-item:nth-child(2) .promise-icon { background: var(--lime); }
.promise-item:nth-child(3) .promise-icon { background: var(--coral); }
.promise-item b,
.promise-item small { display: block; }
.promise-item b { font-weight: 950; }
.promise-item small { margin-top: 0.18rem; color: var(--muted); font-size: 0.78rem; }

/* Content */

.receive { padding-block: clamp(5rem, 10vw, 9rem); }
.section-heading { max-width: 50rem; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-heading h2 { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(14rem, auto));
  gap: 1rem;
}

.feature {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-large { grid-row: 1 / 3; min-height: 31rem; display: flex; flex-direction: column; }
.feature-lime { background: var(--lime); }
.feature-violet { background: var(--violet); color: #fff; }
.feature-number { margin-bottom: auto; }
.feature .feature-number { align-self: flex-start; }
.feature h3 { margin: 1.5rem 0 0.75rem; font-size: clamp(1.5rem, 3vw, 2.7rem); }
.feature p { max-width: 32rem; margin-bottom: 0; color: var(--muted); }
.feature-violet p { color: rgba(255,255,255,.76); }
.feature-violet .feature-number { background: var(--lime); color: var(--ink); }

.mini-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: 0.85rem;
  background: var(--sky);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.zero { display: flex; align-items: end; gap: 0.5rem; margin-top: 1.2rem; font-family: "Arial Black", sans-serif; font-size: 4rem; line-height: 0.8; }
.zero small { font-family: Inter, sans-serif; font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }

.trust { padding-block: clamp(5rem, 10vw, 8rem); background: var(--ink); color: #fff; }
.trust-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.trust .step-label { color: var(--lime); }
.trust h2 { margin: 0; }

.trust-list { display: grid; gap: 0.75rem; margin: 0; padding: 0; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1rem; border: 1px solid rgba(255,255,255,.17); border-radius: 0.8rem; background: rgba(255,255,255,.04); font-weight: 800; }
.trust-list span { width: 1.5rem; height: 1.5rem; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 0.75rem; }

.faq { padding-block: clamp(5rem, 10vw, 8rem); }
.faq-heading { margin-bottom: 2rem; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-item summary { min-height: 5rem; color: var(--ink); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.faq-item summary i { width: 2.3rem; height: 2.3rem; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); font-style: normal; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { max-width: var(--measure); margin: 0 0 1.6rem; color: var(--muted); }
.faq-item a { color: #412ca6; font-weight: 800; }

.footer { padding-block: 3rem; border-top: 2px solid var(--ink); background: var(--paper); }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; }
.footer-wordmark { margin-bottom: 0.9rem; }
.footer .small { max-width: 31rem; margin: 0; color: var(--muted); font-size: 0.82rem; }
.footer-links { display: flex; align-items: flex-start; gap: 1.5rem; font-size: 0.9rem; font-weight: 850; }

/* Privacy page */

.legal-page { background: var(--paper); }
.legal-topbar { padding-block: 1.2rem; border-bottom: 1px solid var(--line); }
.legal-topbar .wordmark { color: var(--ink); }
.legal-shell { width: min(100%, 64rem); margin-inline: auto; padding: clamp(3rem, 8vw, 7rem) clamp(1.1rem, 4vw, 2.5rem); }
.legal-hero { margin-bottom: 3rem; }
.legal-hero h1 { max-width: 52rem; margin-bottom: 1.25rem; font-size: clamp(3rem, 7vw, 6rem); }
.legal-hero > p:last-child { max-width: 44rem; color: var(--muted); font-size: 1.1rem; }
.legal-grid { display: grid; grid-template-columns: 15rem 1fr; gap: 3rem; align-items: start; }
.legal-nav { position: sticky; top: 1rem; display: grid; gap: 0.4rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-small); background: rgba(255,255,255,.65); }
.legal-nav a { padding: 0.35rem 0.4rem; color: #412ca6; font-size: 0.85rem; font-weight: 800; }
.legal-content { min-width: 0; }
.legal-block { padding-block: 0.5rem 2rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.legal-block h2 { margin-bottom: 1rem; font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.05; }
.legal-block h3 { margin: 1.5rem 0 0.6rem; font-size: 1.05rem; letter-spacing: -0.02em; }
.legal-block p,
.legal-block li { color: #4f5060; }
.legal-block ul { padding-left: 1.2rem; }
.legal-block li { margin-bottom: 0.55rem; }
.legal-callout { padding: 1.1rem 1.2rem; border: 2px solid var(--ink); border-radius: var(--radius-small); background: var(--lime); color: var(--ink) !important; font-weight: 800; }
.legal-back { display: inline-flex; margin-top: 1rem; color: #412ca6; font-weight: 900; }

@media (max-width: 62rem) {
  .hero { min-height: auto; }
  .hero-wrap { min-height: 42rem; grid-template-columns: minmax(0, 1fr) minmax(18rem, .75fr); column-gap: 2rem; }
  .job-ticket { min-width: 13rem; }
  .ticket-one { left: 0; }
  .ticket-two { right: -1rem; }
  .ticket-three { left: 0; }
  .mail-window { width: 16rem; }
  .answer-grid { grid-template-columns: 1fr; }
  .answer { min-height: 0; }
  .answer + .answer { border-top: 1px solid var(--ink); }
}

@media (max-width: 48rem) {
  .hero-wrap { display: block; min-height: 0; padding-bottom: 8rem; }
  .topbar { min-height: 4.8rem; }
  .hero-copy { padding-top: 4rem; }
  .hero h1 { font-size: clamp(3.4rem, 15vw, 5.4rem); }
  .job-orbit { display: none; }
  .orbit-one, .orbit-two { right: -14rem; }
  .signup-wrap { margin-top: -4.8rem; }
  .signup-intro { padding-inline: 1.2rem; }
  .promise-strip { grid-template-columns: 1fr; }
  .promise-item + .promise-item { border-left: 0; border-top: 1px solid var(--ink); }
  .optional-grid { grid-template-columns: 1fr; }
  .submit-row { align-items: stretch; flex-direction: column; }
  .primary-action { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-large { grid-row: auto; min-height: 24rem; }
  .feature { min-height: 17rem; }
  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .legal-grid { grid-template-columns: 1fr; gap: 1rem; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card { grid-template-columns: 1fr; }
}

@media (max-width: 25rem) {
  body { font-size: 16px; }
  .wrap { padding-inline: 0.9rem; }
  .wordmark > span:last-child { font-size: 0.82rem; }
  .hero-copy { padding-top: 3rem; }
  .hero h1 { font-size: 3.25rem; }
  .lead { font-size: 1rem; }
  .form { padding: 1rem; }
  .answer { padding: 1.1rem; }
  .checkbox { font-size: 0.84rem; }
  .primary-action { font-size: 0.92rem; }
  .promise-item { padding-inline: 0.9rem; }
  .trust-list li { font-size: 0.88rem; }
  .footer-links { flex-direction: column; gap: 0.65rem; }
  .legal-nav { grid-template-columns: 1fr; }
  .offer-row { grid-template-columns: 1fr; }
  .offer-action { width: 100%; }
}

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