/* ============================================================
   Never Miss A Call — style system
   Editorial, warm, feminine. Burgundy anchors, cream grounds,
   magenta accents. Handwritten Caveat for moments, Poppins for
   the rest. Nothing plastic, nothing pastel-washed.
   ============================================================ */

:root {
  --cream: #FAF6F2;
  --cream-2: #FDF0F3;
  --blush: #F8CBD5;
  --blush-2: #EBA7B4;
  --blush-deep: #E4899A;
  --magenta: #D6336C;
  --magenta-dk: #B02556;
  --burgundy: #6B2C43;
  --burgundy-dk: #4A1D2E;
  --burgundy-lt: #8B4B62;
  --ink: #1F1A1C;
  --ink-2: #3A2E33;
  --muted: #8A7A80;
  --line: #E8DDD8;
  --line-2: #D9C7C0;

  --shadow-sm: 0 1px 2px rgba(74, 29, 46, .06), 0 2px 8px rgba(74, 29, 46, .04);
  --shadow-md: 0 4px 12px rgba(74, 29, 46, .08), 0 12px 32px rgba(74, 29, 46, .06);
  --shadow-lg: 0 12px 32px rgba(74, 29, 46, .12), 0 24px 64px rgba(74, 29, 46, .08);
  --shadow-warm: 0 20px 60px rgba(214, 51, 108, .18);

  --ease: cubic-bezier(.19, 1, .22, 1);
  --ease-in: cubic-bezier(.4, 0, .68, .06);

  --wrap: 1180px;
  --wrap-tight: 940px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--magenta); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--magenta-dk); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: var(--wrap-tight); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.script {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
h1, h2, h3, h4 {
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 8vw, 88px); line-height: 1.02; }
h2 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; font-weight: 500; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 500; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lede { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.55; color: var(--ink-2); font-weight: 300; }
.eyebrow-script {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: 28px;
  color: var(--magenta);
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 8px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--cream);
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta);
  animation: pulse-dot 2.4s var(--ease) infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

.underline-ink {
  position: relative;
  display: inline-block;
}
.underline-ink svg {
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -12px;
  width: calc(100% + 8px);
  height: 18px;
  overflow: visible;
}
.underline-ink svg path {
  fill: none;
  stroke: var(--magenta);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.2s var(--ease) .3s;
}
.reveal.in .underline-ink svg path { stroke-dashoffset: 0; }

em { font-style: normal; color: var(--magenta); }

.hand {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  color: var(--burgundy);
}

/* ============================================================
   NAV
   ============================================================ */

nav.top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 242, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(232, 221, 216, .5);
}
.navin {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.logo {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(214, 51, 108, .18);
}
.navlinks {
  display: flex; align-items: center; gap: 34px;
}
.navlinks a {
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
}
.navlinks a:hover { color: var(--magenta); }
.navlinks a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--magenta); transform: scaleX(0);
  transform-origin: left; transition: transform .35s var(--ease);
}
.navlinks a:hover::after { transform: scaleX(1); }
.navtoggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
}
.navtoggle span {
  display: block; height: 2px; background: var(--burgundy); margin: 5px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  background: var(--burgundy);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .35s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: var(--magenta);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}
.btn.ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}
.btn.ghost:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.btn.sm { padding: 11px 20px; font-size: 14px; }
.btn.lg { padding: 18px 34px; font-size: 16px; }
.btn .arrow {
  width: 16px; height: 12px; overflow: visible;
}
.btn:hover .arrow { transform: translateX(4px); transition: transform .3s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 60px 0 120px;
  overflow: hidden;
}
.hero .wash-1, .hero .wash-2 {
  position: absolute; pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  z-index: 0;
}
.hero .wash-1 { background: var(--blush); width: 480px; height: 480px; top: -120px; right: -140px; }
.hero .wash-2 { background: var(--blush-2); width: 340px; height: 340px; bottom: -80px; left: -100px; opacity: .35; }

.herogrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.hero-copy .eyebrow-script { margin-bottom: 4px; }
.hero-title {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  color: var(--burgundy);
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 8px 0 20px;
  text-wrap: balance;
}
.hero-title span { color: var(--magenta); }
.hero-sub {
  font-size: clamp(19px, 1.7vw, 23px);
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.5;
  max-width: 34em;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-signals {
  display: flex; gap: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero-signals .sig strong {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 36px;
  color: var(--burgundy);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-signals .sig span {
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hero right — the phone */
.hero-visual {
  position: relative;
  height: 620px;
}
.phone-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.phone-cord {
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-30%);
  width: 4px; height: 240px;
}
.phone-cord svg { width: 60px; height: 260px; overflow: visible; }
.phone-cord path {
  fill: none; stroke: var(--magenta);
  stroke-width: 4; stroke-linecap: round;
}

/* Ruby's pulse — the answering indicator */
.ruby-pulse {
  position: absolute;
  bottom: 60px; left: 40px;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--cream);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.ruby-pulse .pulse-dot {
  position: relative;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--magenta);
}
.ruby-pulse .pulse-dot::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--magenta);
  animation: ruby-pulse 2.2s var(--ease) infinite;
}
@keyframes ruby-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.ruby-pulse .label {
  font-size: 13px;
  color: var(--burgundy);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.ruby-pulse .label strong { font-weight: 600; }

/* Incoming call card */
.call-card {
  position: absolute;
  top: 40px; right: -10px;
  z-index: 2;
  width: 290px;
  padding: 20px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}
.call-card .cc-head {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.call-card .cc-head i {
  width: 8px; height: 8px; border-radius: 50%; background: #E11;
  animation: pulse-dot 1.4s var(--ease) infinite;
}
.call-card .cc-num {
  font-family: 'Caveat', cursive;
  font-size: 30px; color: var(--burgundy); font-weight: 600;
  line-height: 1;
}
.call-card .cc-cap {
  font-size: 13px; color: var(--muted); margin: 6px 0 14px;
}
.call-card .cc-div {
  height: 1px; background: var(--line); margin-bottom: 12px;
}
.call-card .cc-ans {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-2);
}
.call-card .cc-ans .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--burgundy));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 12px; font-weight: 500;
}

/* SVG handset (legacy — kept for Meet Ruby fallback) */
.handset-svg {
  width: 260px; height: 500px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(214, 51, 108, .24));
}
/* SVG modern mobile */
.phone-svg {
  width: 300px; height: 580px;
  position: relative; z-index: 1;
  animation: phone-float 6s var(--ease) infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(-2deg); }
}

/* ============================================================
   SECTIONS — general
   ============================================================ */

section { position: relative; padding: 100px 0; }
section.tight { padding: 80px 0; }
section.blush { background: var(--cream-2); }
section.burgundy {
  background: var(--burgundy);
  color: var(--cream);
}
section.burgundy h2, section.burgundy h3 { color: var(--cream); }
section.burgundy p { color: rgba(250, 246, 242, .82); }
section.burgundy .eyebrow-script { color: var(--blush); }

.section-head { max-width: 780px; margin-bottom: 60px; }
.section-head .eyebrow-script { margin-bottom: 8px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 18px; line-height: 1.55; }

/* Coiled cord section divider */
.cord-divider {
  height: 80px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cord-divider svg { width: 100%; max-width: 800px; height: 60px; }
.cord-divider path {
  fill: none;
  stroke: var(--blush-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2s var(--ease);
}
.reveal.in .cord-divider path { stroke-dashoffset: 0; }

/* ============================================================
   THE MOMENT — vignette
   ============================================================ */

.moment {
  padding: 120px 0;
  background: var(--cream-2);
  position: relative;
}
.moment .wrap-tight { text-align: center; }
.moment .stamp {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--magenta);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 20px;
}
.moment .vignette {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.25;
  color: var(--burgundy);
  max-width: 22ch;
  margin: 0 auto 32px;
  text-wrap: balance;
}
.moment .vignette em { color: var(--magenta); font-style: normal; }
.moment .quiet {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  max-width: 44ch;
  margin: 0 auto;
}

/* ============================================================
   MEET RUBY
   ============================================================ */

.meet-ruby {
  padding: 140px 0;
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.meet-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--blush), var(--blush-2));
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.meet-visual .handset-svg { width: 60%; height: auto; }
.meet-visual .name-tag {
  position: absolute;
  bottom: 30px; left: 30px;
  padding: 12px 20px 14px;
  background: var(--cream);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.meet-visual .name-tag .n {
  font-family: 'Caveat', cursive;
  font-size: 34px; color: var(--burgundy); font-weight: 600; line-height: 1;
}
.meet-visual .name-tag .t {
  font-size: 12px; color: var(--muted); letter-spacing: 0.05em;
  text-transform: uppercase; margin-top: 4px;
}

.ruby-traits {
  display: grid; gap: 20px;
  margin-top: 30px;
}
.ruby-trait {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.ruby-trait .tk {
  font-family: 'Caveat', cursive;
  font-size: 32px; color: var(--magenta); font-weight: 600;
  line-height: 1; min-width: 36px;
}
.ruby-trait .tb h4 { margin: 0 0 4px; color: var(--burgundy); }
.ruby-trait .tb p { margin: 0; font-size: 14.5px; color: var(--ink-2); }

/* ============================================================
   WHAT SHE DOES
   ============================================================ */

.capabilities {
  padding: 120px 0;
  background: var(--cream-2);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cap {
  background: var(--cream);
  padding: 36px 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.cap::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--magenta);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.cap:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cap:hover::before { transform: scaleY(1); }
.cap .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.cap h3 { margin-bottom: 10px; font-size: 20px; }
.cap p { font-size: 15px; color: var(--ink-2); margin: 0; }

/* ============================================================
   HEAR RUBY — sample conversations
   ============================================================ */

.hear-ruby {
  padding: 140px 0;
}
.transcript-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.transcript {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.transcript:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.transcript .th {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.transcript .th .who {
  font-family: 'Caveat', cursive;
  font-size: 24px; color: var(--burgundy); font-weight: 600; line-height: 1;
}
.transcript .th .who span {
  display: block; font-family: 'Poppins'; font-size: 12px; font-weight: 300;
  color: var(--muted); letter-spacing: 0.03em; margin-top: 4px;
}
.transcript .play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--burgundy); color: var(--cream);
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  position: relative;
}
.transcript .play:hover { background: var(--magenta); transform: scale(1.06); }
.transcript .play.live {
  background: var(--magenta);
  box-shadow: 0 0 0 6px rgba(214, 51, 108, .18);
  animation: live-pulse 1.6s var(--ease) infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(214, 51, 108, .18); }
  50% { box-shadow: 0 0 0 12px rgba(214, 51, 108, .08); }
}
.transcript.calling .waveform {
  background: var(--cream);
  border-top: 1px solid var(--magenta);
}
.transcript.calling .waveform .bar {
  background: var(--magenta);
  animation-duration: 700ms !important;
}
.transcript .call-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px 18px;
  border-top: 1px solid var(--line);
}
.transcript .call-btn {
  flex: 1;
  padding: 12px 18px;
  background: var(--cream-2);
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.transcript .call-btn:hover { background: var(--burgundy); color: var(--cream); }
.transcript .call-btn.live {
  background: var(--magenta); color: var(--cream); border-color: var(--magenta);
}
.transcript .call-btn::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta);
}
.transcript .call-btn.live::before {
  background: var(--cream);
  animation: pulse-dot 1.2s var(--ease) infinite;
}
.transcript .status {
  font-size: 12.5px;
  color: var(--muted);
  padding: 0 24px 18px;
  margin: -8px 0 0;
  min-height: 18px;
  letter-spacing: 0.02em;
}
.transcript.calling .status { color: var(--magenta); }

/* Hero "Speak to Ruby" live state */
.btn.live {
  background: var(--magenta);
  animation: live-pulse 1.6s var(--ease) infinite;
}
.btn.live:hover { background: var(--magenta-dk); }
.hero-status {
  margin: -18px 0 26px;
  font-size: 13.5px;
  color: var(--muted);
  min-height: 20px;
  letter-spacing: 0.02em;
}
.hero-status.live { color: var(--magenta); }
.transcript .bubbles {
  padding: 20px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.bubble {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 85%;
  font-size: 14.5px;
  line-height: 1.4;
}
.bubble.caller {
  align-self: flex-start;
  background: var(--cream-2);
  color: var(--ink-2);
  border-bottom-left-radius: 4px;
}
.bubble.ruby {
  align-self: flex-end;
  background: var(--burgundy);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.transcript .waveform {
  display: flex; align-items: center; gap: 2px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  height: 44px;
  background: var(--cream-2);
}
.waveform .bar {
  width: 3px; background: var(--blush-2); border-radius: 2px;
  animation: wave 1.4s var(--ease) infinite;
}

@keyframes wave {
  0%, 100% { height: 6px; }
  50% { height: var(--h, 20px); }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */

.industries {
  padding: 140px 0;
  background: var(--burgundy);
  color: var(--cream);
}
.industries h2, .industries .eyebrow-script { color: var(--cream); }
.industries .eyebrow-script { color: var(--blush); }
.industries .section-head p { color: rgba(250, 246, 242, .82); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ind-card {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(139, 75, 98, .4), var(--burgundy-dk));
  border: 1px solid rgba(248, 203, 213, .12);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all .5s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ind-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(214, 51, 108, .3), transparent 60%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.ind-card:hover { transform: translateY(-6px); border-color: var(--blush); }
.ind-card:hover::after { opacity: 1; }
.ind-card .ind-name {
  font-family: 'Caveat', cursive;
  font-size: 34px; color: var(--cream); font-weight: 600; line-height: 1;
  position: relative; z-index: 1;
}
.ind-card .ind-line {
  font-size: 14px; color: rgba(250, 246, 242, .78); font-weight: 300;
  position: relative; z-index: 1;
}
.ind-card .ind-num {
  position: absolute; top: 20px; right: 22px;
  font-size: 12px; color: var(--blush); font-weight: 300;
  letter-spacing: 0.05em;
  z-index: 1;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how {
  padding: 140px 0;
}
.steps {
  display: grid;
  gap: 40px;
  position: relative;
  padding-left: 60px;
  border-left: 2px dashed var(--line-2);
  margin-left: 30px;
}
.step {
  position: relative;
  padding: 20px 0;
}
.step .num {
  position: absolute;
  left: -84px; top: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--magenta);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--magenta);
  font-weight: 600;
}
.step h3 { margin: 0 0 10px; font-size: 22px; }
.step p { margin: 0; max-width: 60ch; }
.step .chip {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: var(--cream-2);
  border: 1px dashed var(--line-2);
  border-radius: 8px;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 13px;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  padding: 140px 0;
  background: var(--cream-2);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.plan {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
  position: relative;
  transition: all .5s var(--ease);
}
.plan.featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm);
}
.plan.featured h3, .plan.featured .price-num { color: var(--cream); }
.plan.featured p { color: rgba(250, 246, 242, .82); }
.plan.featured .plan-inc li { color: rgba(250, 246, 242, .9); border-color: rgba(248, 203, 213, .18); }
.plan.featured .btn { background: var(--cream); color: var(--burgundy); }
.plan.featured .btn:hover { background: var(--magenta); color: var(--cream); }
.plan:hover:not(.featured) { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan .badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--magenta);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan h3 { margin-bottom: 6px; font-size: 22px; }
.plan .plan-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.plan .plan-sub-featured { color: rgba(250, 246, 242, .7) !important; }
.price-num {
  font-family: 'Caveat', cursive;
  font-size: 64px;
  color: var(--burgundy);
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.price-num small { font-family: 'Poppins'; font-size: 16px; font-weight: 300; color: var(--muted); }
.plan.featured .price-num small { color: rgba(250, 246, 242, .7); }
.price-setup { font-size: 13px; color: var(--muted); margin: 10px 0 24px; }
.plan.featured .price-setup { color: rgba(250, 246, 242, .7); }
.plan-inc { list-style: none; padding: 0; margin: 0 0 28px; }
.plan-inc li {
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 10px;
}
.plan-inc li:last-child { border-bottom: 0; }
.plan-inc .tick {
  color: var(--magenta); font-weight: 600; line-height: 1.4; flex-shrink: 0;
}
.plan.featured .plan-inc .tick { color: var(--blush); }

/* Bolt-ons as menu */
.boltons {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 40px 30px;
}
.boltons h3 {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1;
}
.boltons .bolt-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.bolt-list { list-style: none; padding: 0; margin: 0; }
.bolt-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.bolt-list li:last-child { border-bottom: 0; }
.bolt-list .bl-name {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--burgundy);
  font-weight: 500;
  line-height: 1.1;
}
.bolt-list .bl-name span {
  display: block; font-family: 'Poppins';
  font-size: 13px; font-weight: 300; color: var(--muted);
  letter-spacing: 0;
  margin-top: 2px;
}
.bolt-list .bl-setup, .bolt-list .bl-monthly {
  font-size: 14px; color: var(--ink-2); text-align: right;
  min-width: 90px;
}
.bolt-list .bl-setup strong, .bolt-list .bl-monthly strong {
  font-weight: 500; color: var(--burgundy);
}

/* Included grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.included-grid .inc {
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.included-grid .inc::before {
  content: "♥";
  color: var(--magenta);
  font-size: 14px;
}

.price-notes {
  margin-top: 30px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 3px solid var(--magenta);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.price-notes p { margin: 0 0 8px; }
.price-notes p:last-child { margin: 0; }

/* ============================================================
   SOFT CLOSE
   ============================================================ */

.soft-close {
  padding: 120px 0;
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.soft-close::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(214, 51, 108, .3), transparent 60%);
}
.soft-close .wrap-tight { position: relative; z-index: 1; }
.soft-close .eyebrow-script { color: var(--blush); }
.soft-close h2 {
  color: var(--cream);
  font-family: 'Caveat', cursive;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}
.soft-close p {
  color: rgba(250, 246, 242, .82);
  font-size: 18px;
  max-width: 44ch;
  margin: 0 auto 32px;
}
.soft-close .btn { background: var(--cream); color: var(--burgundy); }
.soft-close .btn:hover { background: var(--magenta); color: var(--cream); }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 140px 0;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  color: var(--burgundy);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--magenta); }
.faq summary .caret {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary .caret {
  background: var(--magenta); border-color: var(--magenta); color: var(--cream); transform: rotate(45deg);
}
.faq details p {
  margin: 16px 0 0;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 60ch;
}

/* ============================================================
   NOT RIGHT IF
   ============================================================ */

.honest {
  padding: 120px 0;
  background: var(--cream-2);
}
.honest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.honest-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex; gap: 16px;
  align-items: flex-start;
}
.honest-item .x {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blush);
  color: var(--burgundy); font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px;
  margin-top: 2px;
}
.honest-item h4 { margin: 0 0 6px; color: var(--burgundy); }
.honest-item p { margin: 0; font-size: 14.5px; color: var(--ink-2); }

/* ============================================================
   FOUNDER NOTE
   ============================================================ */

.founder {
  padding: 120px 0;
}
.founder .wrap-tight { text-align: center; }
.founder .quote {
  font-family: 'Caveat', cursive;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.3;
  margin: 0 0 24px;
  max-width: 26ch;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.founder .attrib {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   START — the form
   ============================================================ */

.start {
  padding: 140px 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.start::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--blush-2);
  filter: blur(80px);
  opacity: .5;
}
.start .wrap { position: relative; z-index: 1; }
.start-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.start-copy h2 {
  color: var(--burgundy);
  font-family: 'Caveat', cursive;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.start-copy p { color: var(--ink-2); font-size: 17px; max-width: 34ch; }
.start-form {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 12.5px;
  color: var(--burgundy);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream-2);
  font-family: 'Poppins';
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--magenta);
  background: var(--cream);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  font-size: 12.5px; color: var(--muted); margin: 4px 0 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--burgundy-dk);
  color: var(--cream);
  padding: 80px 0 30px;
}
footer .fgrid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(248, 203, 213, .12);
}
footer .flog {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  color: var(--cream);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
footer .flog .dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--magenta);
}
footer .fblurb {
  color: rgba(250, 246, 242, .7);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 32ch;
}
footer .fcol h5 {
  color: var(--blush);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
footer .fcol ul { list-style: none; padding: 0; margin: 0; }
footer .fcol li { margin-bottom: 10px; }
footer .fcol a {
  color: rgba(250, 246, 242, .8);
  font-size: 14.5px;
  transition: color .3s var(--ease);
}
footer .fcol a:hover { color: var(--blush); }
footer .fbottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(250, 246, 242, .55);
}

/* ============================================================
   REVEALS + MOTION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 51, 108, .12), transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity .4s var(--ease);
  mix-blend-mode: multiply;
}
@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .navlinks { display: none; }
  .navtoggle { display: block; }
  .navlinks.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .herogrid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 480px; }
  .meet-grid { grid-template-columns: 1fr; gap: 50px; }
  .cap-grid, .transcript-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .honest-grid { grid-template-columns: 1fr; }
  .start-grid { grid-template-columns: 1fr; gap: 40px; }
  footer .fgrid { grid-template-columns: 1fr 1fr; gap: 40px; }
  section { padding: 80px 0; }
  .hero { padding: 40px 0 80px; }
  .steps { padding-left: 40px; margin-left: 20px; }
  .step .num { left: -60px; }
  .call-card { right: 20px; width: 240px; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .bolt-list li { grid-template-columns: 1fr; gap: 4px; }
  .bolt-list .bl-setup, .bolt-list .bl-monthly { text-align: left; min-width: 0; font-size: 13px; }
}

@media (max-width: 560px) {
  .wrap, .wrap-tight { padding: 0 20px; }
  .navin { padding: 14px 20px; }
  .hero-signals { flex-wrap: wrap; gap: 24px; }
  .ind-grid { grid-template-columns: 1fr; }
  footer .fgrid { grid-template-columns: 1fr; gap: 32px; }
  .start-form { padding: 28px; }
  .included-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
