:root {
  --paper: #f7f8fc;
  --white: #ffffff;
  --ink: #172036;
  --ink-soft: #42516c;
  --muted: #647189;
  --line: rgba(23, 32, 54, 0.11);
  --line-strong: rgba(23, 32, 54, 0.2);
  --violet: #7c3aed;
  --violet-deep: #5b21b6;
  --night: #0d1222;
  --night-text: #f5f5f7;
  --night-muted: #b6bfd1;
  --sans: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Azeret Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --shadow: 0 18px 48px rgba(23, 32, 54, 0.08);
  --container: min(1120px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.nowrap {
  white-space: nowrap;
}

a {
  color: var(--violet-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--violet);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
}

h2 {
  margin-bottom: 38px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h3 {
  margin-bottom: 24px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cpath d='M52 0H0V52' fill='none' stroke='%23172036' stroke-opacity='.055' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 52px 52px;
}

.hero__inner {
  width: var(--container);
  margin-inline: auto;
  padding: 24px 0 42px;
}

.brand-logo {
  width: 152px;
  aspect-ratio: 304 / 166;
  object-fit: contain;
}

.hero .brand-logo {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    column-gap: clamp(44px, 6vw, 80px);
    align-items: start;
  }

  .hero__topbar {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-bottom: clamp(26px, 3vw, 40px);
  }

  .hero__meta {
    text-align: right;
    display: grid;
    gap: 4px;
  }

  .hero__intro {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    margin-bottom: 26px;
  }

  .hero .form-card {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 3;
    margin-top: 12px;
  }
}

.hero__eyebrow {
  margin-bottom: 0;
  color: var(--ink);
  display: inline-block;
  font-family: var(--mono);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--violet);
  text-transform: uppercase;
}

.hero__eyebrow-accent {
  color: var(--violet);
}

.hero h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(42px, 3.9vw, 56px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.hero__subline {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.52;
}

.hero__result {
  max-width: 610px;
  margin: 22px 0 0;
  border-left: 3px solid var(--violet);
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.45;
  padding-left: 16px;
}

.hero__control {
  max-width: 610px;
  margin: 14px 0 0;
  border-left: 3px solid var(--violet);
  color: var(--violet-deep);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.45;
  padding-left: 16px;
}

.kicker {
  margin-bottom: 0;
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__meta > .kicker .kicker__segment {
  white-space: nowrap;
}

.hero__list-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 800;
}

.hero__invite {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.form-card {
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.signup-form {
  display: grid;
  gap: 15px;
}

.form-card__head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.form-card__date {
  margin: 0;
}

.form-card__date {
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1.25;
}

.form-card__countdown-wrap {
  margin-top: 12px;
}

.form-card__countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.countdown__unit {
  display: grid;
  min-width: 0;
  gap: 2px;
  text-align: center;
}

.countdown__number {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.countdown__label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.form-card__countdown-live {
  margin: 0;
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.field input[aria-invalid="true"] {
  border-color: #b42318;
}

.field--checkbox {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 4px 6px;
}

.field--checkbox input {
  appearance: none;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Crect x='11.5' y='11.5' width='21' height='21' fill='%23fff' stroke='%23858c9c'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 44px 44px;
  cursor: pointer;
}

.field--checkbox input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Crect x='11' y='11' width='22' height='22' fill='%237c3aed'/%3E%3Crect x='17' y='17' width='10' height='10' fill='%23fff'/%3E%3C/svg%3E");
}

.field--checkbox label {
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.38;
}

.field--checkbox .field-error {
  grid-column: 2;
}

.field-error {
  margin: 0;
  color: #9b1c1c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

button,
.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--violet);
  border-radius: 0;
  background: var(--violet);
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
}

button:hover,
.button-link:hover {
  border-color: var(--violet-deep);
  background: var(--violet-deep);
  color: var(--white);
}

.button-link--ghost {
  background: transparent;
  color: var(--violet);
}

.button-link--ghost:hover {
  border-color: var(--violet-deep);
  background: transparent;
  color: var(--violet-deep);
}

.calendar-actions {
  display: grid;
  align-items: stretch;
  gap: 10px;
  margin: 22px 0;
}

.calendar-actions__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.thanks-card .calendar-actions__hint {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--violet);
  background: rgba(124, 58, 237, 0.07);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.calendar-actions__hint strong {
  color: var(--ink);
}

@media (min-width: 640px) {
  .calendar-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .calendar-actions__label {
    grid-column: 1 / -1;
  }

  .thanks-card .calendar-actions__hint {
    grid-column: 3;
  }
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-microcopy,
.form-privacy,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.form-status:not(:empty) {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
}

.trustbar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 30px 0;
}

.trustbar__layout {
  display: grid;
  grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.trustbar__photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
}

.trustbar__photo img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
}

.trustbar__person {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trustbar__item {
  border: 1px solid var(--line-strong);
  padding: 18px;
}

.trustbar__item p {
  margin: 0;
}

.trustbar__item .trustbar__title {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.trustbar__item p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: clamp(82px, 9vw, 130px) 0;
}

.section--paper {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.section--night {
  background: var(--night);
  color: var(--night-text);
}

.section--night .prose {
  color: var(--night-muted);
}

.section--night h2 {
  color: var(--night-text);
}

.border-list,
.outcome-list,
.plain-list,
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.border-list li {
  border-top: 1px solid var(--line-strong);
  padding: 22px 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.border-list li:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.outcome-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border-top: 1px solid var(--line-strong);
  padding: 22px 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.outcome-list li:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.outcome-list--hero li {
  gap: 14px;
  border-color: var(--line);
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.45;
}

.outcome-list--hero li:last-child {
  border-bottom-color: var(--line);
}

.outcome-list__check {
  width: 20px;
  height: 20px;
  margin-top: 0.25em;
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.text-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 8vw, 110px);
}

.text-grid h2 {
  margin-bottom: 0;
}

.prose {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 21px);
}

.prose p:last-child,
.host-copy p:last-child,
.thanks-card p:last-child {
  margin-bottom: 0;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.comparison__column {
  border: 1px solid var(--line-strong);
  background: #eef0f5;
  padding: clamp(24px, 3.5vw, 40px);
}

.comparison__column--after {
  border-left: 6px solid var(--violet);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison__column h3 {
  margin-bottom: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding-bottom: 16px;
}

.comparison__column--after h3 {
  color: var(--violet-deep);
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.comparison__column p {
  min-height: 7.8em;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding: 20px 0;
}

.comparison__column--after p {
  color: var(--ink);
}

.comparison__column p:last-child {
  min-height: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.process-list {
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line-strong);
  padding: 22px 0;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.45;
}

.process-list li::before {
  content: counter(process);
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
}

.process-list__content {
  min-width: 0;
}

.closing-line {
  margin: 34px 0 0;
  border-left: 5px solid var(--violet);
  background: var(--white);
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 700;
  padding: 22px 24px;
}

.closing-line--plain {
  margin-top: 24px;
  border-left: 0;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  padding: 0;
}

.section-lead {
  margin: -12px 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 110px);
}

.plain-list li {
  border-top: 1px solid var(--line-strong);
  padding: 18px 0;
}

.plain-list li:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.thanks-card .plain-list li:last-child {
  border-bottom: none;
}

.host-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.host-photo {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--white);
  aspect-ratio: 2 / 3;
}

.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-copy p {
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 23px);
}

.final-cta {
  border-top: 1px solid var(--line);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cpath d='M52 0H0V52' fill='none' stroke='%23172036' stroke-opacity='.055' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 52px 52px;
}

.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.final-cta__line {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(22px, 2.5vw, 31px);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  padding: 28px 24px;
  text-align: center;
}

.footer p {
  margin: 0;
}

.thanks-page {
  min-height: 100svh;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cpath d='M52 0H0V52' fill='none' stroke='%23172036' stroke-opacity='.055' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 52px 52px;
}

.thanks-main {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding: 28px 0 64px;
}

.thanks-main > .brand-logo {
  margin-bottom: 32px;
}

.thanks-card {
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 64px);
}

.thanks-card h1 {
  max-width: 11ch;
}

.thanks-card p {
  color: var(--ink-soft);
  font-size: clamp(18px, 2.4vw, 22px);
}

.thanks-card code {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.82em;
  overflow-wrap: anywhere;
}

.thanks-card .button-link {
  margin: 18px 0 58px;
}

.calendar-actions .button-link {
  margin: 0;
}

.thanks-card h2 {
  font-size: clamp(29px, 4.5vw, 42px);
}

.personal-note {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.personal-note__photo {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.personal-note__body h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.personal-note__body p {
  margin: 0;
}

@media (max-width: 1023px) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .hero__topbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero__meta {
    text-align: left;
  }

  .final-cta__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: 38px;
  }

  h1 {
    font-size: clamp(43px, 6vw, 60px);
  }

  .comparison__column p {
    min-height: 9.5em;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .trustbar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__inner {
    padding: 10px 0 14px;
  }

  .hero .brand-logo {
    width: 92px;
    margin-bottom: 0;
  }

  .hero .kicker {
    margin-bottom: 0;
  }

  .hero__eyebrow {
    margin-bottom: 0;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    margin-bottom: 7px;
    font-size: 42px;
  }

  .hero__subline {
    font-size: 13px;
    line-height: 1.3;
  }

  .hero .form-card {
    padding: 12px;
  }

  .hero .signup-form {
    gap: 6px;
  }

  .hero .form-card__head {
    padding-bottom: 6px;
  }

  .hero .form-card__date {
    font-size: 20px;
  }

  .hero .form-card__countdown {
    gap: 6px;
  }

  .hero .field {
    gap: 3px;
  }

  .hero .field input[type="text"],
  .hero .field input[type="email"] {
    min-height: 44px;
    padding: 8px 10px;
  }

  .hero .field label {
    font-size: 12px;
  }

  .hero .field--checkbox label {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .hero button {
    min-height: 44px;
  }

  .hero .form-microcopy,
  .hero .form-privacy {
    font-size: 9.5px;
    line-height: 1.25;
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  body {
    font-size: 17px;
  }

  .hero__inner {
    padding: 10px 0 14px;
  }

  .hero .brand-logo {
    width: 92px;
    margin-bottom: 0;
  }

  .text-grid,
  .comparison,
  .audience-grid,
  .host-grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .trustbar__layout,
  .trustbar__grid {
    grid-template-columns: 1fr;
  }

  .trustbar__photo {
    max-width: 240px;
  }

  .kicker {
    margin-bottom: 0;
    font-size: 9px;
    letter-spacing: 0.025em;
  }

  .hero__eyebrow {
    margin-bottom: 0;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    margin-bottom: 7px;
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1;
  }

  .hero__subline {
    font-size: 13px;
    line-height: 1.3;
  }

  .form-card {
    padding: 12px;
  }

  .signup-form {
    gap: 6px;
  }

  .form-card__head {
    padding-bottom: 6px;
  }

  .form-card__date {
    font-size: 20px;
  }

  .form-card__countdown {
    gap: 4px;
  }

  .countdown__number {
    font-size: clamp(24px, 7vw, 32px);
  }

  .field {
    gap: 3px;
  }

  .field input[type="text"],
  .field input[type="email"] {
    min-height: 44px;
    padding: 8px 10px;
  }

  .field label {
    font-size: 12px;
  }

  .field--checkbox label {
    font-size: 10.5px;
    line-height: 1.25;
  }

  button,
  .button-link {
    min-height: 44px;
  }

  .form-microcopy,
  .form-privacy {
    font-size: 9.5px;
    line-height: 1.25;
  }

  .trustbar {
    padding: 24px 0;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    margin-bottom: 28px;
  }

  .text-grid,
  .audience-grid,
  .host-grid,
  .final-cta__grid {
    gap: 34px;
  }

  .comparison__column p {
    min-height: 0;
  }

  .process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .host-photo {
    width: min(100%, 360px);
  }

  .final-cta .form-card {
    padding: 20px;
  }

  .thanks-main {
    padding-top: 16px;
  }

  .thanks-main > .brand-logo {
    width: 116px;
    margin-bottom: 14px;
  }

  .personal-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .personal-note__photo {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 360px) {
  :root {
    --container: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 33px;
  }

  .form-card {
    padding: 14px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: min(1200px, calc(100% - 80px));
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
