/* =========================================================
   Yellowfone — bold maximalist design system
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..900&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --yellow:    #FFD60A;
  --yellow-2:  #FFE94A;
  --cream:     #FFF8E1;
  --ink:       #0F0F0F;
  --ink-2:     #1F1B14;
  --coral:     #FF4F3A;
  --coral-2:   #FF7A5C;
  --teal:      #00B5A0;
  --pink:      #FFB5D8;
  --line:      #0F0F0F;

  --display: 'Bricolage Grotesque', -apple-system, sans-serif;
  --serif:   'Instrument Serif', Georgia, serif;
  --mono:    'JetBrains Mono', monospace;

  --shadow:    6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
}

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

body {
  font-family: var(--display);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: 'ss01';
  line-height: 1.5;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(15,15,15,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

::selection { background: var(--ink); color: var(--yellow); }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   NAV
   ========================================================= */
nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}
.top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--ink);
  border-radius: 50%;
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--yellow);
  font-size: 16px;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: 0;
  animation: ring 2.5s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.top-links { display: flex; gap: 4px; list-style: none; }
.top-links a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  transition: background 0.15s;
}
.top-links a:hover, .top-links a.active { background: var(--ink); color: var(--yellow); }

.top-cta { display: flex; align-items: center; gap: 12px; }
.top-cta .signin {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
}
.top-cta .signin:hover { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border: 3px solid var(--ink);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn-primary { background: var(--ink); color: var(--yellow); }
.btn-coral { background: var(--coral); color: var(--cream); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-lg { padding: 18px 28px; font-size: 18px; }

.btn-arrow::after {
  content: '→';
  font-weight: 700;
  transition: transform 0.15s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* =========================================================
   COMMON: tags, ribbons, headings
   ========================================================= */
section { padding: 100px 0; position: relative; z-index: 1; }
section.tight { padding: 60px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 100px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 28px;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-2deg);
  margin-bottom: 28px;
}
.ribbon-dot {
  width: 8px; height: 8px;
  background: var(--cream);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
h1 em, h2 em, h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  letter-spacing: -0.02em;
  display: inline-block;
}
h1 { font-size: clamp(56px, 9vw, 124px); }
h2 { font-size: clamp(40px, 6vw, 80px); }
h3 { font-size: clamp(24px, 3vw, 36px); }

p { font-size: 18px; line-height: 1.5; }
.lede { font-size: 22px; line-height: 1.45; max-width: 56ch; }

/* page-hero (sub-pages — smaller hero) */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(52px, 8vw, 104px);
  margin-bottom: 28px;
}
.page-hero h1 em { transform: rotate(-2deg); padding: 0 6px; }
.page-hero .lede { max-width: 60ch; }

/* big floating bg shapes */
.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.blob-1 { width: 400px; height: 400px; background: var(--pink); top: 10%; right: -120px; opacity: 0.55; filter: blur(2px); }
.blob-2 { width: 280px; height: 280px; background: var(--teal); bottom: -80px; left: -100px; opacity: 0.4; filter: blur(2px); }
.blob-3 { width: 320px; height: 320px; background: var(--yellow-2); top: -100px; left: 40%; opacity: 0.5; filter: blur(2px); }

/* =========================================================
   PHONE / TRANSCRIPT BUBBLES (used across pages)
   ========================================================= */
.phone-wrap { position: relative; perspective: 1200px; }
.phone {
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(2.5deg);
  transition: transform 0.3s;
}
.phone:hover { transform: rotate(0deg); }
.phone-screen {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
}
.phone-status {
  background: var(--yellow);
  padding: 14px 18px;
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-status .live { display: flex; align-items: center; gap: 8px; }
.live::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,79,58,0.3);
  animation: blink 1.2s infinite;
}
.phone-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 380px;
  background:
    linear-gradient(var(--cream), var(--cream)),
    radial-gradient(circle, rgba(15,15,15,0.08) 1px, transparent 1px);
  background-size: 100%, 14px 14px;
}
.bubble {
  max-width: 80%;
  padding: 11px 15px;
  font-size: 14px;
  line-height: 1.4;
  border: 2px solid var(--ink);
  animation: pop 0.5s cubic-bezier(.5,1.6,.4,1) backwards;
}
@keyframes pop {
  0% { opacity: 0; transform: translateY(10px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.bubble.agent {
  background: var(--yellow);
  align-self: flex-start;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 3px 3px 0 var(--ink);
}
.bubble.caller {
  background: var(--cream);
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 3px 3px 0 var(--ink);
}
.bubble .who {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  opacity: 0.6;
}
.bubble.tool {
  align-self: center;
  background: var(--coral);
  color: var(--cream);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}

.sticker {
  position: absolute;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 2;
}
.sticker-1 { top: -20px; left: -30px; background: var(--teal); color: var(--cream); transform: rotate(-8deg); }
.sticker-2 { bottom: 20px; right: -30px; background: var(--pink); transform: rotate(6deg); }

/* =========================================================
   CARD (generic bold card)
   ========================================================= */
.card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.card.yellow { background: var(--yellow); }
.card.teal { background: var(--teal); color: var(--cream); }
.card.pink { background: var(--pink); }
.card.coral { background: var(--coral); color: var(--cream); }

/* =========================================================
   PRODUCT — capability rows
   ========================================================= */
.cap-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 3px solid var(--ink);
}
.cap-row:last-child { border-bottom: none; }
.cap-row.flip { grid-template-columns: 1fr 1.1fr; }
.cap-row.flip .cap-text { order: 2; }

.cap-num {
  display: inline-block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.cap-row h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
}
.cap-row p { font-size: 18px; max-width: 50ch; margin-bottom: 16px; }

.cap-list {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cap-list li {
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  line-height: 1.45;
}
.cap-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px; height: 22px;
  background: var(--coral);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.cap-visual {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.cap-visual.yellow { background: var(--yellow); }
.cap-visual.pink { background: var(--pink); }
.cap-visual.teal { background: var(--teal); color: var(--cream); }

.rule-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 13px;
  margin-bottom: 12px;
  box-shadow: 3px 3px 0 var(--ink);
}
.rule-card .rule-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

/* =========================================================
   STEPS (how it works)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.step {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:nth-child(1) { background: var(--yellow); transform: rotate(-1deg); }
.step:nth-child(2) { background: var(--coral); color: var(--cream); transform: rotate(0.5deg); }
.step:nth-child(3) { background: var(--teal); color: var(--cream); transform: rotate(-0.5deg); }
.step:nth-child(4) { background: var(--pink); transform: rotate(1deg); }
.step:hover { transform: translate(-3px, -3px) rotate(0deg); box-shadow: 9px 9px 0 var(--ink); }

.step-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.step h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step p { font-size: 15px; line-height: 1.45; }
.step .tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.step:nth-child(2) .tag, .step:nth-child(3) .tag { background: var(--cream); color: var(--ink); }

/* arch flow */
.arch {
  margin-top: 40px;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.arch-node {
  padding: 20px 18px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 14px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 4px 4px 0 var(--coral);
}
.arch-node.brand {
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--coral);
  transform: scale(1.05);
}
.arch-arrow {
  font-family: var(--display);
  color: var(--yellow);
  font-size: 36px;
  font-weight: 800;
}

/* =========================================================
   PRICING TIERS
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tier {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.tier.featured {
  background: var(--yellow);
  transform: rotate(-1deg);
  box-shadow: var(--shadow-lg);
}
.tier.featured:hover { transform: rotate(0deg) translate(-3px, -3px); }

.tier-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  padding: 6px 14px;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 100px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-3deg);
}
.tier-name {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.tier-tag { font-size: 15px; margin-bottom: 28px; opacity: 0.8; }
.tier-price {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.tier-price em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.4em;
  margin-left: 6px;
  color: var(--coral);
}
.tier-period {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0.7;
}
.tier-list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.tier-list li {
  font-size: 15px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.tier-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  background: var(--coral);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}
.tier .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq {
  max-width: 820px;
  margin: 80px auto 0;
}
.faq-item {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.faq-item:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.faq-item.open { background: var(--yellow); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.faq-toggle {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s;
  color: var(--coral);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding-top 0.3s;
  font-size: 16px;
  line-height: 1.55;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-top: 14px;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  margin-top: 40px;
}
.contact-info h3 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.contact-info p { margin-bottom: 32px; max-width: 38ch; }
.contact-meta { list-style: none; }
.contact-meta li {
  padding: 18px 0;
  border-top: 2px solid var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.contact-meta li:last-child { border-bottom: 2px solid var(--ink); }
.contact-meta .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  opacity: 0.6;
}

.form {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.15s;
  box-shadow: 3px 3px 0 var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--yellow);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--display); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================================
   RESOURCES GRID
   ========================================================= */
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.res-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.res-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.res-card:nth-child(2n) { background: var(--yellow); }
.res-card:nth-child(3n) { background: var(--pink); }
.res-card:nth-child(5n) { background: var(--teal); color: var(--cream); }
.res-card .res-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.res-card.teal .res-tag { background: var(--cream); color: var(--ink); }
.res-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.15;
}
.res-card p { font-size: 15px; line-height: 1.5; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  z-index: 0;
}
.cta::before { background: var(--coral); top: -80px; left: -60px; opacity: 0.7; }
.cta::after { background: var(--yellow); bottom: -100px; right: -80px; opacity: 0.7; }
.cta-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta h2 {
  font-size: clamp(48px, 7vw, 100px);
  margin-bottom: 24px;
}
.cta h2 em {
  color: var(--yellow);
  transform: rotate(-2deg);
  padding: 0 6px;
}
.cta p { font-size: 22px; max-width: 50ch; margin: 0 auto 40px; opacity: 0.85; }
.cta-buttons { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cta .btn-primary {
  background: var(--yellow); color: var(--ink); border-color: var(--yellow);
  box-shadow: 4px 4px 0 var(--coral);
}
.cta .btn-primary:hover { box-shadow: 6px 6px 0 var(--coral); }
.cta .btn-ghost {
  background: transparent; color: var(--cream); border-color: var(--cream);
  box-shadow: 4px 4px 0 var(--coral);
}

/* =========================================================
   MARQUEE
   ========================================================= */
.stat-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 1;
}
.marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  align-items: center;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee span {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after {
  content: '★';
  color: var(--yellow);
  font-size: 22px;
}
.marquee em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  padding: 60px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-grid p { font-size: 14px; max-width: 30ch; margin-top: 12px; }
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-col a { font-size: 15px; font-weight: 500; }
.foot-col a:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.foot-bottom {
  border-top: 3px solid var(--ink);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}
.big-mark {
  font-family: var(--display);
  font-size: clamp(60px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin: 30px 0;
  color: var(--ink);
}
.big-mark em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* =========================================================
   HOME-SPECIFIC
   ========================================================= */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(56px, 9.5vw, 144px);
  margin-bottom: 32px;
}
.hero h1 em { transform: rotate(-2deg); padding: 0 6px; }
.hero h1 .underlined {
  background: var(--yellow);
  padding: 0 12px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  display: inline-block;
  transform: rotate(-1.2deg);
  margin: 4px 0;
}
.hero-lede {
  font-size: 22px;
  line-height: 1.4;
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-lede strong { font-weight: 700; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* problem section */
.problem {
  background: var(--coral);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem h2 em { color: var(--yellow); transform: rotate(-1.5deg); }
.problem p { font-size: 20px; max-width: 50ch; }

.stat-stack { display: flex; flex-direction: column; gap: 18px; }
.stat-card {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 6px 6px 0 var(--ink);
}
.stat-card:nth-child(1) { transform: rotate(-1deg); }
.stat-card:nth-child(2) { transform: rotate(1deg); margin-left: 30px; }
.stat-card:nth-child(3) { transform: rotate(-0.5deg); }
.stat-card .num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coral);
}
.stat-card .lbl { font-size: 15px; font-weight: 500; margin-top: 6px; }

/* features 3-col */
.features-head { max-width: 800px; margin-bottom: 60px; }
.features-head h2 { margin-bottom: 24px; }
.features-head h2 em { color: var(--coral); }
.features-head p { font-size: 20px; max-width: 50ch; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.feat-card.yellow { background: var(--yellow); }
.feat-card.teal { background: var(--teal); color: var(--cream); }
.feat-card.pink { background: var(--pink); }
.feat-num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.feat-num em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.feat-card.teal .feat-num em { color: var(--cream); opacity: 0.8; }
.feat-card h3 { font-size: 28px; font-weight: 700; line-height: 1.05; margin-bottom: 14px; }
.feat-card p { font-size: 16px; line-height: 1.5; }

/* pull quote */
.pull-quote {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.pull-quote-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 140px;
  line-height: 0.6;
  color: var(--coral);
  margin-bottom: 12px;
}
.pull-quote blockquote {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.pull-quote blockquote em { color: var(--coral); font-family: var(--serif); font-style: italic; font-weight: 400; }
.pull-quote .by {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid { grid-template-columns: 1fr; }
  .cap-row, .cap-row.flip { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .cap-row.flip .cap-text { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .arch { grid-template-columns: 1fr; gap: 8px; }
  .arch-arrow { transform: rotate(90deg); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .res-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .top-links { display: none; }
  .top-cta .signin { display: none; }
  .stat-card:nth-child(2) { margin-left: 0; }
  .sticker-1, .sticker-2 { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .container { padding: 0 20px; }
}
