:root {
  --ink: #101110;
  --ink-soft: #1a1c1a;
  --paper: #f7f5f0;
  --white: #ffffff;
  --gold: #caa43e;
  --gold-dark: #a57e1f;
  --gold-pale: #eee1bd;
  --muted: #686b67;
  --line: #dedbd2;
  --success: #2e7d55;
  --error: #b42318;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand img {
  width: 205px;
  height: auto;
  filter: invert(1) grayscale(1) brightness(3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
input:focus-visible,
.text-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(202, 164, 62, 0.45);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 0.9rem;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-outline:hover {
  border-color: var(--gold);
  background: rgba(202, 164, 62, 0.12);
}

.button-primary {
  color: #17130a;
  background: linear-gradient(135deg, #dbbb62, var(--gold));
  box-shadow: 0 12px 30px rgba(202, 164, 62, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(202, 164, 62, 0.35);
}

.button-primary:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-full {
  width: 100%;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 156px 0 82px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 8, 7, 0.98) 0%, rgba(14, 15, 14, 0.98) 55%, rgba(25, 23, 17, 0.98) 100%),
    radial-gradient(circle at 20% 20%, #38301c, transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 164, 62, 0.6), transparent);
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(202, 164, 62, 0.12);
  border-radius: 50%;
}

.hero-glow-one {
  top: -280px;
  right: -190px;
  width: 680px;
  height: 680px;
}

.hero-glow-two {
  right: 310px;
  bottom: -410px;
  width: 680px;
  height: 680px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  gap: 80px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.kicker,
.step-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(202, 164, 62, 0.14);
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0 23px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 5.1vw, 5.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--gold-pale);
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: #d2d3d0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.event-strip {
  display: flex;
  gap: 26px;
  margin: 35px 0 29px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.event-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.event-item + .event-item {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.event-item svg {
  width: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-item span {
  display: grid;
  gap: 2px;
  color: #9fa19d;
  font-size: 0.81rem;
}

.event-item strong {
  color: var(--white);
  font-size: 0.95rem;
}

.hero-benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #d5d6d3;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-benefits span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.form-card {
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(202, 164, 62, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-visual {
  position: relative;
  height: 245px;
  overflow: hidden;
  color: var(--white);
  background: #d7d0c3;
}

.form-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 6, 0.38) 0%, rgba(6, 7, 6, 0.08) 38%, transparent 68%);
}

.form-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.form-visual-copy {
  position: absolute;
  z-index: 1;
  right: auto;
  bottom: 15px;
  left: 17px;
  max-width: 320px;
  padding: 13px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  background: rgba(12, 13, 12, 0.78);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
}

.form-visual-copy > span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-visual-copy h2 {
  margin: 6px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.form-visual-copy p {
  max-width: 260px;
  margin: 0;
  color: #eeefec;
  font-size: 0.74rem;
  line-height: 1.4;
}

.form-content {
  padding: 31px 39px 39px;
}

.form-heading h2,
.success-state h2 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.form-heading p,
.success-state p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.55;
}

.form-highlights {
  display: grid;
  gap: 8px;
  margin: -10px 0 22px;
  padding: 0;
  list-style: none;
  color: #4d504b;
  font-size: 0.86rem;
  line-height: 1.4;
}

.form-highlights li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.form-highlights li span {
  color: var(--success);
  font-weight: 800;
}

.registration-proof {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  margin: -6px 0 22px;
  border: 1px solid rgba(184, 128, 38, 0.32);
  border-radius: 12px;
  background: #fff8e9;
  overflow: hidden;
}

.registration-proof-count {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 13px 12px;
  border-right: 1px solid rgba(184, 128, 38, 0.22);
  text-align: center;
}

.registration-proof-count strong {
  color: #9f5d0d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  line-height: 1;
}

.registration-proof-count span {
  margin-top: 5px;
  color: #6a522a;
  font-size: 0.7rem;
  line-height: 1.25;
}

.registration-proof-urgency {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  color: #6a522a;
  font-size: 0.8rem;
  line-height: 1.4;
}

.registration-proof-urgency strong {
  display: block;
  margin-bottom: 2px;
  color: #493716;
  font-size: 0.88rem;
}

.availability-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: #d58422;
  box-shadow: 0 0 0 4px rgba(213, 132, 34, 0.14);
}

.capacity-meter {
  grid-column: 1 / -1;
  height: 6px;
  background: rgba(184, 128, 38, 0.13);
  overflow: hidden;
}

.capacity-meter span {
  display: block;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #d9a03a, #d2701c);
  transition: width 500ms ease;
}

.registration-proof.is-closed {
  border-color: rgba(151, 49, 36, 0.3);
  background: #fff1ef;
}

.registration-proof.is-closed .registration-proof-count strong,
.registration-proof.is-closed .registration-proof-urgency strong {
  color: #8f3025;
}

.registration-proof.is-closed .availability-dot,
.registration-proof.is-closed .capacity-meter span {
  background: #a43c2e;
}

@media (max-width: 420px) {
  .registration-proof {
    grid-template-columns: 1fr;
  }

  .registration-proof-count {
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: center;
    justify-items: start;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 128, 38, 0.22);
    text-align: left;
  }

  .registration-proof-count span {
    margin-top: 0;
  }
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 750;
}

.field label span {
  color: #8b8d89;
  font-weight: 500;
}

.field input {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  color: var(--ink);
  background: #faf9f6;
  border: 1px solid #d9d7d0;
  border-radius: 8px;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder {
  color: #a2a49f;
}

.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(202, 164, 62, 0.1);
  outline: 0;
}

.field input[aria-invalid="true"] {
  border-color: var(--error);
}

.field small {
  color: #868984;
  font-size: 0.72rem;
}

.field-error {
  min-height: 0;
  color: var(--error);
  font-size: 0.75rem;
}

.field-error:not(:empty) {
  min-height: 15px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 3px 0 5px;
  color: #6d706b;
  font-size: 0.77rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--gold-dark);
}

.text-button {
  padding: 0;
  color: var(--gold-dark);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.consent-error {
  display: block;
  margin-bottom: 12px;
}

.secure-note {
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  color: #858782;
  font-size: 0.72rem;
}

.secure-note svg {
  width: 15px;
  fill: none;
  stroke: var(--success);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.form-status.is-error {
  color: var(--error);
}

.success-state {
  padding: 34px 0 12px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 23px;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 11px rgba(46, 125, 85, 0.1);
  font-size: 2rem;
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 27px;
}

.trust-grid div {
  display: grid;
  gap: 3px;
  padding-inline: 35px;
  text-align: center;
}

.trust-grid div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 105px 0;
}

.section-light {
  background: var(--paper);
}

.section-heading {
  max-width: 630px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.explainer h2,
.final-cta h2 {
  margin: 15px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.topic-card {
  position: relative;
  min-height: 330px;
  padding: 30px 27px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.topic-card:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 164, 62, 0.6);
  box-shadow: 0 20px 45px rgba(20, 20, 15, 0.08);
}

.topic-number {
  position: absolute;
  top: 19px;
  right: 22px;
  color: #d1cec6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.topic-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 45px;
  place-items: center;
  color: var(--gold-dark);
  background: #f3ead1;
  border-radius: 50%;
}

.topic-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topic-card h3 {
  margin: 0 0 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  font-weight: 600;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.explainer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.explainer::before {
  content: "CL";
  position: absolute;
  right: -40px;
  bottom: -120px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26rem;
  line-height: 1;
}

.explainer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 100px;
  align-items: center;
}

.kicker-light {
  color: var(--gold);
}

.explainer-copy p {
  color: #c5c7c2;
  font-size: 1.04rem;
  line-height: 1.75;
}

.source-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 13px;
  color: var(--gold-pale);
  font-weight: 700;
  text-underline-offset: 5px;
}

.source-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-panel {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fact {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 27px 10px;
}

.fact + .fact {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.fact > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.fact p {
  margin: 7px 0 0;
  color: #aeb0ab;
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 100px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 35px;
}

.sticky-heading .button {
  margin-top: 28px;
}

.accordion details {
  border-top: 1px solid #d5d2c9;
}

.accordion details:last-child {
  border-bottom: 1px solid #d5d2c9;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  padding: 25px 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: var(--gold-dark);
}

.accordion summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 660px;
  margin: -5px 35px 25px 3px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  padding: 75px 0;
  overflow: hidden;
  color: var(--white);
  background: #25231e;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -180px;
  right: 12%;
  width: 430px;
  height: 430px;
  background: rgba(202, 164, 62, 0.09);
  border: 1px solid rgba(202, 164, 62, 0.22);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.final-cta h2 {
  max-width: 700px;
  margin-block: 10px;
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
}

.final-cta p {
  margin: 0;
  color: #bfc0bd;
}

.site-footer {
  padding: 38px 0;
  color: #b9bbb7;
  background: #0b0c0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 45px;
  align-items: center;
}

.footer-grid > img {
  width: 180px;
  filter: invert(1) grayscale(1) brightness(2.3);
}

.footer-legal p {
  margin: 3px 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-legal strong {
  color: #e8e8e5;
}

.footer-link {
  color: #d8c892;
}

.mobile-cta {
  display: none;
}

.privacy-dialog {
  width: min(calc(100% - 32px), 590px);
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.dialog-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.dialog-close {
  width: 39px;
  height: 39px;
  color: var(--muted);
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

.dialog-content {
  margin: 23px 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.privacy-placeholder {
  padding: 10px 12px;
  color: #7d641d;
  background: #faf3df;
  border-left: 3px solid var(--gold);
}

@media (max-width: 1020px) {
  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.4rem);
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explainer-grid,
  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .brand img {
    width: 175px;
  }

  .hero {
    padding: 130px 0 65px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .form-card {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .explainer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 170px 1fr;
  }

  .footer-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 75px;
  }

  .brand img {
    width: 150px;
  }

  .header-inner .button {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 112px;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .event-strip {
    display: grid;
    gap: 17px;
  }

  .event-item + .event-item {
    padding: 17px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .form-card {
    border-radius: 17px;
  }

  .form-visual {
    height: 215px;
  }

  .form-visual-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 12px 14px 13px;
  }

  .form-visual-copy h2 {
    font-size: 1.3rem;
  }

  .form-content {
    padding: 27px 21px;
  }

  .form-heading h2,
  .success-state h2 {
    font-size: 1.75rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 8px;
  }

  .trust-grid div {
    padding-block: 17px;
  }

  .trust-grid div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2,
  .explainer h2 {
    font-size: 2.45rem;
  }

  .topic-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .topic-card {
    min-height: 0;
  }

  .topic-icon {
    margin-bottom: 30px;
  }

  .explainer::before {
    font-size: 15rem;
  }

  .fact {
    padding-inline: 0;
  }

  .faq-grid {
    gap: 38px;
  }

  .accordion summary {
    padding-block: 21px;
    font-size: 1.13rem;
  }

  .final-cta {
    padding: 65px 0 90px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-link {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10, 11, 10, 0.93);
    border-top: 1px solid rgba(202, 164, 62, 0.33);
    backdrop-filter: blur(12px);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .mobile-cta.visible {
    transform: translateY(0);
  }

  .mobile-cta .button {
    min-height: 48px;
  }

  .privacy-dialog {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
