/* ── Tokens ─────────────────────────────────────────── */

:root {
  --bg: #f6f1e8;
  --bg-cool: #efe7d8;
  --surface-1: #fffaf3;
  --surface-2: #f3eadf;
  --surface-3: #eadfce;
  --text: #1c1917;
  --text-2: #57534e;
  --text-3: #78716c;
  --border: rgba(28, 25, 23, 0.12);
  --border-subtle: rgba(28, 25, 23, 0.08);
  --accent: #ff6b3d;
  --accent-soft: rgba(255, 107, 61, 0.12);
  --accent-glow: rgba(255, 107, 61, 0.14);
  --success: #16a34a;
  --max: 1280px;
  --max-prose: 65ch;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 500;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Header ─────────────────────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  background: rgba(246, 241, 232, 0.82);
  border-bottom: 1px solid var(--border-subtle);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-center {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-2);
}
.nav-center a {
  transition: color 200ms;
}
.nav-center a:hover {
  color: var(--text);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 200ms var(--ease),
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease),
    color 200ms;
  font-family: inherit;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
}
.btn-ghost:hover {
  color: var(--text);
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: #ff7a50;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 90, 54, 0.22);
}
.btn-quiet {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-quiet:hover {
  background: var(--surface-2);
  border-color: var(--text-3);
}
.btn-link {
  background: transparent;
  color: var(--text);
  padding: 0;
  height: auto;
  font-weight: 500;
  position: relative;
}
.btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--text);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 300ms var(--ease);
}
.btn-link:hover::after {
  transform-origin: left;
  transform: scaleX(0.6);
}
.btn-lg {
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  border-radius: 10px;
}

/* ── Section primitives ─────────────────────────────── */

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-eyebrow--quiet {
  color: var(--text-3);
}
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.section-lede {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: var(--max-prose);
}

/* ── Hero ───────────────────────────────────────────── */

.hero {
  padding: clamp(80px, 9vw, 128px) 0 clamp(72px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 640px;
  background: radial-gradient(
    ellipse,
    var(--accent-glow) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero-text {
  max-width: 540px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 4px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Hero flow diagram (Waiting → Table found → Booked) ─ */

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

.stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  isolation: isolate;
}

/* Diagram head — quiet eyebrow + supporting product label. */
.stack-head {
  position: relative;
  margin-bottom: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 246, 237, 0.82));
  box-shadow: 0 18px 40px rgba(28, 25, 23, 0.06);
  overflow: hidden;
}
.stack-head::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 107, 61, 0.28), rgba(28, 25, 23, 0.08));
}
.stack-head-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 61, 0.08);
  border: 1px solid rgba(255, 107, 61, 0.12);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b4532d;
  margin-bottom: 12px;
}
.stack-head-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 61, 0.12);
}
.stack-head-title {
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  max-width: none;
  white-space: nowrap;
}
.stack-head-sub {
  margin-top: 8px;
  max-width: none;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
}

.stack-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.stack-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 12px 28px rgba(28, 25, 23, 0.05);
  /* default dim — node not yet reached by the path */
  opacity: 0.42;
  filter: saturate(0.7);
  transition:
    opacity 600ms var(--ease),
    filter 600ms var(--ease),
    transform 600ms var(--ease),
    border-color 600ms var(--ease),
    box-shadow 600ms var(--ease);
}

/* Stage 0 — Waiting reads as the active origin state. */
.stack[data-stage="0"] .stack-card--waiting,
.stack[data-stage="1"] .stack-card--waiting,
.stack[data-stage="2"] .stack-card--waiting {
  opacity: 1;
  filter: none;
}

/* Stage 1 — path arrives at Table found. */
.stack[data-stage="1"] .stack-card--found,
.stack[data-stage="2"] .stack-card--found {
  opacity: 1;
  filter: none;
}

/* Stage 2 — Booked is the resolved final destination, strongest emphasis. */
.stack[data-stage="2"] .stack-card--booked {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
  border-color: rgba(255, 107, 61, 0.32);
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.06),
    0 26px 56px rgba(28, 25, 23, 0.16),
    0 0 0 1px rgba(255, 107, 61, 0.14);
}

/* Reset frame — soft drain before next cycle. */
.stack[data-stage="reset"] .stack-card {
  opacity: 0.3;
  filter: saturate(0.6);
  transition-duration: 400ms;
}

/* Connector path between nodes. */
.stack-link {
  position: relative;
  align-self: center;
  width: 2px;
  height: 36px;
  margin: 4px 0;
  background: var(--border);
  border-radius: 2px;
  overflow: visible;
}
.stack-link-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 700ms var(--ease);
}
.stack-link-tip {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  transform: translate(-50%, 0) rotate(45deg);
  transition: border-color 500ms var(--ease);
}

/* Stage 1 — fill the first connector (Waiting → Table found). */
.stack[data-stage="1"] .stack-link[data-stack-link="0"] .stack-link-fill,
.stack[data-stage="2"] .stack-link[data-stack-link="0"] .stack-link-fill {
  transform: scaleY(1);
}
.stack[data-stage="1"] .stack-link[data-stack-link="0"] .stack-link-tip,
.stack[data-stage="2"] .stack-link[data-stack-link="0"] .stack-link-tip {
  border-right-color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Stage 2 — fill the second connector (Table found → Booked). */
.stack[data-stage="2"] .stack-link[data-stack-link="1"] .stack-link-fill {
  transform: scaleY(1);
}
.stack[data-stage="2"] .stack-link[data-stack-link="1"] .stack-link-tip {
  border-right-color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Reset — drain the connectors before next cycle. */
.stack[data-stage="reset"] .stack-link-fill {
  transform: scaleY(0);
  transition-duration: 400ms;
}
.stack[data-stage="reset"] .stack-link-tip {
  border-right-color: var(--border);
  border-bottom-color: var(--border);
}

/* Card internals — node icon + label/microcopy body. */
.stack-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
  transition:
    background 600ms var(--ease),
    border-color 600ms var(--ease);
}
.stack-card--found .stack-card-icon {
  background: var(--accent-soft);
  border-color: rgba(255, 107, 61, 0.18);
}
.stack-card--booked .stack-card-icon {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.22);
}

.stack-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.stack-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.stack-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: stackPulse 1.8s var(--ease) infinite;
}
@keyframes stackPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2.4); opacity: 0; }
}

.stack-card-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.18);
}

.stack-card-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  flex-shrink: 0;
}

.stack-card-name {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}
.stack-card-line {
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.005em;
}

/* ── Proof strip ────────────────────────────────────── */

.proof {
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}
.proof-cell {
  text-align: left;
}
.proof-num {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.proof-num .accent {
  color: var(--accent);
}
.proof-num .unit {
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-2);
  margin-left: 4px;
}
.proof-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.proof-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.proof-grid--platforms {
  align-items: stretch;
}
.proof-grid--platforms .proof-cell {
  display: grid;
  align-content: stretch;
  padding: 0;
  min-height: 136px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(34, 26, 18, 0.06);
}
.proof-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 136px;
  padding: 24px 28px;
  border-radius: 0;
  border: 0;
}
.proof-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 54px;
  height: auto;
}
.proof-cell--opentable .proof-logo {
  background: #d9472d;
}
.proof-cell--opentable .proof-logo img {
  max-height: 64px;
  filter: brightness(0) invert(1);
}
.proof-cell--resy .proof-logo {
  background: #ffe7dd;
}
.proof-cell--resy .proof-logo img {
  max-height: 46px;
}
.proof-cell--yelp .proof-logo {
  background: #f5efe5;
}
.proof-cell--yelp .proof-logo img {
  max-height: 54px;
}

/* ── How (typographic timeline) ─────────────────────── */

.how {
  padding: clamp(96px, 11vw, 144px) 0;
}
.how-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(56px, 7vw, 88px);
  align-items: end;
}
.how-head .section-lede {
  margin-top: 6px;
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 42ch;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border) 8%,
    var(--border) 92%,
    transparent
  );
}
.timeline-step {
  position: relative;
  padding-top: 40px;
}
.timeline-num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  background: rgba(255, 107, 61, 0.08);
  border: 1px solid rgba(255, 107, 61, 0.16);
}
.timeline-step h3 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 12px;
  margin-top: 10px;
}
.timeline-step p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 36ch;
}

/* ── Conviction ─────────────────────────────────────── */

.conviction {
  padding: clamp(88px, 11vw, 144px) 0;
  background: var(--bg-cool);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.conviction-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.conviction-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 28px;
}
.conviction-eyebrow::before,
.conviction-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--border);
}
.conviction-headline {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 32px;
  color: var(--text);
}
.conviction-headline em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}
.conviction-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto;
}
.conviction-body em {
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}

/* ── CTA block ──────────────────────────────────────── */

.cta {
  padding: clamp(96px, 11vw, 144px) 0 clamp(112px, 12vw, 160px);
}
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner .section-eyebrow {
  margin-bottom: 16px;
}
.cta-headline {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-fineprint {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 22px;
}

/* ── Footer ─────────────────────────────────────────── */

footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-left {
  font-size: 14px;
  color: var(--text-3);
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-3);
}
.footer-links a {
  transition: color 200ms;
}
.footer-links a:hover {
  color: var(--text-2);
}

/* ── Reveal (no-JS safe: hidden only when JS marks <html>.js) ── */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 100ms; }
.reveal-d2 { transition-delay: 200ms; }
.reveal-d3 { transition-delay: 300ms; }

/* ── Form (Early Access) ────────────────────────────── */

.email-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  width: 100%;
}
.email-form input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms;
  min-width: 0;
}
.email-form input::placeholder {
  color: var(--text-3);
}
.email-form input:focus {
  border-color: rgba(255, 90, 54, 0.5);
}
.email-form input:disabled {
  opacity: 0.6;
}
.email-form .btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
}
.email-form .btn:disabled {
  cursor: default;
}
.form-success {
  font-size: 14px;
  color: var(--success);
  margin-top: 14px;
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.form-success.visible {
  opacity: 1;
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-sub {
    max-width: 100%;
  }
  .stack {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .nav-center {
    display: none;
  }
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .email-form {
    flex-direction: column;
  }
  .email-form .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .stack-pulse::after {
    animation: none !important;
  }
}
