:root {
  color-scheme: light;
  --midnight: #01000a;
  --volt: #d5ef8a;
  --grove: #5e7a5e;
  --iris: #c4bfff;
  --grove-light: #e8ede8;
  --chalk: #fafaf7;
  --oat: #f3f3ee;
  --card-bg: #ffffff;
  --card-border: #e5e5e0;
  --dark-bg: #111110;
  --dark-card: #1a1a18;
  --text: var(--midnight);
  --text-muted: #6b6b6b;
  --text-light: #999999;
  --text-dark: #f0f0e8;
  --muted-dark: rgba(240, 240, 232, 0.52);
  --clay: #c07355;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --mono: "DM Mono", "SF Mono", Consolas, monospace;
  --max: 1180px;
  --shadow: 0 18px 60px rgba(1, 0, 10, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--chalk);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
}

a {
  color: inherit;
}

.site-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: lowercase;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.header-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero,
.flow-section,
.waitlist-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  padding: clamp(72px, 10vw, 124px) 0 clamp(72px, 9vw, 110px);
}

.page-vsl-top .hero {
  width: min(1280px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.06fr);
  gap: clamp(34px, 5vw, 72px);
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.hero__copy,
.hero-video-card,
.waitlist-copy,
.form {
  min-width: 0;
  max-width: 100%;
}

.hero__copy {
  max-width: 760px;
}

.hero__headline,
.hero__after-video {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--grove);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
a,
button,
label {
  overflow-wrap: anywhere;
  word-break: normal;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.9vw, 82px);
  line-height: 1.02;
}

.headline-line {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

h2 em {
  display: block;
  color: var(--grove);
  font-style: italic;
}

h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  line-height: 1.72;
}

.hero__lead,
.section-heading p,
.waitlist-copy p {
  color: var(--text-muted);
  font-size: 18px;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 32px;
}

.volt {
  padding: 0 4px;
  background: linear-gradient(
    180deg,
    transparent 62%,
    rgba(213, 239, 138, 0.85) 62%,
    rgba(213, 239, 138, 0.85) 92%,
    transparent 92%
  );
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-break {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0 28px;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
}

.button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.button--dark {
  background: var(--midnight);
  color: var(--chalk);
}

.button--outline {
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text);
}

.button--volt {
  width: 100%;
  background: var(--midnight);
  color: var(--chalk);
}

.button--volt:hover {
  box-shadow:
    0 4px 20px rgba(1, 0, 10, 0.14),
    0 0 30px rgba(1, 0, 10, 0.08);
}

.hero-video-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: var(--dark-bg);
  color: var(--text-dark);
  padding: 14px;
  box-shadow: var(--shadow);
}

.hero-video-frame {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: #0b0b0a;
  padding: 10px;
}

.hero-video-frame iframe,
.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
  background: #000000;
  object-fit: cover;
}

.page-vsl-top .hero-video-card--large {
  padding: 12px;
}

.page-vsl-top .hero-video-card--large .hero-video-frame {
  border-radius: 20px;
  padding: 12px;
}

.page-vsl-top .hero-video-card--large .video-placeholder {
  border-radius: 16px;
}

.handle {
  display: inline-flex;
  width: max-content;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: var(--oat);
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  text-transform: lowercase;
}

.video-placeholder {
  min-height: clamp(260px, 52vw, 640px);
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--dark-bg);
  background-size: 42px 42px;
  text-align: center;
}

.video-placeholder--hero {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.video-placeholder span {
  display: block;
  margin-bottom: 10px;
  color: var(--volt);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-placeholder strong {
  display: block;
  max-width: min(640px, calc(100vw - 84px));
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.video-placeholder--hero strong {
  max-width: 420px;
  font-size: clamp(32px, 3.8vw, 50px);
}

.flow-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.flow-section--tour {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(68px, 8vw, 98px) 0 clamp(70px, 8vw, 104px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--dark-bg);
  color: var(--text-dark);
}

.flow-section--tour .flow-heading,
.product-tour {
  width: min(var(--max), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.flow-section--tour .flow-heading {
  max-width: 840px;
  text-align: center;
}

.flow-section--tour .flow-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted-dark);
}

.flow-section--tour .eyebrow {
  color: var(--volt);
}

.flow-section--tour h2,
.flow-section--tour h3 {
  color: var(--text-dark);
}

.flow-section--tour .flow-heading h2 {
  font-size: clamp(46px, 5.5vw, 68px);
}

.flow-section--tour h2 em {
  color: rgba(240, 240, 232, 0.56);
}

.product-tour {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.product-tour--simple {
  margin-top: 8px;
}

.tour-step {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.tour-step--reverse .tour-visual {
  order: -1;
}

.tour-step__copy {
  min-width: 0;
}

.tour-step__copy h3 {
  margin: 16px 0 12px;
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.7vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.tour-step__copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.62;
}

.handle--dark {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(213, 239, 138, 0.12);
  color: var(--volt);
}

.tour-visual {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0b0b0a;
  background-size: 42px 42px;
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.mock-window,
.decision-panel,
.proof-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(26, 26, 24, 0.92);
  padding: 18px;
}

.mock-window__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-window__top strong,
.mock-label,
.proof-card > span {
  color: var(--volt);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.mock-card + .mock-card {
  margin-top: 12px;
}

.mock-card--active {
  border-left: 3px solid var(--clay);
}

.mock-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-card h4,
.decision-panel h4,
.proof-card h4 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 24px;
  line-height: 1.12;
}

.mock-card p,
.proof-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.decision-panel {
  position: relative;
  padding-top: 42px;
}

.decision-panel .status-dot {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 22px rgba(213, 239, 138, 0.45);
}

.decision-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 0 0;
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 14px;
}

.decision-line strong {
  color: var(--text-dark);
  font-weight: 600;
}

.proof-thumb {
  height: 150px;
  margin: 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(213, 239, 138, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(196, 191, 255, 0.18), transparent),
    rgba(255, 255, 255, 0.04);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - var(--max)) / 2));
  background: #ffffff;
  color: var(--text);
}

.waitlist-copy {
  max-width: 760px;
}

.waitlist-copy p {
  max-width: 680px;
  color: var(--text-muted);
}

.disclaimer {
  margin-top: 22px;
  border-left: 3px solid var(--clay);
  padding-left: 18px;
}

.form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--card-border);
  border-radius: 22px;
  background: var(--card-bg);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(1, 0, 10, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: var(--chalk);
  color: var(--text);
  font: inherit;
  padding: 0 13px;
  outline: none;
}

select option {
  background: var(--card-bg);
}

input:focus,
select:focus {
  border-color: var(--grove);
  box-shadow: 0 0 0 3px rgba(94, 122, 94, 0.12);
}

input::placeholder {
  color: var(--text-light);
}

.page-signature {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form .button {
  margin-top: 8px;
}

.page-group {
  min-height: 100vh;
  background: var(--dark-bg);
  color: var(--text-dark);
}

.page-group .eyebrow {
  color: var(--volt);
}

.brand--dark,
.group-header__link {
  color: var(--text-dark);
}

.group-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1280px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 0;
  transform: translateX(-50%);
}

.group-header__link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.group-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--dark-bg);
  background-size: 42px 42px;
}

.group-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(104px, 10vw, 148px) 0 clamp(52px, 7vw, 86px);
}

.whatsapp-conversion-page .group-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 0.9fr);
}

.group-hero__copy {
  max-width: 820px;
}

.group-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(62px, 8vw, 116px);
  line-height: 0.88;
}

.group-hero h1 em {
  display: block;
  color: var(--volt);
  font-style: italic;
}

.group-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.plow-brand-system {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 12px;
  max-width: 680px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(213, 239, 138, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.plow-brand-mark {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: rgba(1, 0, 10, 0.34);
  padding: 12px;
}

.plow-brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.plow-brand-mark div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.plow-brand-mark span,
.plow-token,
.plow-signal-rail span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plow-brand-mark span {
  color: var(--volt);
}

.plow-brand-mark strong {
  overflow: hidden;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plow-token-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.plow-token {
  display: flex;
  min-height: 66px;
  align-items: end;
  border-radius: 14px;
  color: var(--midnight);
  padding: 10px;
}

.plow-token--volt {
  background: var(--volt);
}

.plow-token--grove {
  background: var(--grove);
  color: var(--text-dark);
}

.plow-token--iris {
  background: var(--iris);
}

.plow-token--chalk {
  background: var(--chalk);
}

.group-actions {
  display: grid;
  grid-template-columns: minmax(280px, 430px);
  gap: 14px;
  margin-top: 34px;
}

.whatsapp-cta {
  display: grid;
  gap: 8px;
  min-height: 96px;
  align-content: center;
  justify-content: start;
  border-radius: 16px;
  background: #25d366;
  color: #06140b;
  padding: 18px 20px;
  text-decoration: none;
  box-shadow:
    0 18px 52px rgba(37, 211, 102, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.whatsapp-cta span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-cta strong {
  font-size: 19px;
  line-height: 1.18;
}

.whatsapp-cta[aria-disabled="true"] {
  cursor: not-allowed;
}

.group-note {
  margin: 0;
  border-left: 3px solid #25d366;
  color: var(--muted-dark);
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.whatsapp-sticky-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  max-width: 560px;
  margin-top: 18px;
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(37, 211, 102, 0.12), transparent),
    rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}

.whatsapp-sticky-cta span,
.whatsapp-lockup__top span,
.whatsapp-lockup__top p,
.whatsapp-phone-top span,
.whatsapp-bubble span,
.join-step span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-sticky-cta span {
  color: #25d366;
}

.whatsapp-sticky-cta strong {
  color: var(--text-dark);
  font-size: 15px;
}

.whatsapp-sticky-cta em {
  grid-column: 1 / -1;
  color: var(--muted-dark);
  font-size: 13px;
  font-style: normal;
}

.group-command-center {
  display: grid;
  gap: 18px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(26, 26, 24, 0.88);
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.group-join-console {
  gap: 14px;
}

.plow-os-window {
  position: relative;
}

.plow-os-window::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(213, 239, 138, 0.08);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.group-command-top,
.group-whatsapp-card__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.group-command-top {
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plow-window-title {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.plow-window-controls {
  display: inline-flex;
  gap: 5px;
}

.plow-window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--volt);
}

.plow-window-controls span:nth-child(2) {
  background: var(--iris);
}

.plow-window-controls span:nth-child(3) {
  background: var(--grove);
}

.group-command-top strong {
  color: var(--text-dark);
  font-weight: 500;
}

.whatsapp-lockup {
  display: grid;
  gap: 14px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.16), transparent 44%),
    var(--chalk);
  color: var(--text);
  padding: clamp(18px, 3vw, 24px);
}

.whatsapp-lockup__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.whatsapp-glyph {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: #25d366;
  color: #06140b;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-lockup__top div:not(.whatsapp-glyph) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.whatsapp-lockup__top span,
.whatsapp-lockup__top p {
  margin: 0;
  color: var(--text-light);
}

.whatsapp-lockup__top strong {
  overflow: hidden;
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-cta--primary {
  min-height: 104px;
  box-shadow:
    0 20px 60px rgba(37, 211, 102, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.whatsapp-cta--primary strong {
  font-size: 24px;
}

.whatsapp-avatar-stack {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.whatsapp-avatar-stack span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--chalk);
  border-radius: 50%;
  background: var(--dark-card);
  color: var(--text-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  margin-left: -8px;
}

.whatsapp-avatar-stack span:first-child {
  margin-left: 0;
  background: var(--volt);
  color: var(--midnight);
}

.whatsapp-avatar-stack span:nth-child(2) {
  background: var(--iris);
  color: var(--midnight);
}

.whatsapp-avatar-stack strong {
  margin-left: 12px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.3;
}

.whatsapp-preview-phone {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(232, 237, 232, 0.1), transparent),
    rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.whatsapp-phone-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  background: rgba(1, 0, 10, 0.34);
  padding: 12px;
}

.whatsapp-phone-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--volt);
  color: var(--midnight);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-phone-top div:not(.whatsapp-phone-avatar) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.whatsapp-phone-top strong {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.2;
}

.whatsapp-phone-top span {
  color: var(--muted-dark);
}

.whatsapp-chat {
  display: grid;
  gap: 10px;
}

.whatsapp-bubble {
  display: grid;
  gap: 5px;
  max-width: 86%;
  border-radius: 16px 16px 16px 4px;
  background: var(--chalk);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.4;
}

.whatsapp-bubble span {
  color: var(--grove);
}

.whatsapp-bubble--system {
  justify-self: center;
  border-radius: 999px;
  background: rgba(213, 239, 138, 0.12);
  color: var(--text-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.whatsapp-bubble--accent {
  justify-self: end;
  border-radius: 16px 16px 4px 16px;
  background: #25d366;
  color: #06140b;
}

.whatsapp-bubble--accent span {
  color: #06140b;
}

.join-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.join-step {
  display: grid;
  gap: 8px;
  min-height: 104px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.join-step span {
  color: var(--muted-dark);
}

.join-step strong {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.2;
}

.join-step--done {
  background: rgba(213, 239, 138, 0.1);
}

.join-step--active {
  border-color: rgba(37, 211, 102, 0.48);
  background: rgba(37, 211, 102, 0.12);
}

.join-step--active span {
  color: #25d366;
}

.group-whatsapp-card {
  display: grid;
  gap: 18px;
  border-radius: 20px;
  background: var(--chalk);
  color: var(--text);
  padding: clamp(20px, 3.5vw, 30px);
}

.group-whatsapp-card__status p {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-whatsapp-card h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}

.group-whatsapp-card > p {
  margin: 0;
  max-width: 420px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.group-message-stack {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.group-message {
  display: grid;
  gap: 5px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
}

.group-message--active {
  border-left: 4px solid var(--volt);
}

.group-message span,
.group-social-card span {
  color: var(--text-light);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-message strong,
.group-social-card strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
}

.group-mini-board {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 2px 18px 18px;
}

.plow-signal-rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 14px;
  align-items: center;
  border: 1px solid rgba(213, 239, 138, 0.2);
  border-left: 4px solid var(--volt);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(213, 239, 138, 0.12), transparent),
    rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}

.plow-signal-rail span {
  color: var(--volt);
}

.plow-signal-rail strong {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.2;
}

.plow-signal-rail p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.45;
}

.group-proof-grid,
.group-social-section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.group-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 clamp(52px, 7vw, 86px);
}

.group-proof-card {
  display: grid;
  gap: 16px;
  min-height: 260px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(18px, 2.5vw, 24px);
}

.group-proof-card .handle {
  width: fit-content;
}

.group-proof-card h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.group-proof-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.6;
}

.group-social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: clamp(42px, 6vw, 72px) 0 clamp(56px, 7vw, 86px);
}

.group-social-section h2 {
  max-width: 520px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.96;
}

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

.group-social-card {
  display: grid;
  gap: 10px;
  min-height: 142px;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-dark);
  padding: 18px;
  text-decoration: none;
}

.group-social-card span {
  color: var(--muted-dark);
}

.group-social-card strong {
  color: var(--text-dark);
}

@media (max-width: 940px) {
  .hero,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .page-vsl-top .hero {
    width: min(var(--max), calc(100% - 40px));
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .tour-step {
    grid-template-columns: 1fr;
  }

  .tour-step--reverse .tour-visual {
    order: initial;
  }

  .group-hero,
  .whatsapp-conversion-page .group-hero,
  .group-social-section {
    grid-template-columns: 1fr;
  }

  .group-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .group-proof-grid,
  .group-social-grid {
    grid-template-columns: 1fr;
  }

  .plow-brand-system {
    grid-template-columns: 1fr;
  }

  .join-path {
    grid-template-columns: 1fr;
  }

  .join-step {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .flow-section {
    width: calc(100% - 28px);
  }

  .flow-section--tour {
    width: 100%;
  }

  .page-vsl-top .hero {
    width: calc(100% - 28px);
  }

  .site-header {
    padding-top: 16px;
  }

  .group-header {
    width: calc(100% - 28px);
    padding-top: 16px;
  }

  .group-header__link {
    display: none;
  }

  .header-link {
    display: none;
  }

  .hero {
    gap: 14px;
    padding: 22px 0 36px;
  }

  .page-vsl-top .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 22px;
    padding: 28px 0 42px;
  }

  .page-vsl-top .hero__copy {
    display: contents;
  }

  .page-vsl-top .hero__headline {
    order: 1;
    display: grid;
    min-height: auto;
    align-content: center;
    padding: 10px 0 0;
    text-align: center;
  }

  .page-vsl-top .hero-video-card {
    order: 2;
  }

  .page-vsl-top .hero__after-video {
    order: 3;
    text-align: center;
  }

  .page-vsl-top .hero-video-card {
    margin-top: 0;
  }

  h1 {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(34px, 9.4vw, 38px);
    line-height: 0.98;
  }

  .headline-line {
    white-space: nowrap;
  }

  h2 {
    font-size: 36px;
    line-height: 1.06;
  }

  .flow-section--tour .flow-heading h2 {
    font-size: 38px;
  }

  h2 em {
    display: block;
  }

  .hero__lead,
  .waitlist-copy p {
    font-size: 14px;
    max-width: 100%;
  }

  .page-vsl-top .hero__lead {
    margin-top: 0;
    margin-bottom: 14px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.58;
  }

  .flow-section--tour {
    padding: 54px 0 64px;
  }

  .flow-section--tour .flow-heading,
  .product-tour {
    width: calc(100% - 28px);
  }

  .flow-section--tour .flow-heading {
    max-width: 330px;
    margin-bottom: 28px;
    text-align: center;
  }

  .flow-section--tour .flow-heading .eyebrow {
    margin-bottom: 16px;
  }

  .flow-section--tour .flow-heading h2 {
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: center;
  }

  .product-tour {
    gap: 34px;
  }

  .tour-step {
    gap: 18px;
    padding-top: 28px;
  }

  .tour-step__copy h3 {
    margin-top: 12px;
    font-size: 32px;
  }

  .tour-step__copy p {
    font-size: 15px;
  }

  .tour-visual {
    border-radius: 18px;
    padding: 12px;
  }

  .mock-window,
  .decision-panel,
  .proof-card {
    border-radius: 16px;
    padding: 14px;
  }

  .proof-thumb {
    height: 116px;
  }

  .video-placeholder strong {
    max-width: 260px;
    font-size: 32px;
    line-height: 1.08;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-break {
    display: block;
  }

  .hero-video-card,
  .form {
    border-radius: 18px;
  }

  .hero-video-card {
    padding: 10px;
  }

  .hero-video-frame {
    border-radius: 14px;
    padding: 8px;
  }

  .waitlist-section {
    padding: 56px 14px 64px;
  }

  .group-page {
    background-size: 34px 34px;
  }

  .group-hero,
  .group-proof-grid,
  .group-social-section {
    width: calc(100% - 28px);
  }

  .group-hero {
    gap: 30px;
    padding: 92px 0 46px;
  }

  .group-hero h1 {
    font-size: clamp(43px, 12vw, 56px);
    line-height: 0.92;
  }

  .group-hero__copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16px;
  }

  .group-actions {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .plow-brand-system {
    margin-top: 24px;
  }

  .plow-token-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plow-token {
    min-height: 54px;
  }

  .group-command-center,
  .group-whatsapp-card,
  .group-proof-card,
  .group-social-card {
    border-radius: 18px;
  }

  .group-command-center {
    padding: 12px;
  }

  .whatsapp-lockup,
  .whatsapp-preview-phone {
    border-radius: 18px;
  }

  .whatsapp-lockup__top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .whatsapp-lockup__top p {
    grid-column: 1 / -1;
  }

  .whatsapp-avatar-stack {
    align-items: flex-start;
  }

  .whatsapp-avatar-stack strong {
    max-width: 190px;
  }

  .group-whatsapp-card {
    padding: 18px;
  }

  .group-whatsapp-card h2,
  .group-social-section h2 {
    font-size: 38px;
  }

  .group-proof-grid {
    gap: 12px;
    padding-bottom: 48px;
  }

  .group-proof-card {
    min-height: auto;
  }

  .group-social-section {
    gap: 22px;
    padding: 42px 0 56px;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 31px;
  }

  .flow-section--tour .flow-heading h2 {
    font-size: 34px;
  }

  .group-hero h1 {
    font-size: 39px;
  }
}

.plow-terminal-stage {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 108px 20px 52px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(213, 239, 138, 0.13), transparent 28%),
    var(--dark-bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.plow-terminal-shell {
  width: min(980px, 100%);
}

.plow-terminal-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(10, 10, 9, 0.94);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.plow-terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 16px 18px;
  text-transform: uppercase;
}

.plow-terminal-bar strong {
  color: var(--volt);
  font-weight: 500;
}

.plow-terminal-body {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: clamp(24px, 5vw, 52px);
  text-align: center;
}

.plow-terminal-body h1 {
  max-width: 820px;
  margin: clamp(10px, 2vw, 18px) auto 0;
  color: var(--text-dark);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
}

.plow-terminal-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted-dark);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.62;
}

.plow-terminal-actions p,
.plow-terminal-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plow-terminal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  justify-items: center;
  margin-top: 8px;
  text-align: center;
}

.plow-terminal-whatsapp {
  width: min(100%, 420px);
  min-height: 78px;
  border-radius: 14px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  text-align: center;
}

.plow-terminal-whatsapp .whatsapp-cta-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.plow-terminal-whatsapp strong {
  font-size: clamp(15px, 4.6vw, 20px);
  white-space: nowrap;
}

.plow-terminal-actions p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(240, 240, 232, 0.44);
  line-height: 1.5;
}

.plow-terminal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 10px;
}

.plow-terminal-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dark);
  padding: 8px 13px 8px 9px;
  text-decoration: none;
}

.plow-terminal-links a:hover {
  border-color: rgba(213, 239, 138, 0.4);
  color: var(--volt);
}

.social-link-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background: rgba(213, 239, 138, 0.1);
}

.social-link-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-link-icon img {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 5px;
}

@media (max-width: 700px) {
  .plow-terminal-stage {
    align-items: start;
    padding: 88px 14px 32px;
  }

  .plow-terminal-window {
    border-radius: 18px;
  }

  .plow-terminal-bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .plow-terminal-body {
    gap: 14px;
    padding: 20px 16px 18px;
  }

  .plow-terminal-body h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .plow-terminal-actions {
    grid-template-columns: 1fr;
  }

  .plow-terminal-whatsapp {
    min-height: 82px;
  }

  .plow-terminal-links a {
    flex: 1 1 auto;
    text-align: center;
  }
}

.waitlist-section {
  align-items: center;
  border-top: 1px solid rgba(1, 0, 10, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34)),
    linear-gradient(135deg, rgba(213, 239, 138, 0.22), transparent 46%),
    var(--oat);
  color: var(--text);
}

.waitlist-copy .eyebrow {
  color: var(--grove);
}

.waitlist-copy h2 {
  color: var(--text);
}

.waitlist-copy h2 em {
  color: rgba(1, 0, 10, 0.48);
}

.waitlist-copy p {
  color: var(--text-muted);
}

.waitlist-terminal-form {
  overflow: hidden;
  gap: 0;
  width: min(100%, 560px);
  justify-self: end;
  border: 1px solid rgba(1, 0, 10, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(213, 239, 138, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 0;
  box-shadow:
    0 28px 90px rgba(1, 0, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.waitlist-terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(1, 0, 10, 0.08);
  background: rgba(1, 0, 10, 0.035);
  color: var(--text-light);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 15px 18px;
  text-transform: uppercase;
}

.waitlist-terminal-bar strong {
  color: var(--grove);
  font-weight: 500;
}

.waitlist-terminal-body {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.waitlist-terminal-command {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
}

.waitlist-terminal-command span {
  color: var(--grove);
}

.waitlist-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

.waitlist-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-field--wide {
  grid-column: auto;
}

.waitlist-field input,
.waitlist-field select {
  min-height: 52px;
  border-color: var(--card-border);
  border-radius: 12px;
  background: var(--chalk);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
}

.waitlist-field select option {
  background: var(--card-bg);
  color: var(--text);
}

.waitlist-field input:focus,
.waitlist-field select:focus {
  border-color: rgba(213, 239, 138, 0.72);
  box-shadow: 0 0 0 3px rgba(94, 122, 94, 0.12);
}

.waitlist-field input::placeholder {
  color: var(--text-light);
}

.phone-input {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  min-height: 52px;
  overflow: hidden;
  align-items: center;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--chalk);
}

.phone-country-select,
.phone-local-input {
  min-width: 0;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
}

.phone-country-select {
  width: 100%;
  border-right: 1px solid var(--card-border);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 0 8px;
}

.phone-local-input {
  width: 100%;
  padding: 0 14px;
}

.phone-input:focus-within {
  border-color: rgba(213, 239, 138, 0.72);
  box-shadow: 0 0 0 3px rgba(94, 122, 94, 0.12);
}

.phone-input .phone-country-select:focus,
.phone-input .phone-local-input:focus {
  outline: 0;
  box-shadow: none;
}

.button--terminal-submit {
  display: grid;
  gap: 7px;
  min-height: 78px;
  align-content: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--midnight);
  color: var(--chalk);
  padding: 16px 18px;
  text-align: center;
}

.button--terminal-submit span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button--terminal-submit strong {
  font-size: 20px;
  line-height: 1.1;
}

.form .button--terminal-submit {
  margin-top: 2px;
}

@media (max-width: 940px) {
  .waitlist-section {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .waitlist-section {
    width: 100%;
    justify-items: center;
    padding: 56px 14px 64px;
  }

  .waitlist-copy {
    max-width: 100%;
    justify-self: center;
    text-align: center;
  }

  .waitlist-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .waitlist-terminal-form {
    border-radius: 18px;
  }

  .waitlist-terminal-bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .waitlist-terminal-body {
    gap: 14px;
    padding: 16px;
  }

  .waitlist-form-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-field--wide {
    grid-column: auto;
  }

  .phone-input {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .phone-local-input {
    grid-column: auto;
    border-top: 0;
  }

}
