:root {
  --sigma: #a72c31;
  --sigma-deep: #721c24;
  --sigma-soft: #e9c7c9;
  --ink: #232124;
  --muted: #666166;
  --paper: #f7f4f1;
  --white: #fff;
  --line: #ddd5d1;
  --focus: #d8942f;
  --shadow: 0 28px 70px rgba(64, 27, 30, .15);
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(167, 44, 49, .08), transparent 29rem),
    var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

.page-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  width: min(1180px, calc(100% - 48px));
  min-height: 720px;
  margin: 38px auto 18px;
  overflow: hidden;
  border: 1px solid rgba(114, 28, 36, .12);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 720px;
  padding: 48px 58px 44px;
  overflow: hidden;
  background:
    linear-gradient(142deg, rgba(255, 255, 255, .98), rgba(248, 240, 240, .96)),
    var(--white);
}

.hero::after {
  content: "L";
  position: absolute;
  right: -14px;
  bottom: -148px;
  color: rgba(167, 44, 49, .045);
  font: 800 560px/1 "Manrope", sans-serif;
  letter-spacing: -.1em;
}

.brand-row,
.hero-copy,
.lead-line,
.trust-note { position: relative; z-index: 1; }

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

.brand-logo-crop {
  display: grid;
  place-items: center;
  width: 150px;
  height: 44px;
  overflow: hidden;
}

.brand-logo-crop.centered { margin-inline: auto; }

.brand-logo {
  display: block;
  width: 132px;
  height: 62px;
  object-fit: contain;
  transform: scale(2.3);
}

.event-label,
.step-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid var(--sigma-soft);
  border-radius: 999px;
  color: var(--sigma-deep);
  background: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: auto 0 0;
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sigma);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 800;
  line-height: .99;
}

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

.intro {
  max-width: 530px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.lead-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  width: 255px;
  height: 52px;
  margin: 34px 0;
  border-bottom: 1px solid var(--sigma-soft);
}

.lead-line span {
  position: relative;
  height: 1px;
  background: var(--sigma);
  transform-origin: left center;
}

.lead-line span:nth-child(1) { transform: rotate(-3deg); }
.lead-line span:nth-child(2) { transform: translateY(-10px) rotate(-10deg); }
.lead-line span:nth-child(3) { transform: translateY(-24px) rotate(-14deg); }
.lead-line span:nth-child(4) { transform: translateY(-42px) rotate(-18deg); }

.lead-line span::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sigma);
}

.trust-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  align-items: center;
  max-width: 510px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-note strong { color: var(--sigma-deep); font-size: 14px; }
.trust-note span { color: var(--muted); font-size: 13px; }

.form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 54px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(114, 28, 36, .98), rgba(77, 15, 22, .99)),
    var(--sigma-deep);
}

.form-heading { margin-bottom: 30px; }
.form-heading .step-badge { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.form-heading h2 { margin: 18px 0 10px; font-size: 38px; line-height: 1.05; }
.form-heading p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.55; }

.field { display: grid; gap: 9px; margin-bottom: 18px; }
.field span { font-size: 13px; font-weight: 700; }

.field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font: inherit;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.field input::placeholder { color: rgba(255,255,255,.44); }
.field input:focus { border-color: #f0b7b9; background: rgba(255,255,255,.12); box-shadow: 0 0 0 4px rgba(240,183,185,.13); }

.check-row {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  align-items: start;
  margin: 18px 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.45;
}

.check-row.optional { margin-top: -4px; }
.check-row input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: #f0b7b9; }
.check-row a { color: var(--white); text-underline-offset: 2px; }
.check-row small { color: rgba(255,255,255,.56); }

.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  color: var(--sigma-deep);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(25, 4, 7, .25);
  font: 800 15px/1 "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.primary-button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(25, 4, 7, .3); }
.primary-button:focus-visible, .text-link:focus-visible, input:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.primary-button:disabled { cursor: wait; opacity: .68; transform: none; }
.primary-button svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.security-note { margin: 16px 0 0; color: rgba(255,255,255,.54); font-size: 11px; text-align: center; }
.form-error { padding: 11px 13px; border: 1px solid rgba(255,220,220,.35); border-radius: 9px; color: #ffe8e8; background: rgba(255,255,255,.08); font-size: 13px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.closed-state { padding: 24px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.08); }
.closed-state strong { font-size: 20px; }
.closed-state p { color: rgba(255,255,255,.7); }

footer { position: relative; padding: 2px 24px 26px; color: #7e7477; font-size: 12px; text-align: center; }

.success-body,
.privacy-body { display: grid; place-items: center; padding: 28px; }

.success-card,
.privacy-card {
  position: relative;
  width: min(620px, 100%);
  padding: 54px;
  border: 1px solid rgba(114,28,36,.12);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-card { text-align: center; }
.success-card .brand-logo-crop { margin: 0 auto 30px; }
.success-mark { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 24px; border-radius: 50%; color: var(--white); background: var(--sigma); }
.success-mark svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.success-card h1, .privacy-card h1 { margin: 0 0 16px; font-size: clamp(34px, 7vw, 52px); line-height: 1.03; }
.success-card > p:not(.eyebrow) { max-width: 450px; margin: 0 auto; color: var(--muted); line-height: 1.65; }
.success-card .meet-button { color: var(--white); background: var(--sigma); margin: 32px 0 18px; }
.success-card small { color: var(--muted); }

.privacy-card .brand-logo-crop { margin-bottom: 34px; }
.privacy-card h1 { max-width: 520px; }
.privacy-card h2 { margin: 30px 0 8px; font-size: 20px; letter-spacing: -.02em; }
.privacy-card p { color: var(--muted); line-height: 1.72; }
.privacy-version { font-size: 12px; }
.text-link { display: inline-flex; margin-top: 18px; color: var(--sigma); font-weight: 700; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .page-shell { grid-template-columns: 1fr; width: min(680px, calc(100% - 28px)); margin-top: 14px; border-radius: 22px; }
  .hero { min-height: auto; padding: 34px 30px 36px; }
  .hero-copy { margin: 64px 0 0; padding: 0; }
  .hero h1 { font-size: clamp(43px, 12vw, 64px); }
  .lead-line { margin: 30px 0; }
  .form-panel { padding: 46px 30px 50px; }
}

@media (max-width: 480px) {
  .page-shell { width: 100%; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
  .hero { padding: 26px 22px 32px; }
  .brand-logo-crop { width: 118px; height: 35px; }
  .brand-logo { width: 108px; height: 54px; transform: scale(2.25); }
  .event-label { font-size: 10px; }
  .hero-copy { margin-top: 46px; }
  .hero h1 { font-size: 42px; }
  .intro { font-size: 16px; }
  .trust-note { grid-template-columns: 1fr; gap: 6px; }
  .form-panel { padding: 42px 22px 48px; }
  .form-heading h2 { font-size: 34px; }
  .success-body, .privacy-body { padding: 0; }
  .success-card, .privacy-card { min-height: 100vh; padding: 40px 24px; border: 0; border-radius: 0; }
}

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