/* ===================================================================
   Winston — marketing site
   Ivory canvas, Dartmouth green structure, Fraunces voice, Inter UI.
   =================================================================== */

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

html { scroll-padding-top: 40px; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--w-ivory);
  color: var(--w-ink);
  font-family: var(--w-font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.serif { font-family: var(--w-font-serif); letter-spacing: -0.01em; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 26px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--w-green-900);
}
.brand .wordmark {
  font-family: var(--w-font-serif);
  font-weight: 620;
  font-size: 23px;
  letter-spacing: -0.01em;
}
.header-cta {
  font-size: 14px;
  font-weight: 550;
  color: var(--w-green-900);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--w-radius-button);
  border: 1px solid var(--w-line-strong);
  background: rgb(255 255 255 / 0.55);
  transition: background 0.15s ease;
}
.header-cta:hover { background: var(--w-panel); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 152px 0 96px;
  text-align: center;
  overflow: visible;
}
.hero-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgb(242 184 75 / 0.16), transparent 70%);
  pointer-events: none;
}
.hero .kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w-ink-muted);
  margin: 0 0 20px;
}
.hero h1 {
  font-family: var(--w-font-serif);
  font-weight: 570;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--w-green-900);
  margin: 0 auto 24px;
  max-width: 830px;
  text-wrap: balance;
}
.hero .sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--w-ink-soft);
  max-width: 590px;
  margin: 0 auto 14px;
}
.hero .sub .voice {
  font-family: var(--w-font-serif);
  font-style: italic;
  color: var(--w-green-900);
}
.hero-form-zone {
  position: relative;
  max-width: 460px;
  margin: 44px auto 0;
}
.trust-line {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--w-ink-muted);
}
.hero-form-zone .mascot-overlook {
  position: absolute;
  top: -50px;
  right: 22px;
  width: 94px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* ---------- Waitlist form ---------- */

.waitlist-form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--w-line);
  border-radius: var(--w-radius-card);
  box-shadow: var(--w-shadow-card);
  padding: 10px;
}
.waitlist-form input[type='email'] {
  flex: 1;
  min-width: 0;
  font-family: var(--w-font-sans);
  font-size: 15px;
  color: var(--w-ink);
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: var(--w-radius-input);
  background: transparent;
}
.waitlist-form input[type='email']::placeholder { color: var(--w-ink-muted); }
.waitlist-form input[type='email']:focus {
  border-color: var(--w-line-strong);
  outline: 2px solid var(--w-green-900);
  outline-offset: 1px;
}
.btn-primary {
  font-family: var(--w-font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--w-green-900);
  border: none;
  border-radius: var(--w-radius-button);
  padding: 11px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--w-green-700); }

.form-success {
  background: var(--w-mint);
  border-radius: var(--w-radius-card);
  padding: 22px 24px;
  text-align: center;
  color: var(--w-green-900);
}
.form-success .headline {
  font-family: var(--w-font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 6px;
}
.form-success p { margin: 0; font-size: 14px; }
.form-success .local-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--w-ink-muted);
}
.form-status {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--w-coral);
}

/* ---------- Section scaffolding ---------- */

section { padding: 104px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }
@media (max-width: 480px) { section { padding: 56px 0; } }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-family: var(--w-font-serif);
  font-weight: 580;
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--w-green-900);
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-head p {
  font-size: 16.5px;
  color: var(--w-ink-soft);
  margin: 0;
}

.horizon-rule {
  position: relative;
  height: 1px;
  background: var(--w-line);
  max-width: 1120px;
  margin: 0 auto;
}
.horizon-rule::before,
.horizon-rule::after {
  content: '';
  position: absolute;
  top: -1px;
  height: 3px;
  width: 26px;
  border-radius: 3px;
  background: var(--w-amber);
}
.horizon-rule::before { left: calc(50% - 40px); }
.horizon-rule::after { right: calc(50% - 40px); }

/* ===================================================================
   Product mockup vocabulary (mirrors the app's components)
   =================================================================== */

.w-card {
  background: #fff;
  border: 1px solid var(--w-line);
  border-radius: var(--w-radius-card);
  box-shadow: var(--w-shadow-card);
  padding: 16px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--w-font-serif);
  font-size: 16px;
  font-weight: 620;
  color: var(--w-green-900);
  margin: 0 0 2px;
}
.panel-title svg { flex: none; }
.panel-sub {
  font-size: 11.5px;
  color: var(--w-ink-muted);
  margin: 0 0 12px;
}

.w-event-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--w-line);
  border-radius: 10px;
  padding: 9px 10px 9px 14px;
}
.w-event-row + .w-event-row { margin-top: 8px; }
.w-event-row .rail {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
}
.rail--protected { background: var(--w-green-900); }
.rail--meeting { background: var(--w-amber); }
.rail--neutral { background: var(--w-line-strong); }
.w-event-row .body { flex: 1; min-width: 0; }
.w-event-row .time {
  font-size: 10.5px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
  color: var(--w-ink-muted);
}
.w-event-row .title {
  font-size: 13px;
  font-weight: 620;
  line-height: 1.3;
  color: var(--w-ink);
}
.w-event-row .subline {
  font-size: 11px;
  line-height: 1.35;
  color: var(--w-ink-muted);
}

.w-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: var(--w-radius-chip);
  padding: 2px 7px;
  font-size: 10.5px;
  font-weight: 560;
  line-height: 1.4;
}
.w-chip--mint { background: var(--w-mint); color: var(--w-green-900); }
.w-chip--stone { background: var(--w-stone); color: var(--w-ink-soft); }
.w-chip--panel { background: var(--w-panel); color: var(--w-ink-soft); }
.w-chip--amber { background: var(--w-amber); color: var(--w-ink); }

.w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--w-radius-button);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.w-btn--primary { background: var(--w-green-900); color: #fff; }
.w-btn--secondary {
  background: #fff;
  color: var(--w-ink-soft);
  font-weight: 500;
  border: 1px solid var(--w-line-strong);
}

/* ---------- Showcase stage ---------- */

.showcase {
  background:
    linear-gradient(rgb(241 234 219 / 0.55), rgb(241 234 219 / 0.55));
  border-top: 1px solid var(--w-line);
  border-bottom: 1px solid var(--w-line);
}
.stage-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 1180 / 1470;
}
.stage {
  position: absolute;
  top: 0; left: 0;
  width: 1180px;
  height: 1470px;
  transform-origin: top left;
}
.showcase-caption {
  text-align: center;
  font-family: var(--w-font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--w-ink-muted);
  margin: 36px 0 0;
}

/* mac window chrome */
.mac-window {
  background: var(--w-ivory);
  border: 1px solid var(--w-line-strong);
  border-radius: var(--w-radius-window);
  box-shadow: var(--w-shadow-float), 0 30px 80px rgb(12 74 59 / 0.14);
  overflow: hidden;
}
.mac-titlebar {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  background: rgb(255 255 255 / 0.65);
  border-bottom: 1px solid var(--w-line);
}
.mac-dots { display: flex; gap: 7px; }
.mac-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid var(--w-line-strong);
  background: var(--w-panel);
}
.mac-titlebar .win-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--w-ink-muted);
  /* offset the dots so the title truly centers */
  margin-right: 47px;
}

/* Command Center mockup */
.cc-window {
  position: absolute;
  top: 0;
  left: 0;
  width: 880px;
}
.cc-body { padding: 24px 28px 0; }
.cc-greeting {
  font-family: var(--w-font-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--w-green-900);
  margin: 0;
}
.cc-subline {
  font-size: 12.5px;
  color: var(--w-ink-muted);
  margin: 3px 0 18px;
}
.cc-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.cc-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 16px;
  align-items: start;
}
.cc-col { display: grid; gap: 16px; }

.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 2px;
}
.action-row + .action-row { border-top: 1px solid var(--w-line); }
.action-row .body { flex: 1; min-width: 0; }
.action-row .title { font-size: 12.5px; font-weight: 620; color: var(--w-ink); }
.action-row .detail { font-size: 11px; color: var(--w-ink-muted); }
.micro-label {
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w-ink-muted);
  margin: 14px 0 4px;
}

.waiting-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
}
.waiting-row + .waiting-row { border-top: 1px solid var(--w-line); }
.waiting-row .icon-chip {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgb(242 184 75 / 0.22);
  display: grid;
  place-items: center;
  color: #b07e1f;
}
.waiting-row .body { flex: 1; min-width: 0; }
.waiting-row .title { font-size: 12px; font-weight: 600; color: var(--w-ink); }

.approval-card {
  border: 1px solid var(--w-line);
  border-radius: 10px;
  padding: 12px;
}
.approval-card .question {
  font-family: var(--w-font-serif);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--w-ink);
  margin: 0 0 3px;
}
.approval-card .reason {
  font-size: 11.5px;
  color: var(--w-ink-muted);
  margin: 0 0 10px;
}
.approval-card .actions { display: flex; gap: 8px; align-items: center; }
.approval-footnote {
  font-size: 10.5px;
  color: var(--w-ink-muted);
  margin: 8px 0 0;
}

.focus-block {
  position: relative;
  overflow: hidden;
  background: var(--w-mint);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--w-green-900);
}
.focus-block .fb-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 650;
}
.focus-block .fb-time { font-size: 11.5px; font-weight: 550; margin-top: 1px; }
.focus-block .fb-for { font-size: 11px; margin-top: 5px; }
.focus-block .fb-for strong { font-weight: 650; }
.focus-block svg.mountains {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

/* day strip */
.day-strip { margin-top: 16px; }
.day-strip .axis {
  position: relative;
  height: 74px;
  margin-top: 26px;
}
.day-strip .hour {
  position: absolute;
  top: 0; bottom: 0;
  border-left: 1px solid var(--w-line);
}
.day-strip .hour em {
  position: absolute;
  top: -16px; left: 4px;
  font-style: normal;
  font-size: 9.5px;
  color: var(--w-ink-muted);
  white-space: nowrap;
}
.day-strip .block {
  position: absolute;
  top: 22px;
  height: 44px;
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 10px;
  line-height: 1.25;
  overflow: hidden;
}
.day-strip .block b { display: block; font-size: 10.5px; }
.block--protected { background: var(--w-green-900); color: #fff; }
.block--meeting { background: rgb(242 184 75 / 0.6); color: var(--w-ink); }
.block--neutral { background: var(--w-panel); color: var(--w-ink-soft); }
.day-strip .nowline {
  position: absolute;
  top: 16px; bottom: 0;
  width: 2px;
  background: var(--w-green-700);
  border-radius: 2px;
}

/* mascot banner (product recipe) */
.mascot-banner {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
  overflow: visible;
  border-radius: var(--w-radius-card);
  background: var(--w-green-900);
  padding-left: 26px;
  padding-right: 24px;
  margin: 18px 0 24px;
}
.mascot-banner .line {
  position: relative;
  z-index: 1;
  font-family: var(--w-font-serif);
  font-style: italic;
  font-size: 15.5px;
  color: var(--w-ivory);
}
.mascot-banner svg.banner-scene {
  position: absolute;
  inset: 0 0 0 auto;
  height: 100%;
  border-radius: 0 var(--w-radius-card) var(--w-radius-card) 0;
  opacity: 0.9;
  pointer-events: none;
}

/* Compact chat mockups — flanking the Command Center with slight overlap */
.compact-window { position: relative; width: 344px; }
.compact-window.side-left {
  position: absolute;
  right: 0;
  left: auto;
  top: 140px;
  z-index: 3;
}
.compact-window.side-right {
  position: absolute;
  right: 26px;
  top: 980px;
  z-index: 3;
}
.side-left .compact-card { transform: rotate(1.2deg); }
.side-right .compact-card { transform: rotate(-1.3deg); }

.brief-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  font-size: 12.5px;
}
.brief-row .n {
  flex: none;
  width: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 620;
  color: var(--w-green-900);
}
.brief-row .bt {
  flex: none;
  width: 34px;
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  font-weight: 550;
  color: var(--w-ink-muted);
}
.brief-row .t {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: var(--w-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brief-row .m {
  flex: none;
  font-size: 11px;
  color: var(--w-ink-muted);
}
.compact-card {
  position: relative;
  background: var(--w-ivory);
  border: 1px solid var(--w-line-strong);
  border-radius: var(--w-radius-window);
  box-shadow: var(--w-shadow-float), 0 24px 60px rgb(12 74 59 / 0.16);
  padding: 14px 14px 12px;
}
.compact-window .mascot-perch {
  position: absolute;
  top: -54px;
  right: 16px;
  width: 96px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.compact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.compact-head .name {
  font-family: var(--w-font-serif);
  font-size: 15px;
  font-weight: 640;
  color: var(--w-green-900);
}
.compact-head .controls {
  display: flex;
  gap: 10px;
  color: var(--w-ink-muted);
  font-size: 13px;
  line-height: 1;
}
.question-pill {
  margin-left: auto;
  max-width: 85%;
  width: fit-content;
  background: var(--w-pill-user);
  border-radius: var(--w-radius-button);
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--w-ink);
}
.compact-lead {
  font-family: var(--w-font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--w-green-900);
  margin: 12px 0 8px;
}
.answer-card {
  background: #fff;
  border: 1px solid var(--w-line);
  border-radius: var(--w-radius-card);
  padding: 12px;
}
.answer-card + .answer-card { margin-top: 8px; }
.answer-card .ac-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.answer-card .ac-title { font-size: 13.5px; font-weight: 650; color: var(--w-ink); }
.answer-card .ac-sub {
  font-size: 11.5px;
  color: var(--w-ink-muted);
  margin-top: 3px;
}
.answer-card .w-btn { width: 100%; margin-top: 10px; }
.answer-card--handled {
  background: var(--w-mint);
  border-color: transparent;
}
.answer-card--handled .ac-title,
.answer-card--handled .ac-sub { color: var(--w-green-900); }
.compact-input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.compact-input .field {
  flex: 1;
  background: #fff;
  border: 1px solid var(--w-line-strong);
  border-radius: var(--w-radius-input);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--w-ink-muted);
}
.compact-input .send {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--w-green-900);
  display: grid;
  place-items: center;
  color: #fff;
}

/* ---------- Integrations ---------- */

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.logo-tile {
  width: 96px;
  height: 96px;
  background: #fff;
  border: 1px solid var(--w-line);
  border-radius: var(--w-radius-card);
  box-shadow: var(--w-shadow-card);
  display: grid;
  place-items: center;
}
.logo-tile img { width: 44px; height: 44px; object-fit: contain; }
.logo-tile--soon { opacity: 0.45; box-shadow: none; }
.integrations-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 13px;
  color: var(--w-ink-muted);
}

/* ---------- Voice band ---------- */

.voice-band {
  position: relative;
  background: var(--w-green-900);
  padding: 0;
  margin-top: 40px;
}
.voice-band .inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
  overflow: visible;
}
.voice-band .mascot-lean {
  position: absolute;
  top: -62px;
  left: 8%;
  height: 104px;
  width: auto;
  pointer-events: none;
}
.voice-band blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--w-font-serif);
  font-style: italic;
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.35;
  color: var(--w-ivory);
  max-width: 560px;
}
.voice-band .attribution {
  margin: 10px 0 0;
  font-family: var(--w-font-sans);
  font-style: normal;
  font-size: 13px;
  color: rgb(251 247 241 / 0.65);
}
.voice-band svg.banner-scene {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%;
  max-width: 46%;
  opacity: 0.85;
  pointer-events: none;
}

/* ---------- Final CTA ---------- */

.final-cta { text-align: center; }
.final-cta .mark { margin: 0 auto 18px; width: 46px; }
.final-cta h2 {
  font-family: var(--w-font-serif);
  font-weight: 580;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--w-green-900);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.final-cta .sub {
  font-size: 16.5px;
  color: var(--w-ink-soft);
  max-width: 480px;
  margin: 0 auto 36px;
}
.final-cta .form-zone { max-width: 460px; margin: 0 auto; }

/* ---------- Footer ---------- */

.site-footer { position: relative; padding: 0 0 44px; }
.footer-rule-zone { position: relative; max-width: 1120px; margin: 0 auto; }
.footer-rule-zone .mascot-corner {
  position: absolute;
  right: 28%;
  top: -62px;
  width: 104px;
  pointer-events: none;
}
.site-footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
  font-size: 13px;
  color: var(--w-ink-muted);
}
.site-footer .brand .wordmark { font-size: 17px; }

/* ===================================================================
   Reveal animations (gated to no-preference + JS present)
   =================================================================== */

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .d-1 { transition-delay: 0.09s !important; }
  .d-2 { transition-delay: 0.18s !important; }
  .d-3 { transition-delay: 0.27s !important; }
  .d-4 { transition-delay: 0.36s !important; }
}

/* ===================================================================
   Responsive
   =================================================================== */

@media (max-width: 640px) {
  /* showcase: Command Center at natural flow width */
  .stage-wrap { aspect-ratio: auto; }
  .stage {
    position: static;
    width: 100%;
    height: auto;
    transform: none !important;
  }
  .cc-window {
    position: static;
    width: 100%;
  }
  .cc-grid { grid-template-columns: 1fr; }
  .day-strip { display: none; }
  .compact-window.side-left,
  .compact-window.side-right {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(344px, 100%);
    margin: 56px auto 0;
  }
  .voice-band .mascot-lean { height: 84px; top: -50px; }
  .footer-rule-zone .mascot-corner { width: 84px; top: -50px; right: 20px; }
}

@media (max-width: 480px) {
  .waitlist-form { flex-direction: column; padding: 12px; }
  .btn-primary { width: 100%; padding: 13px 20px; }
  .hero { padding-top: 128px; }
  .hero-form-zone .mascot-overlook { width: 80px; top: -37px; }
  .site-footer .inner { flex-direction: column; gap: 10px; }
}
