/* ═══════════════════════════════════════════════════════════
   SONORA SOLUTIONS — style-v2.css
   Premium Beauty-Tech · Editorial Elegance Edition
═══════════════════════════════════════════════════════════ */

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Design Tokens ───────────────────────────────────────────── */
:root {
  /* Palette */
  --bg:           #f9f7f3;
  --bg-alt:       #f3f0ea;
  --bg-card:      #ffffff;
  --bg-warm:      #f5f2ec;

  --text-1:       #191c17;
  --text-2:       #585b54;
  --text-3:       #98a094;

  --accent:       #d6a0ad;
--accent-2:     #d6a0ad;
--accent-warm:  #d6a0ad;
--accent-dim:   rgba(214, 160, 173, 0.10);
--accent-glow:  rgba(214, 160, 173, 0.26);
--accent-line:  rgba(214, 160, 173, 0.34);

  --border:       rgba(25, 28, 23, 0.08);
  --border-mid:   rgba(25, 28, 23, 0.15);

  /* Shadows */
  --shadow-xs:    0 1px 6px rgba(25, 28, 23, 0.05);
  --shadow-sm:    0 2px 14px rgba(25, 28, 23, 0.07);
  --shadow-md:    0 8px 32px rgba(25, 28, 23, 0.10);
  --shadow-lg:    0 22px 64px rgba(25, 28, 23, 0.13);
  --shadow-green: 0 8px 32px rgba(214, 160, 173, 0.18), 0 2px 8px rgba(214, 160, 173, 0.12);

  /* Fonts */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Layout */
  --container:    1200px;
  --section-pad:  clamp(5rem, 10vw, 8rem);
  --gutter:       clamp(1.5rem, 5vw, 3.5rem);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;
}

/* ─── Base ────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(214, 160, 173, 0.15); color: var(--accent-2); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(25,28,23,0.18); border-radius: 2px; }

/* ─── Layout utility ──────────────────────────────────────────── */
.v2-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.35s; }
.reveal-d6 { transition-delay: 0.42s; }

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

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.v2-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 200;
  height: 70px;
  display: flex;
  align-items: center;
  background: #11130f;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.v2-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.v2-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.2s;
}

.v2-logo:hover { color: var(--accent-2); }

.v2-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.v2-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}

.v2-nav a:hover {
  color: #ffffff;
}

.v2-nav-cta {
  font-family: var(--font-mono);
  font-size: 0.67rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #11130f !important;
  background: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--r-sm);
  transition: background 0.22s, box-shadow 0.22s, color 0.22s !important;
}

.v2-nav-cta:hover {
  background: var(--accent) !important;
  color: #11130f !important;
  box-shadow: var(--shadow-green) !important;
}

.v2-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.v2-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.25s;
}

.v2-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.v2-nav-toggle.open span:nth-child(2) { opacity: 0; }
.v2-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.v2-hero {
  min-height: 100svh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 65% 80% at 88% 42%, rgba(214, 160, 173, 0.065) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 8% 85%, rgba(214, 160, 173, 0.035) 0%, transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture */
.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.v2-hero .v2-container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 3.5vw, 3.25rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

/* ── Hero Left ─────────────────────────────────────────────────── */
.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

.hero-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.5); }
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 5.1vw, 5.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--text-1);
  max-width: 760px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.24s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent-2);
}

/* ── Hero headline sequence reveal ───────────────────────────── */
.hero-heading--sequence {
  opacity: 1;
  transform: none;
  animation: none;
  line-height: 1.18;
  overflow: visible;
}

.hero-heading--sequence .hero-heading-line {
  display: block;
  opacity: 0;
  transform: translateX(-34px);
  clip-path: inset(-0.45em 100% -0.75em 0);
  line-height: 1.18;
  padding-bottom: 0.16em;
  overflow: visible;
  will-change: opacity, transform, clip-path;
}

/* First sentence appears first */
.hero-heading--sequence .hero-heading-line--first {
  animation: heroTextRevealX 3s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Second sentence appears automatically with the rest */
.hero-heading--sequence .hero-heading-line--scroll {
  animation: heroTextRevealX 3s cubic-bezier(0.16, 1, 0.3, 1) 1.65s both;
}

@keyframes heroTextRevealX {
  from {
    opacity: 0;
    transform: translateX(-34px);
    clip-path: inset(-0.45em 100% -0.75em 0);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(-0.45em 0 -0.75em 0);
  }
}

/* ── Hero second-step group reveal ───────────────────────────── */
.hero-body.hero-body--sequence,
.hero-heading--sequence ~ .hero-actions,
.hero-heading--sequence ~ .hero-badges {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-34px);
  filter: none;
  will-change: opacity, transform;
}

/* Subheadline, buttons and badges appear together with the second line */
.hero-body.hero-body--sequence,
.hero-heading--sequence ~ .hero-actions,
.hero-heading--sequence ~ .hero-badges {
  animation: heroGroupRevealX 3s cubic-bezier(0.16, 1, 0.3, 1) 1.65s both;
}

@keyframes heroGroupRevealX {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-34px);
  }

  1% {
    visibility: visible;
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.hero-body {
  font-size: clamp(0.93rem, 1.05vw, 1.02rem);
  color: var(--text-2);
  line-height: 1.82;
  max-width: 460px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--border-mid);
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.hero-pill svg { color: var(--accent-2); flex-shrink: 0; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}

/* ── Hero Right — Dashboard Panel ─────────────────────────────── */
.hero-visual {
  position: relative;
  left: -80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -100px;
  opacity: 0;
  transform: translateY(26px) scale(0.94);
  animation: heroBotPop 3s cubic-bezier(0.16, 1, 0.3, 1) 1.65s both;
}
@keyframes heroBotPop {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroVisualIn {
  to { opacity: 1; transform: none; }
}

.hero-panel {
  width: 100%;
  max-width: 490px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: panelFloat 6s ease-in-out 1.5s infinite;
}

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

.panel-bar {
  padding: 0.9rem 1.25rem;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pdot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.pdot-r { background: #ff5f57; }
.pdot-y { background: #febc2e; }
.pdot-g { background: #d6a0ad; }

.panel-bar-title {
  margin-left: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.panel-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  color: var(--accent-2);
  letter-spacing: 0.06em;
}

.panel-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

.panel-body { padding: 1.125rem; display: flex; flex-direction: column; gap: 0.875rem; }

/* Stats row */
.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ps-cell {
  background: var(--bg-card);
  padding: 0.875rem 0.5rem;
  text-align: center;
}

.ps-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}

.ps-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.51rem;
  color: var(--text-3);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Activity feed */
.panel-feed { display: flex; flex-direction: column; gap: 0.45rem; }

.feed-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.feed-icon-wrap {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.feed-icon-wrap--phone { background: var(--accent-dim); }
.feed-icon-wrap--chat { background: rgba(99, 102, 241, 0.07); }
.feed-icon-wrap--reac { background: rgba(249, 115, 22, 0.07); }

.feed-info { flex: 1; min-width: 0; }
.feed-name { font-size: 0.8rem; font-weight: 500; color: var(--text-1); line-height: 1.2; }
.feed-sub {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.feed-status {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.feed-status--ok {
  background: var(--accent-dim);
  color: var(--accent-2);
  border: 1px solid var(--accent-line);
}

.feed-status--sent {
  background: rgba(99, 102, 241, 0.07);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.feed-status--warm {
  background: rgba(249, 115, 22, 0.07);
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.18);
}

/* Conversion bar */
.panel-conv {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-md);
}

.conv-label {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.conv-track {
  flex: 1;
  height: 4px;
  background: rgba(214, 160, 173, 0.18);
  border-radius: 3px;
  overflow: hidden;
}

.conv-fill {
  height: 100%;
  background: var(--accent-2);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.conv-val {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--accent-2);
}

/* Floating badge below panel */
.hero-float-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: -1px;
  align-self: flex-end;
  margin-right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 1.05s forwards;
}

.float-badge-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
}

.float-badge-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}

.float-badge-label {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ── Hero Bot Canvas ─────────────────────────────────────────────── */
.hero-bot-frame-wrap {
  width: clamp(560px, 46vw, 720px);
  max-width: none;
  margin: 0 auto;
  animation: panelFloat 7s ease-in-out 1.4s infinite;
}


.hero-bot-canvas {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  /*
   * Soft rose-tinted shadow grounds the bot on the light background.
   * Adjust drop-shadow values here to change depth/glow intensity.
   * First shadow = depth; second = subtle pink ambient glow.
   */
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.13))
    drop-shadow(0 0 38px rgba(210, 148, 148, 0.11));
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.875rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition:
    background 0.22s, color 0.22s, border-color 0.22s,
    box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.v2-btn:active { transform: translateY(1px) !important; }

/* Primary */
.v2-btn--primary {
  background: var(--accent);
  color: #0c0f0a;
  border-color: var(--accent);
  font-weight: 600;
}

.v2-btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.v2-btn--primary:hover {
  background: #d6a0ad;
  border-color: #d6a0ad;
  box-shadow: 0 0 36px rgba(74,222,128,0.3), 0 4px 16px rgba(74,222,128,0.2);
  transform: translateY(-2px);
}

.v2-btn--primary:hover::after { animation: btnShimmer 0.52s ease forwards; }
@keyframes btnShimmer { to { left: 140%; } }

/* Ghost */
.v2-btn--ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-mid);
}

.v2-btn--ghost:hover {
  border-color: var(--text-1);
  color: var(--text-1);
  transform: translateY(-1px);
}

/* Large */
.v2-btn--lg { padding: 1.1rem 2.5rem; font-size: 0.76rem; }

/* ═══════════════════════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════════════════════ */
.v2-section {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--border);
}

.v2-section--alt { background: var(--bg-alt); }

.s-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.25rem;
}

.s-label::before {
  content: '';
  display: block;
  width: 12px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.s-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 3rem;
}

.s-heading em { font-style: italic; color: var(--accent-2); }
.s-heading--center { text-align: center; }

.s-subtext {
  font-size: 0.95rem;
  color: var(--text-2);
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  margin-top: -2rem;
  margin-bottom: 3rem;
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════ */
.v2-trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.trust-bar-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.59rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.trust-bar-item:last-child { border-right: none; }
.trust-bar-item svg { color: var(--accent-2); opacity: 0.8; }

/* ═══════════════════════════════════════════════════════════════
   PROBLEM CARDS
═══════════════════════════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.pain-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
  transform: translateY(-3px);
}

.pain-num {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  opacity: 0.65;
}

.pain-icon-wrap {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.pain-card:hover .pain-icon-wrap {
  background: var(--accent-dim);
  border-color: var(--accent-line);
  color: var(--accent-2);
}

.pain-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.2;
}

.pain-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.78; }

/* ═══════════════════════════════════════════════════════════════
   SOLUTION / FEATURES
═══════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  transition: background 0.25s, box-shadow 0.25s;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(214, 160, 173, 0.13);
  box-shadow: 0 0 18px rgba(214, 160, 173, 0.14);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-1);
}

.feature-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.78; }

.feature-tag {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: var(--accent-2);
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — FLOW STEPS
═══════════════════════════════════════════════════════════════ */
.flow-wrap { position: relative; }

.flow-connector {
  position: absolute;
  top: 1.75rem;
  left: calc(10% + 1.75rem);
  right: calc(10% + 1.75rem);
  height: 1px;
  background: linear-gradient(to right, var(--accent-line), rgba(74,222,128,0.1));
  z-index: 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: 0 0.75rem;
}

.flow-circle {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--bg-alt), var(--shadow-xs);
  transition: background 0.25s, box-shadow 0.25s;
}

.flow-step:hover .flow-circle {
  background: var(--accent-dim);
  box-shadow: 0 0 0 5px var(--bg-alt), 0 0 20px var(--accent-glow);
}

.flow-step-num {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: var(--accent-2);
  letter-spacing: 0.1em;
}

.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.2;
}

.flow-step p { font-size: 0.8rem; color: var(--text-2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   MOCKUP SHOWCASE
═══════════════════════════════════════════════════════════════ */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mkcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.mkcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
}

.mkbar {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
}

.mkdot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mkdot--r { background: #ff5f57; }
.mkdot--y { background: #febc2e; }
.mkdot--g { background: #d6a0ad; }

.mkbar-title {
  margin-left: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

.mkbody { padding: 0.25rem 1.25rem 1.1rem; }

.mk-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.mk-row:last-child { border-bottom: none; }

.mk-key {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.mk-val { font-size: 0.82rem; color: var(--text-1); text-align: right; }

.mk-badge {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.53rem;
  letter-spacing: 0.05em;
  background: var(--accent-dim);
  color: var(--accent-2);
  border: 1px solid var(--accent-line);
}

/* Chat */
.mk-chat {
  padding: 1rem 1rem 0.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  background: #fafafa;
}

.chat-bubble {
  max-width: 83%;
  padding: 0.55rem 0.875rem;
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: 10px;
}

.chat-bubble--in {
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  color: var(--text-1);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-bubble--out {
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  color: var(--text-1);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-status {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  padding: 0.3rem 0 0;
}

/* Dashboard */
.mk-dash { padding: 1rem; }

.mk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 0.875rem;
}

.mk-stat-cell {
  background: var(--bg-card);
  padding: 0.75rem 0.375rem;
  text-align: center;
}

.dash-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}

.dash-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.51rem;
  color: var(--text-3);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.18rem;
}

.mk-conv {
  display: flex; align-items: center; gap: 0.625rem;
}

.mk-conv-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.mk-conv-track {
  flex: 1; height: 4px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.mk-conv-fill {
  height: 100%;
  background: var(--accent-2);
  border-radius: 3px;
  width: 0;
  transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}

.mk-conv-val {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent-2);
  font-weight: 500;
}

.mk-demo-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   REACTIVATION
═══════════════════════════════════════════════════════════════ */
.reac-section {
  background:
    linear-gradient(135deg, rgba(74,222,128,0.05) 0%, var(--bg-alt) 60%);
}

.reac-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: center;
}

.reac-text { display: flex; flex-direction: column; gap: 1.25rem; }
.reac-text .s-heading { margin-bottom: 0; }
.reac-text p { font-size: 0.93rem; color: var(--text-2); line-height: 1.8; }

.reac-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 0.875rem 1.1rem;
  border-left: 2px solid var(--accent-line);
  background: var(--accent-dim);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.reac-stats-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.reac-stat {
  padding: 1.875rem 2rem;
  border-bottom: 1px solid var(--border);
}
.reac-stat:last-child { border-bottom: none; }

.reac-val {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.reac-val--word { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

.reac-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   METRICS
═══════════════════════════════════════════════════════════════ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.metric-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
  transform: translateY(-3px);
}

.metric-icon { font-size: 1.3rem; line-height: 1; margin-bottom: 0.2rem; }

.metric-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
}

.metric-card p { font-size: 0.83rem; color: var(--text-2); line-height: 1.68; }

/* ═══════════════════════════════════════════════════════════════
   STUDIO PILLS
═══════════════════════════════════════════════════════════════ */
.studio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.studio-pill {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--text-2);
  background: var(--bg-card);
  cursor: default;
  transition: border-color 0.22s, color 0.22s, background 0.22s, transform 0.18s;
}

.studio-pill:hover {
  border-color: var(--accent-line);
  color: var(--accent-2);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST
═══════════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
  transform: translateY(-3px);
}

.trust-icon { color: var(--accent-2); opacity: 0.85; }

.trust-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
}

.trust-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.72; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq-wrap { max-width: 720px; }

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

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.45;
}

.faq-trigger:hover { color: var(--accent-2); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--text-3);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1), color 0.2s;
  line-height: 1;
  user-select: none;
}

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent-2); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1);
}

.faq-body p {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 75% at 50% 100%, rgba(74,222,128,0.07) 0%, transparent 65%),
    var(--bg);
}

.final-cta-inner {
  max-width: 600px;
  margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}

.final-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text-1);
}

.final-cta-heading em { font-style: italic; color: var(--accent-2); }

.final-cta-sub {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.76;
  max-width: 440px;
}

.final-cta-note {
  font-family: var(--font-mono);
  font-size: 0.59rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-top: -0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.v2-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: 3.25rem 2rem;
}

.footer-inner { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-1);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.62;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-1); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* 1100px */
@media (max-width: 1100px) {
  .flow-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .flow-connector { display: none; }
}

/* 900px */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .hero-bot-frame-wrap { max-width: 360px; }

  .reac-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .pain-grid    { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid   { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .mockup-grid  { grid-template-columns: 1fr; }
}

/* 860px — mobile nav */
@media (max-width: 860px) {
  .v2-nav {
    position: fixed;
    top: 70px;
    inset-inline: 0;
    background: rgba(249, 247, 243, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-block: 0.5rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
    z-index: 190;
  }

  .v2-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .v2-nav li { border-bottom: 1px solid var(--border); }
  .v2-nav a { display: block; padding: 1rem 1.5rem; color: var(--text-2); }
  .v2-nav a:hover { color: var(--text-1); }

  .v2-nav-cta {
    border: none !important;
    border-radius: 0 !important;
    padding: 1rem 1.5rem !important;
    background: transparent !important;
    color: var(--accent-2) !important;
    font-size: 0.875rem !important;
    text-align: left;
  }

  .v2-nav-toggle { display: flex; }
}

/* 640px */
@media (max-width: 640px) {
  :root { --section-pad: clamp(3.5rem, 9vw, 5rem); }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .v2-btn { width: 100%; justify-content: center; }
  .hero-bot-frame-wrap { max-width: 260px; }

  .trust-bar-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .trust-bar-item { flex-shrink: 0; padding: 0.875rem 1.25rem; }

  .trust-grid   { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .flow-grid    { grid-template-columns: 1fr; gap: 2rem; }

  .final-cta-heading { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .footer-nav { gap: 1.25rem; }
}
