/* US Homepage — section-specific styles */

/* ══════════════════════════════════════════════════════════════
   HERO (US) — overrides hero.css for equal 2-col, clean layout
══════════════════════════════════════════════════════════════ */

.hero-us .hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero-us .hero-headline {
  max-width: 16ch;
  animation: reveal-up 800ms 100ms var(--ease-smooth) both;
}
.hero-us .hero-sub {
  max-width: 50ch;
}

/* ─── CTA row: "Book a demo" primary + phone link ─── */
.hero-us-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 3vh, 32px);
  animation: reveal-up 800ms 680ms var(--ease-smooth) both;
}
.btn-phone-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--primary);
  text-decoration: none;
  padding: 4px 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}
.btn-phone-link:hover { opacity: 0.75; }
.btn-phone-link .phone-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-body-md);
  letter-spacing: -0.01em;
}
.btn-phone-link .phone-label {
  font-size: var(--fs-body-xs);
  color: var(--charcoal-50);
  font-weight: 400;
}
.phone-sep {
  width: 1px;
  height: 28px;
  background: var(--charcoal-15);
  flex-shrink: 0;
}

/* ─── Dashboard mockup card ─── */
/* ─── Hero dashboard ─── */
.db-root {
  display: flex;
  justify-content: center;
  animation: reveal-player 800ms 400ms var(--ease-smooth) both;
}

.db-shell {
  width: 100%;
  max-width: 520px;
  background: var(--surface-dashboard);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.12),
    0 12px 40px rgba(0,0,0,0.35),
    inset 0 1.5px 0 rgba(255,255,255,0.08);
}

.db-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.db-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}

.db-brand-icon {
  width: 26px; height: 26px;
  background: rgba(155,207,106,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.db-brand-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.db-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.db-live-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: db-livepulse 1.8s ease-in-out infinite;
}

@keyframes db-livepulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin: 16px 16px 0;
  border-radius: 14px;
  overflow: hidden;
}

.db-stat {
  background: rgba(255,255,255,0.04);
  padding: 16px 16px 14px;
  text-align: center;
}

.db-stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.db-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.db-calls {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.db-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.db-row.db-is-live {
  border-color: rgba(155,207,106,0.25);
  background: rgba(155,207,106,0.05);
}

.db-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--white);
}

.db-av-s { background: var(--avatar-purple); }
.db-av-j { background: var(--avatar-blue); }

.db-row-info { flex: 1; min-width: 0; }

.db-row-name {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-row-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

.db-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.db-resolved {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.db-live-call {
  background: rgba(155,207,106,0.12);
  color: var(--accent);
  border: 1px solid rgba(155,207,106,0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.db-badge-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: db-livepulse 1s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   SOCIAL PROOF STRIP
══════════════════════════════════════════════════════════════ */
.social-proof-section {
  border-top: 1px solid var(--charcoal-07);
  border-bottom: 1px solid var(--charcoal-07);
  padding: clamp(52px, 6.5vh, 80px) 0;
  position: relative;
  z-index: var(--z-base);
}
.social-proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5.5vh, 64px);
}
.sp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-stat {
  flex: 1;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 72px);
}
.sp-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 7px;
}
.sp-lbl {
  font-size: var(--fs-body-xs);
  color: var(--charcoal-50);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.sp-divider {
  width: 1px;
  height: 38px;
  background: var(--charcoal-10);
  flex-shrink: 0;
}

/* ─── Brand carousel ─── */
.brand-carousel-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-scroll 24s linear infinite;
}
.brand-track:hover { animation-play-state: paused; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--charcoal-40);
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 0 clamp(52px, 9vw, 120px);
  transition: color var(--duration-base) var(--ease-smooth);
  cursor: default;
}
.brand-name:hover { color: var(--charcoal-75); }
.brand-sep {
  color: var(--charcoal-15);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

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

/* ══════════════════════════════════════════════════════════════
   PAIN SECTION — 2-col split with accordion
══════════════════════════════════════════════════════════════ */
.pain-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(52px, 7vh, 96px) clamp(20px, 2.5vw, 32px);
  position: relative;
  z-index: var(--z-base);
}
.pain-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.pain-headline {
  margin-top: 16px;
  max-width: 18ch;
  line-height: 1.1;
}
.pain-accordion {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--charcoal-07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pain-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--charcoal-07);
  cursor: pointer;
  user-select: none;
  transition: background var(--duration-base) var(--ease-smooth);
}
.pain-item:last-child { border-bottom: none; }
.pain-item:hover { background: rgba(255,255,255,0.5); }
.pain-item.active { background: var(--primary-04); }
.pain-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pain-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-06);
  border: 1px solid var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--charcoal-40);
  transition:
    color var(--duration-base) var(--ease-smooth),
    background var(--duration-base) var(--ease-smooth),
    border-color var(--duration-base) var(--ease-smooth);
}
.pain-item.active .pain-icon-box {
  background: var(--primary-10);
  border-color: var(--primary-18);
  color: var(--primary);
}
.pain-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal-40);
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
  transition: color var(--duration-base) var(--ease-smooth);
}
.pain-item.active .pain-item-title { color: var(--charcoal); }
.pain-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: calc(36px + 14px);
  transition:
    max-height 380ms var(--ease-smooth),
    opacity 280ms var(--ease-smooth);
}
.pain-item.active .pain-desc {
  max-height: 140px;
  opacity: 1;
}
.pain-desc p {
  font-size: var(--fs-body-sm);
  color: var(--charcoal-60);
  line-height: 1.65;
  padding-top: 10px;
  padding-bottom: 4px;
  max-width: 40ch;
}

/* ══════════════════════════════════════════════════════════════
   USE CASES SECTION — BENTO GRID
══════════════════════════════════════════════════════════════ */
.uc-section {
  background: rgba(199,166,222,0.04);
  padding: clamp(52px, 7vh, 96px) 0;
  position: relative;
  z-index: var(--z-base);
}
.uc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(20px, 2.5vw, 32px);
}

/* ─── Bento grid container ─── */
.uc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 5vh, 64px);
}

/* ─── Column spans: 01 wide-left, 02 narrow-right, 03 narrow-left, 04 wide-right ─── */
.uc-card-01 { grid-column: 1 / 3; }
.uc-card-02 { grid-column: 3 / 4; }
.uc-card-03 { grid-column: 1 / 2; }
.uc-card-04 { grid-column: 2 / 4; }

/* ─── Individual card ─── */
.uc-card {
  background: var(--white);
  border: 1px solid var(--primary-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.06),
    0 12px 40px var(--primary-08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.uc-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* ─── Visual area: fills the top of the card ─── */
.uc-card-visual {
  flex: 1;
  padding: 24px 24px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Strip card framing from nested demo-player / panel inside a card visual */
.uc-card-visual .demo-player {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  flex: 1;
}
.uc-card-visual .uc-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  flex: 1;
}

/* ─── Image fills card visual area ─── */
.uc-graphic {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex: 1;
  min-height: 160px;
}

/* ─── Card info strip at bottom ─── */
.uc-card-body {
  flex-shrink: 0;
  padding: 18px 24px 20px;
  border-top: 1px solid var(--primary-06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.uc-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-label-md);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-60);
  margin-bottom: 2px;
}

.uc-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.uc-metric-val {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.uc-metric-lbl {
  font-size: var(--fs-body-xs);
  color: var(--charcoal-60);
}

.uc-caption {
  font-size: var(--fs-body-sm);
  line-height: 1.45;
  color: var(--charcoal-75);
  margin: 0;
  max-width: 44ch;
}

/* ─── Visual panel (no framing when inside a card) ─── */
.uc-panel {
  background: linear-gradient(
    180deg, rgba(255,255,255,0.97) 0%, rgba(250,246,253,0.97) 100%
  );
  border: 1px solid var(--primary-08);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.uc-panel.uc-panel-dark {
  background: linear-gradient(160deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
  border-color: rgba(255,255,255,0.1);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.28),
    inset 0 1.5px 0 rgba(255,255,255,0.1);
}

/* ─── Order Status animation v8 (Card 01 visual) ─── */
.uc-card-visual--anim {
  padding: 0;
  min-height: 240px;
  align-items: stretch;
  justify-content: stretch;
  flex-direction: row;
}

.os-root {
  width: 100%;
  min-height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}

/* Frame 1 */
.os-frame1 {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 40px;
  gap: 10px;
}

.os-chat-bubble {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 320px;
}

.os-bubble {
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 260px;
}
.os-bubble.os-customer {
  background: var(--white);
  color: var(--charcoal-80);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  align-self: flex-start;
}
.os-bubble.os-brand {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-size: 12.5px;
}

.os-wait-row {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  margin-top: 2px;
}
.os-wait-label { font-size: 11px; color: var(--charcoal-40); }
.os-wait-timer {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--emotion-frustrated);
}
.os-wait-dots span {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--emotion-frustrated);
  margin-left: 2px;
  animation: os-blink 1.2s ease-in-out infinite;
}
.os-wait-dots span:nth-child(2) { animation-delay: 0.2s; }
.os-wait-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes os-blink {
  0%,80%,100% { opacity: 0.2; }
  40%          { opacity: 1;   }
}

/* Frame 2 */
.os-frame2 {
  position: absolute;
  top: 0; left: 100%;
  width: 100%; height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: left 0.7s cubic-bezier(0.65,0,0.35,1);
  overflow: hidden;
}
.os-frame2.os-peek       { left: 80%; }
.os-frame2.os-fullscreen { left: 0%;  }

.os-frame2::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--primary-12);
  transition: opacity 0.4s ease;
}
.os-frame2.os-fullscreen::before { opacity: 0; }

.os-peek-label {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-50);
  transition: opacity 0.3s ease;
  position: absolute;
}
.os-frame2.os-fullscreen .os-peek-label { opacity: 0; }

.os-f2-inner {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease 0.25s;
}
.os-frame2.os-fullscreen .os-f2-inner { opacity: 1; }

.os-badge {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--primary-06);
  border: 1px solid var(--primary-20);
  border-radius: 9999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

/* Layer A: pickup + waveform */
.os-layer-a {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.os-layer-a.os-exit { opacity: 0; transform: translateY(-20px); }

.os-pickup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.os-pickup-row.os-show { opacity: 1; transform: translateY(0); }

.os-phone-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.os-phone-icon::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: os-pulse-ring 1.4s ease-out infinite;
}
@keyframes os-pulse-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0;   }
}

.os-pickup-text { font-size: 13px; color: var(--charcoal-55); }
.os-pickup-text strong { color: var(--primary); font-weight: 600; }

.os-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.os-waveform.os-show { opacity: 1; }

.os-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--primary);
  animation: os-wave 1s ease-in-out infinite;
  transform-origin: center;
}
@keyframes os-wave {
  0%,100% { transform: scaleY(0.2); opacity: 0.3; }
  50%     { transform: scaleY(1);   opacity: 0.9; }
}

/* Layer B: resolution */
.os-layer-b {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.34,1.3,0.64,1);
  pointer-events: none;
}
.os-layer-b.os-show { opacity: 1; transform: translateY(0); pointer-events: auto; }

.os-resolved-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  line-height: 1.3;
}

.os-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 6px;
  background: rgba(155,207,106,0.15);
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-fg-mid);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.2s, transform 0.45s cubic-bezier(0.34,1.56,0.64,1) 0.2s;
}
.os-layer-b.os-show .os-check-pill { opacity: 1; transform: translateY(0); }

.os-check-dot {
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.os-check-dot::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: os-pulse 1.8s ease-out infinite;
}
@keyframes os-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0;   }
}

/* ─── Product Recs chat animation (Card 02 visual) ─── */
.sl-root {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 24px;
}

.sl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.sl-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: var(--primary-06);
  border: 1px solid var(--primary-15);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.sl-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: sl-pulse 2s infinite;
}
@keyframes sl-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(155,207,106,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(155,207,106,0); }
}

.sl-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary-50);
  letter-spacing: 0.08em;
}

.sl-bubbles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.sl-row {
  width: 100%;
  display: flex;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s cubic-bezier(0.34,1.56,0.64,1), transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.sl-row.sl-customer { justify-content: flex-end; }
.sl-row.sl-agent    { justify-content: flex-start; align-items: flex-end; gap: 10px; }
.sl-row.visible     { opacity: 1; transform: translateY(0); }

.sl-avatar {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}

.sl-bubble {
  max-width: 260px;
  padding: 13px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal);
}
.sl-bubble.sl-customer {
  background: var(--white);
  border: 1px solid var(--primary-12);
  border-bottom-right-radius: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05), 0 8px 30px var(--primary-06);
}
.sl-bubble.sl-agent {
  background: var(--primary-07);
  border: 1px solid var(--primary-10);
  border-bottom-left-radius: 5px;
}

.sl-agent-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px;
  opacity: 0.8;
}

.sl-wave-container {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  padding: 0 2px;
  min-width: 80px;
}

.sl-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--primary);
  transform-origin: center;
  animation: sl-waveplay 1s ease-in-out infinite;
}
@keyframes sl-waveplay {
  0%,100% { transform: scaleY(0.2); opacity: 0.25; }
  50%      { transform: scaleY(1);   opacity: 0.85; }
}

/* Grid overlay keeps wave and text in the same cell so height never changes */
.sl-bubble-inner {
  display: grid;
}
.sl-wave-wrap,
.sl-text-content {
  grid-row: 1;
  grid-column: 1;
  min-width: 0;
}

.sl-wave-wrap { transition: opacity 0.3s ease; }
.sl-wave-wrap.hidden { opacity: 0; pointer-events: none; }

.sl-text-content {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.sl-text-content.shown { opacity: 1; pointer-events: auto; }

/* ─── Returns animation (Card 03 visual) ─── */
.rt-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 28px 0 24px;
}

.rt-card {
  width: min(360px, 100%);
  background: var(--white);
  border: 1px solid var(--primary-12);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05), 0 12px 40px var(--primary-07);
  overflow: hidden;
}

.rt-card-header {
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--primary-08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rt-icon {
  width: 34px; height: 34px;
  background: var(--primary-07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.rt-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.rt-rows { padding: 6px 0; }

.rt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid var(--primary-06);
}
.rt-row:last-child { border-bottom: none; }

.rt-row-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--charcoal-50);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rt-row-value { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.rt-mono { font-family: var(--font-mono); font-size: 13px; }

.rt-eligible {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(155,207,106,0.15);
  border: 1px solid rgba(155,207,106,0.4);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-fg-dark);
}
.rt-eligible-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.rt-action-wrap {
  position: relative;
  height: 24px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rt-dash {
  font-size: 14px;
  color: var(--charcoal-20);
  position: absolute;
  right: 0;
  transition: opacity 0.35s ease;
}
.rt-dash.rt-hidden { opacity: 0; }

.rt-processed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--primary-08);
  border: 1px solid var(--primary-18);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  position: absolute;
  right: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s cubic-bezier(0.34,1.56,0.64,1), transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.rt-processed.rt-shown { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — horizontal timeline
══════════════════════════════════════════════════════════════ */
.how-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(52px, 7vh, 96px) clamp(20px, 2.5vw, 32px);
  position: relative;
  z-index: var(--z-base);
}
.steps-timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: clamp(48px, 6vh, 72px);
}
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 21px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 1px;
  background: var(--charcoal-15);
  z-index: 0;
}
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal-15);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal-50);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.step-desc {
  font-size: var(--fs-body-sm);
  color: var(--charcoal-60);
  line-height: 1.65;
  max-width: 20ch;
}

/* ══════════════════════════════════════════════════════════════
   CASE STUDY (compact dark band)
══════════════════════════════════════════════════════════════ */
.case-section {
  background: var(--surface-dark);
  padding: clamp(52px, 6vh, 80px) clamp(20px, 2.5vw, 32px);
  position: relative;
  z-index: var(--z-base);
}
.case-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.case-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-label-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.case-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 22ch;
}
.case-quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
}
.case-quote-text {
  font-size: var(--fs-body-md);
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: 8px;
}
.case-quote-attr { font-size: var(--fs-body-xs); color: rgba(255,255,255,0.42); }
.case-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--duration-base) var(--ease-smooth);
}
.case-read-link:hover { opacity: 0.8; }

/* Stats grid (right side of case study) */
.case-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.case-stat-cell {
  background: var(--surface-dark);
  padding: 28px 24px;
}
.case-stat-cell:last-child { grid-column: 1 / -1; }
.case-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.case-stat-lbl { font-size: var(--fs-body-xs); color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   FOUNDER GUARANTEE
══════════════════════════════════════════════════════════════ */
.guarantee-section {
  background: rgba(199,166,222,0.06);
  padding: clamp(52px, 7vh, 96px) clamp(20px, 2.5vw, 32px);
  position: relative;
  z-index: var(--z-base);
}
.guarantee-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.guarantee-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary-20) 0%, var(--primary-08) 100%);
  min-height: 460px;
  position: relative;
  border: 1px solid var(--primary-12);
  box-shadow: var(--shadow-card);
}
.guarantee-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.guarantee-photo-ph {
  font-size: var(--fs-label-md);
  color: var(--primary-40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.guarantee-content { padding-top: 4px; }
.guarantee-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 120px);
  color: var(--primary);
  letter-spacing: -0.06em;
  line-height: 0.88;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.guarantee-pct {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--primary-50);
  letter-spacing: -0.02em;
}
.guarantee-tagline {
  font-size: var(--fs-body-sm);
  color: var(--charcoal-50);
  margin-top: 8px;
  margin-bottom: 28px;
  font-weight: 500;
}
.guarantee-who {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.guarantee-role { font-size: var(--fs-body-xs); color: var(--charcoal-50); margin-bottom: 20px; }
.guarantee-body {
  font-size: var(--fs-body-sm);
  line-height: 1.75;
  color: var(--charcoal-75);
  max-width: 48ch;
  margin-bottom: 24px;
}
.guarantee-box {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--primary-12);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.guarantee-box-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-body-sm);
  color: var(--primary);
  margin-bottom: 6px;
}
.guarantee-box-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--charcoal-60);
  margin-bottom: 10px;
}
.guarantee-terms-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-label-lg);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.8;
  transition: opacity var(--duration-base) var(--ease-smooth);
}
.guarantee-terms-link:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.pricing-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(52px, 7vh, 96px) clamp(20px, 2.5vw, 32px);
  position: relative;
  z-index: var(--z-base);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: clamp(40px, 5vh, 60px);
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--charcoal-10);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.07),
    0 20px 56px var(--primary-10);
}
.pricing-card.pricing-featured {
  border-color: var(--primary);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 12px 40px rgba(0,0,0,0.08),
    0 24px 72px var(--primary-15);
  transform: translateY(-10px);
}
.pricing-card.pricing-featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 16px 48px rgba(0,0,0,0.1),
    0 32px 88px var(--primary-20);
}
.pricing-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: var(--fs-body-xs);
  color: var(--charcoal-50);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal-07);
  margin-bottom: 24px;
}
.pricing-currency { font-size: 20px; color: var(--charcoal-50); font-weight: 500; }
.pricing-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-period { font-size: var(--fs-body-xs); color: var(--charcoal-40); }
.pricing-custom {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--charcoal);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal-07);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.feature-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li {
  font-size: 13.5px;
  color: var(--charcoal-75);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
}
.pricing-note { font-size: var(--fs-body-xs); color: var(--charcoal-40); text-align: center; margin-top: 20px; }

/* ══════════════════════════════════════════════════════════════
   FINAL CTA BAND
══════════════════════════════════════════════════════════════ */
.final-cta-section {
  background: var(--primary);
  padding: clamp(52px, 7vh, 80px) clamp(20px, 2.5vw, 32px);
  text-align: center;
  position: relative;
  z-index: var(--z-base);
  overflow: hidden;
}
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(132,76,172,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(199,166,222,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: var(--z-base);
  max-width: 640px;
  margin: 0 auto;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.final-cta-sub {
  font-size: var(--fs-body-md);
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 52ch;
  margin-inline: auto;
}
.final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--spacing-xs) var(--spacing-lg);
  font-size: var(--fs-body-sm);
  transition: all var(--duration-base) var(--ease-smooth);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline-w {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--fs-body-sm);
  transition: all var(--duration-base) var(--ease-smooth);
}
.btn-outline-w:hover {
  border-color: rgba(255,255,255,0.6);
  color: white;
  background: rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — single breakpoint 960px
══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-us .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-us-ctas { flex-direction: column; align-items: flex-start; }
  .phone-sep { display: none; }
  .sp-stats { gap: 0; }
  .sp-stat { padding: 0 16px; }
  .sp-num { font-size: 24px; }
  .pain-split { grid-template-columns: 1fr; gap: 36px; }
  .uc-bento { grid-template-columns: 1fr; }
  .uc-card-01, .uc-card-02, .uc-card-03, .uc-card-04 { grid-column: 1; }
  .uc-card-visual { min-height: 200px; }
  .steps-timeline { flex-direction: column; gap: 28px; }
  .steps-timeline::before { display: none; }
  .step-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; padding: 0; }
  .step-circle { margin-bottom: 0; }
  .step-desc { max-width: none; }
  .case-inner { grid-template-columns: 1fr; gap: 40px; }
  .case-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .case-stat-cell:last-child { grid-column: auto; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-photo { min-height: 280px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.pricing-featured { transform: none; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}
