/* =================================================================
   Willian Santos AI — Liquid Glass v3
   Apple visionOS / iOS 17+ inspired frosted translucent system
   ================================================================= */

:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);

  /* Brand palette */
  --bg:           #0F0B1F;
  --bg-2:         #16102A;
  --ink:          #F5F3FF;
  --ink-muted:    #B7B0D0;
  --ink-dim:      #877FA0;
  --text:         var(--ink);
  --tertiary:     var(--c-cyan);
  --line-strong:  rgba(255,255,255,0.14);
  --shadow-pop:   var(--glass-shadow);

  /* Accents (used in gradients only) */
  --c-cyan:       #00D4F5;
  --c-purple:     #8B2DFF;
  --c-magenta:    #FF2D9E;

  /* Glass system */
  --glass-bg:     rgba(255,255,255,0.06);
  --glass-bg-hi:  rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.10);
  --glass-inset:  inset 0 1px 0 rgba(255,255,255,0.10);
  --glass-shadow: 0 24px 60px -24px rgba(0,0,0,0.55),
                  0 8px 24px -12px rgba(0,0,0,0.4);
  --glass-blur:   blur(40px) saturate(180%);

  /* Gradient strokes / fills */
  --grad-primary: linear-gradient(120deg, #00D4F5 0%, #8B2DFF 50%, #FF2D9E 100%);
  --grad-primary-soft: linear-gradient(120deg,
                        rgba(0,212,245,.18) 0%,
                        rgba(139,45,255,.18) 50%,
                        rgba(255,45,158,.18) 100%);

  /* Radii */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Type */
  --f-display: 'DM Sans', system-ui, -apple-system, Inter, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
}

/* -----------------------------------------------------------------
   Base
   ----------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

::selection { background: rgba(139,45,255,.45); color: #fff; }

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

/* -----------------------------------------------------------------
   Ambient background (soft, subtle)
   ----------------------------------------------------------------- */
.bg-shell {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at -10% -10%, rgba(139,45,255,0.22), transparent 60%),
    radial-gradient(1100px 800px at 110% 110%, rgba(255,45,158,0.18), transparent 60%),
    var(--bg);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  mix-blend-mode: screen;
  pointer-events: none;
}
.blob-a {
  top: -200px; left: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(139,45,255,.55) 0%, rgba(139,45,255,0) 70%);
  animation: drift 22s ease-in-out infinite alternate;
}
.blob-b {
  bottom: -220px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,45,158,.45) 0%, rgba(255,45,158,0) 70%);
  animation: drift 28s ease-in-out -8s infinite alternate;
}
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: .05;
  mix-blend-mode: overlay;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(60px,40px,0) scale(1.08); }
}

/* -----------------------------------------------------------------
   Containers
   ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }

/* -----------------------------------------------------------------
   Type scale
   ----------------------------------------------------------------- */
.display {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 28px;
}
.muted { color: var(--ink-muted); }
.micro { font-size: 12px; color: var(--ink-dim); }
.flow-note {
  margin: 14px 0 0;
  color: var(--ink-dim);
  font-size: var(--text-xs);
  max-width: 48ch;
}

.grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------
   Glass primitive
   ----------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  overflow: hidden;
}
.card::before {
  /* subtle inner top highlight */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0) 30%);
}

/* -----------------------------------------------------------------
   Navigation — liquid glass pill, horizontally centered
   ----------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(960px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 12px 10px 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-pill);
  box-shadow:
    0 10px 30px -12px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform .25s ease, background .25s ease;
}
.nav.scrolled .nav-inner {
  background: rgba(15,11,31,0.55);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  justify-self: start;
}
.logo-mark { width: 26px; height: 26px; }
.logo-word { font-size: 15px; }

.nav-links {
  display: flex;
  gap: 4px;
  justify-self: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  justify-self: end;
}

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu {
  position: fixed;
  top: 76px; left: 16px; right: 16px;
  z-index: 70;
  pointer-events: auto;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: rgba(20,16,40,0.78);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--glass-shadow);
}
.mobile-menu a {
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--ink);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); }
.mobile-menu.open { display: flex; }
.mobile-menu[hidden] { display: none; }

/* -----------------------------------------------------------------
   Buttons — glass with gradient stroke
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  position: relative;
  isolation: isolate;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .25s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}
.btn-lg {
  padding: 16px 26px;
  font-size: 16px;
}

/* Primary: glass + gradient stroke + subtle inner glow */
.btn-primary {
  color: var(--ink);
  background: linear-gradient(180deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 12px 30px -10px rgba(139,45,255,0.55),
    0 6px 18px -8px rgba(255,45,158,0.45);
}
.btn-primary::before {
  /* gradient stroke */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.btn-primary::after {
  /* inner glow halo */
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.18), transparent 60%);
  opacity: .9;
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.16),
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 16px 36px -10px rgba(139,45,255,0.7),
    0 8px 22px -8px rgba(255,45,158,0.55);
  transform: translateY(-1px);
}

/* Ghost: pure glass, faint border */
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.btn-spinner {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  display: none;
  animation: spin .8s linear infinite;
}
.btn.is-loading .btn-label { opacity: .5; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* -----------------------------------------------------------------
   Sections
   ----------------------------------------------------------------- */
.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin: 0 auto clamp(36px, 5vw, 64px);
  max-width: 720px;
}

/* -----------------------------------------------------------------
   Reveal animation
   ----------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* -----------------------------------------------------------------
   HERO
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-orb-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.orb-halo {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(0,212,245,0.40), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255,45,158,0.40), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(139,45,255,0.35), transparent 70%);
  filter: blur(60px);
  opacity: .85;
  z-index: 0;
}
.hero-orb {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
  mix-blend-mode: screen;
  /* Radial mask: hard center, soft fade past 45% — kills the
     rectangular PNG background and leaves a clean glowing orb. */
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 38%, rgba(0,0,0,0.6) 46%, transparent 56%);
          mask: radial-gradient(circle at 50% 50%, #000 38%, rgba(0,0,0,0.6) 46%, transparent 56%);
  filter: drop-shadow(0 30px 60px rgba(139,45,255,0.45));
}
@keyframes float {
  0%,100% { transform: translate3d(0,0,0); }
  50%     { transform: translate3d(0,-14px,0); }
}

/* -----------------------------------------------------------------
   ABOUT — single glass card, minimal
   ----------------------------------------------------------------- */
.about-card {
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}
.about-card .h2 { margin: 6px 0 0; }

/* -----------------------------------------------------------------
   PLAYBOOK
   ----------------------------------------------------------------- */
.playbook-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.cover-wrap {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.cover-stage {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
}
.cover-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(139,45,255,.45), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.cover-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.5));
}
.cover-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}

.playbook-pitch {
  padding: clamp(28px, 4vw, 44px);
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 12px rgba(0,212,245,.7);
}
.dot-magenta { background: var(--c-magenta); box-shadow: 0 0 12px rgba(255,45,158,.7); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.check-list li {
  display: flex; gap: 10px;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.check-list strong { color: var(--ink); font-weight: 600; }
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}
.price {
  display: flex; align-items: baseline; gap: 10px;
}
.price-now {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-was {
  font-size: 18px;
  color: var(--ink-dim);
  text-decoration: line-through;
}
.price-note { font-size: 13px; color: var(--ink-muted); }

.pitch-cta {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start;
}

/* -----------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------- */
.footer {
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.footer-hero {
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}
.footer-mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.footer-cta {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-dim);
  padding: 0 8px;
}

/* -----------------------------------------------------------------
   Modals
   ----------------------------------------------------------------- */
.modal {
  border: 0;
  background: transparent;
  padding: 0;
  margin: auto;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  color: var(--ink);
}
.modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal::backdrop { background: transparent; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,7,22,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}
.modal-inner {
  position: relative;
  width: min(480px, calc(100% - 32px));
  padding: 36px 30px 30px;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--ink);
}
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lead-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.lead-form input,
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.lead-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-dim);
}
.lead-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(139,45,255,0.6);
  background: rgba(255,255,255,0.08);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-success {
  margin: 0;
  font-size: 14px;
  color: #66f2c4;
}

/* -----------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .flow-note { margin-left: auto; margin-right: auto; }
  .hero-orb-wrap {
    margin: 0 auto;
    max-width: 360px;
    order: -1;
  }
  .playbook-grid {
    grid-template-columns: 1fr;
  }
  .pitch-cta { align-items: stretch; }
}

@media (max-width: 760px) {
  .nav-inner {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 8px 8px 8px 14px;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero { padding-top: 120px; }
  .hero-cta .btn { width: 100%; }
  .footer-cta .btn { width: 100%; }
  .pitch-cta .btn { width: 100%; }
  .modal-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
