/* Velum marketing site — warm parchment, fig & clay (matches app theme) */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&display=swap');

:root {
  --bg: #f6f3ed;
  --bg-soft: #f0ebe3;
  --card: #ffffff;
  --card-hover: #fffdf9;
  --border: #e8e2d9;
  --ink: #2a2430;
  --text: #1c1917;
  --muted: #57534e;
  --muted-light: #a8a29e;
  --primary: #4a3d5c;
  --primary-light: #7d6b8a;
  --accent: #be6e3f;
  --accent-soft: #faf0e8;
  --teal: #4a7c8c;
  --success: #5f7a5e;
  --purple: #6e5b7a;
  --gradient: linear-gradient(135deg, #4a3d5c 0%, #6e5b7a 45%, #be6e3f 100%);
  --shadow-sm: 0 1px 2px rgba(42, 36, 48, 0.06);
  --shadow-md: 0 8px 30px rgba(42, 36, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(42, 36, 48, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246, 243, 237, 0.85);
  border-bottom: 1px solid rgba(232, 226, 217, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.925rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, background 0.15s;
}

.nav-cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
  color: #fff !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: blob-drift 18s ease-in-out infinite;
  transition: transform 0.4s ease-out;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: #ede9f0;
  top: -120px;
  right: -80px;
  animation-delay: 0s;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: #faf0e8;
  bottom: -80px;
  left: -100px;
  animation-delay: -6s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: #ebf2f5;
  top: 40%;
  left: 35%;
  animation-delay: -12s;
}

@keyframes blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-16px, 12px) scale(0.97);
  }
}

.eyebrow-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 3.35rem);
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(74, 61, 92, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 61, 92, 0.3);
  color: #fff;
}

.btn-secondary {
  background: var(--card);
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-soft);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-value {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.trust-value.stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ── Phone mockup (Pinterest-style floating cards) ── */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.phone {
  width: 280px;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: rotate(-2deg);
}

.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  padding: 1rem;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.phone-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.phone-pill {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.mock-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow-sm);
}

.mock-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-light);
  margin-bottom: 0.35rem;
}

.mock-card-value {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.mock-rings {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.mock-ring {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--bg-soft);
  overflow: hidden;
}

.mock-ring span {
  display: block;
  height: 100%;
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mock-chart svg {
  width: 100%;
  height: 64px;
  display: block;
}

.chart-line {
  fill: none;
  stroke: var(--purple);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: chart-draw 2.5s ease forwards 0.5s;
}

.chart-area {
  fill: url(#chartGrad);
  opacity: 0;
  animation: fade-in 1s ease forwards 1.2s;
}

@keyframes chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.phone-panel {
  display: none;
  animation: panel-in 0.45s ease;
}

.phone-panel.active {
  display: block;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mock-chart {
  height: 64px;
  margin-top: 0.5rem;
  background: linear-gradient(180deg, rgba(110, 91, 122, 0.14) 0%, transparent 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mock-chart::after {
  content: '';
  position: absolute;
  inset: 12px 8px 8px;
  border-bottom: 2px solid var(--purple);
  border-radius: 0 0 4px 4px;
  clip-path: polygon(0 80%, 20% 60%, 40% 70%, 60% 35%, 80% 45%, 100% 20%, 100% 100%, 0 100%);
  background: rgba(110, 91, 122, 0.2);
}

.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  animation: float 4s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.float-1 {
  top: 8%;
  right: -4%;
  animation-delay: 0s;
}

.float-2 {
  bottom: 18%;
  left: -8%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ── Sections ── */
section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 18ch;
}

.section-lead {
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-center .section-title,
.section-header-center .section-lead {
  margin-inline: auto;
}

/* Med pills */
.med-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.med-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

/* Feature bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.bento-icon.purple {
  background: #f0ebf2;
}
.bento-icon.clay {
  background: var(--accent-soft);
}
.bento-icon.teal {
  background: #ebf2f5;
}
.bento-icon.green {
  background: #edf2ed;
}

.bento-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.bento-card p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Vera / AI band */
.band {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.band h2 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.band p {
  color: #c4bdb5;
  margin: 0 0 1.5rem;
}

.band .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: #e8e2d9;
}

.band-chat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.875rem;
  margin-bottom: 0.65rem;
  max-width: 90%;
}

.chat-user {
  background: var(--primary-light);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-bot {
  background: rgba(255, 255, 255, 0.1);
  color: #f6f3ed;
  border-bottom-left-radius: 4px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.price-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.15rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--muted-light);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  padding-right: 2rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.cta-band p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 32ch;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  font-family: 'DM Sans', sans-serif;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted-light);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--muted-light);
  margin-top: 1rem;
}

/* Legal / prose pages */
.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.page-hero p {
  color: var(--muted);
  margin: 0;
}

.prose {
  max-width: 680px;
  margin: 0 auto 4rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card.span-2 {
    grid-column: span 1;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .float-card {
    display: none;
  }

  .phone-wrap {
    order: -1;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 1rem;
  }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Marquee ── */
.marquee-section {
  padding: 1.25rem 0;
  background: var(--ink);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
  padding: 0.25rem 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(246, 243, 237, 0.85);
}

.marquee-item span {
  color: var(--accent);
  font-size: 0.65rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── App showcase (interactive tabs) ── */
.showcase {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-tab {
  text-align: left;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  font-family: inherit;
}

.feature-tab:hover {
  border-color: var(--primary-light);
  transform: translateX(4px);
}

.feature-tab.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: var(--card);
}

.feature-tab strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.feature-tab span {
  font-size: 0.875rem;
  color: var(--muted);
}

.showcase-phone {
  display: flex;
  justify-content: center;
}

.showcase-phone .phone {
  transform: none;
  animation: phone-tilt 6s ease-in-out infinite;
}

@keyframes phone-tilt {
  0%,
  100% {
    transform: rotate(-1deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-6px);
  }
}

/* ── Testimonials marquee ── */
.reviews-section {
  padding: 4rem 0;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.review-track-wrap {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.review-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

.review-card cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* ── Journey timeline (Shotsy-style) ── */
.journey-band {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
}

.journey-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(190, 110, 63, 0.08), transparent 50%);
  pointer-events: none;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  z-index: 0;
}

.journey-progress {
  position: absolute;
  top: 28px;
  left: 10%;
  height: 3px;
  width: 0;
  background: var(--gradient);
  border-radius: 999px;
  z-index: 1;
  animation: journey-fill 3s ease forwards 0.8s;
}

@keyframes journey-fill {
  to {
    width: 60%;
  }
}

.journey-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.journey-dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: border-color 0.3s, transform 0.3s;
}

.journey-step.active .journey-dot {
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(74, 61, 92, 0.12);
}

.journey-step h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
}

.journey-step p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Chat animation ── */
.band-chat .chat-bubble {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.band-chat .chat-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Med pills hover ── */
.med-pill {
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.med-pill:hover {
  transform: translateY(-2px);
  border-color: var(--primary-light);
  background: var(--card-hover);
}

/* ── Bento stagger on hover icon ── */
.bento-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-card:hover .bento-icon {
  transform: scale(1.12) rotate(-4deg);
}

/* ── CTA shimmer ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: btn-shimmer 4s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0%,
  70%,
  100% {
    transform: translateX(-100%);
  }
  85% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .review-track,
  .blob,
  .showcase-phone .phone,
  .btn-primary::after {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }

  .chart-area {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps::before,
  .journey-progress {
    display: none;
  }
}
