/* =========================================================
   Vryve — Marketing layout (light, bookzero-inspired)
   Depends on colors_and_type.css for tokens.
   ========================================================= */
@import url('colors_and_type.css?v=28cecdc1');

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

body {
  overflow-x: hidden;
}

/* ---------- shared layout ---------- */
.section-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section,
.section {
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.vh1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}

.vh2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.07;
  letter-spacing: -0.028em;
  color: var(--ink);
  text-wrap: balance;
}

.em,
.vh1 em,
.vh2 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

.section-sub {
  font-size: 1.12rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-3);
  max-width: 640px;
  margin-top: 18px;
}

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-ink);
  background: var(--primary);
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-primary);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(22, 104, 224, 0.34);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--card);
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ---------- icons (React <Icon> renders a lucide <svg> inside .ic) ---------- */
.ic {
  line-height: 0;
  flex-shrink: 0;
}

.ic svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================================================
   Scroll reveal + entrance animations (bookzero-style)
   Elements fade + slide up as they enter the viewport; grouped
   cards cascade via a per-item delay. Hidden state is scoped to
   html.reveal-ready (added by JS before paint) so content stays
   fully visible if scripts never run, and is disabled entirely
   for users who prefer reduced motion.
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }
  html.reveal-ready [data-reveal][data-revealed] {
    opacity: 1;
    transform: none;
  }

  /* Staggered cascade for grid/list children */
  :is(.stats, .steps-track, .bento, .products-grid, .faq-list,
      .values-grid, .numbers-grid, .timeline) > [data-reveal]:nth-child(2) { --reveal-delay: 0.07s; }
  :is(.stats, .steps-track, .bento, .products-grid, .faq-list,
      .values-grid, .numbers-grid, .timeline) > [data-reveal]:nth-child(3) { --reveal-delay: 0.14s; }
  :is(.stats, .steps-track, .bento, .products-grid, .faq-list,
      .values-grid, .numbers-grid, .timeline) > [data-reveal]:nth-child(4) { --reveal-delay: 0.21s; }
  :is(.stats, .steps-track, .bento, .products-grid, .faq-list,
      .values-grid, .numbers-grid, .timeline) > [data-reveal]:nth-child(5) { --reveal-delay: 0.28s; }
  :is(.stats, .steps-track, .bento, .products-grid, .faq-list,
      .values-grid, .numbers-grid, .timeline) > [data-reveal]:nth-child(6) { --reveal-delay: 0.35s; }
  :is(.stats, .steps-track, .bento, .products-grid, .faq-list,
      .values-grid, .numbers-grid, .timeline) > [data-reveal]:nth-child(n+7) { --reveal-delay: 0.42s; }

  /* Hero entrance on load (above the fold — pure CSS, no scroll trigger) */
  .hero-inner > *,
  .about-hero-inner > * {
    opacity: 0;
    animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-inner > *:nth-child(1), .about-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-inner > *:nth-child(2), .about-hero-inner > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-inner > *:nth-child(3), .about-hero-inner > *:nth-child(3) { animation-delay: 0.19s; }
  .hero-inner > *:nth-child(4), .about-hero-inner > *:nth-child(4) { animation-delay: 0.26s; }
  .hero-inner > *:nth-child(5), .about-hero-inner > *:nth-child(5) { animation-delay: 0.33s; }
  .hero-demo {
    opacity: 0;
    animation: heroIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ---------- decorative: orbs + grain ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}

.orb-primary {
  background: radial-gradient(circle at 50% 50%, rgba(31, 123, 240, 0.55), transparent 70%);
}

.orb-teal {
  background: radial-gradient(circle at 50% 50%, rgba(17, 179, 198, 0.45), transparent 70%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('assets/noise.svg');
  opacity: 0.5;
  mix-blend-mode: multiply;
}

/* =========================================================
   Announcement bar
   ========================================================= */
.announce {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 9px 16px;
  text-align: center;
}

.announce a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announce .announce-spark {
  color: var(--teal);
}

.announce-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =========================================================
   Nav
   ========================================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur), border-color var(--dur), box-shadow var(--dur);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: 6px;
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto 0 14px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--bg-soft);
}

.nav-login {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 10px;
  transition: color var(--dur-fast);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-ink);
  background: var(--primary);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-primary);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast);
}

.nav-cta:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-burger {
  display: none;
  color: var(--ink);
  padding: 8px;
  border-radius: 10px;
}

.nav-burger:hover {
  background: var(--bg-soft);
}

/* mobile sheet */
.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(14, 27, 42, 0.35);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: flex-end;
}

.mobile-sheet-inner {
  width: min(82vw, 340px);
  height: 100%;
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.mobile-close {
  align-self: flex-end;
  color: var(--ink);
  padding: 8px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.mobile-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 10px;
  border-radius: 10px;
}

.mobile-links a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 72px;
  text-align: center;
  background:
    radial-gradient(900px 460px at 50% -8%, var(--bg-tint), transparent 70%),
    var(--bg);
}

.hero .orb-primary {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -80px;
  opacity: 0.5;
}

.hero .orb-teal {
  width: 360px;
  height: 360px;
  top: 60px;
  right: -60px;
  opacity: 0.45;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}

.hero-badge::before {
  content: "✦";
  color: var(--teal);
}

.hero .vh1 {
  margin: 0 auto;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 620px;
  margin: 22px auto 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions .btn-primary {
  padding: 15px 28px;
  font-size: 1rem;
}

.hero-actions .btn-ghost {
  padding: 15px 24px;
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--ink-3);
  font-weight: 500;
}

.hero-trust span:not(.trust-dot) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust span:not(.trust-dot)::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
}

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* hero demo (email mockup) */
.hero-demo {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 52px auto 0;
}

.mockup-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 12px;
}

.email-card {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  overflow: hidden;
}

.email-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.email-from {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.email-email {
  font-size: 0.78rem;
  color: var(--ink-4);
  margin-top: 1px;
}

.email-time {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

.email-subject {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 16px 0 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.email-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-2);
  white-space: pre-line;
}

.email-body .em {
  -webkit-text-fill-color: var(--primary);
  font-weight: 600;
}

.typing-dots {
  display: inline-flex;
  gap: 5px;
  padding: 6px 0;
}

.typing-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
  animation: typing 1.2s infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.status-text {
  font-size: 0.82rem;
  color: var(--ink-2);
  font-weight: 500;
  flex: 1;
}

.status-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-4);
}

.replay-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px auto 0;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-3);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.replay-btn:hover {
  color: var(--primary);
  border-color: var(--primary-border);
}

.replay-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.replay-btn:disabled:hover {
  color: var(--ink-3);
  border-color: var(--border);
}

/* animated demo states */
.status-bar.is-typing .status-dot {
  background: #f5b301;
  box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.16);
  animation: statusPulse 1.1s infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

.email-card {
  transition: box-shadow var(--dur);
}

.email-card.is-typing {
  box-shadow: var(--shadow-md);
}

.email-card.is-sent .email-body {
  animation: emailReveal 0.45s var(--ease-out);
}

@keyframes emailReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Ticker
   ========================================================= */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker {
  display: inline-flex;
  gap: 44px;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
}

.ticker-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 44px;
}

.ticker-item::after {
  content: "•";
  color: var(--border-strong);
}

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

/* =========================================================
   Stats
   ========================================================= */
.stats-section {
  padding: clamp(56px, 8vw, 100px) 0;
}

.stats {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.5;
}

/* =========================================================
   Steps (how it works)
   ========================================================= */
.how-section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.how-section>.section-wrap>.eyebrow,
.how-section>.section-wrap>.vh2 {
  display: block;
  text-align: center;
}

.how-section .vh2 {
  margin-top: 4px;
}

.how-section .section-sub {
  margin: 18px auto 52px;
  text-align: center;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.step-icon i {
  width: 20px;
  height: 20px;
}

.step-n {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-4);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-3);
}

/* =========================================================
   Bento (features)
   ========================================================= */
#features {
  padding: clamp(64px, 9vw, 120px) 0;
}

#features>.section-wrap>.eyebrow,
#features>.section-wrap>.vh2 {
  display: block;
  text-align: center;
}

#features .vh2 {
  margin: 4px 0 52px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur);
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), var(--primary-soft), transparent 60%);
  transition: opacity var(--dur);
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card>* {
  position: relative;
  z-index: 1;
}

.bento-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.bento-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 10px;
}

.bento-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-3);
}

.timer-visual {
  margin-top: 18px;
}

.timer-bar {
  height: 8px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.timer-fill {
  height: 100%;
  width: 18%;
  background: var(--grad-primary);
  border-radius: var(--radius-pill);
  animation: fill 3s var(--ease-out) infinite;
}

@keyframes fill {
  0% {
    width: 6%;
  }

  70% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

.timer-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-4);
  margin-top: 8px;
  display: inline-block;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

/* =========================================================
   Testimonial
   ========================================================= */
.testimonial-section {
  padding: clamp(56px, 8vw, 100px) 0;
}

.testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-inner::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 9rem;
  color: var(--primary-soft);
  line-height: 1;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.testimonial-quote .em {
  font-weight: 700;
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.t-name {
  font-weight: 700;
  color: var(--ink);
}

.t-title {
  font-size: 0.85rem;
  color: var(--ink-3);
}

.t-stars {
  color: #f5b301;
  letter-spacing: 2px;
  margin-left: 6px;
}

/* =========================================================
   Products
   ========================================================= */
#products {
  padding: clamp(64px, 9vw, 120px) 0;
}

#products>.section-wrap>.eyebrow,
#products>.section-wrap>.vh2 {
  display: block;
  text-align: center;
}

#products .vh2 {
  margin-top: 4px;
}

#products .section-sub {
  margin: 18px auto 52px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur);
}

.product-card:not(.is-soon):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.p-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.p-ind {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-3);
  margin-top: 4px;
}

.p-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: var(--radius-xs);
  padding: 3px 9px;
}

.p-badge.live {
  background: var(--primary);
  color: #fff;
}

.p-badge.soon {
  background: transparent;
  border: 1px solid currentColor;
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.pricing-section .orb-primary {
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.18;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pricing-inner>.eyebrow,
.pricing-inner>.vh2 {
  display: block;
}

.pricing-inner .vh2 {
  margin-top: 4px;
}

.pricing-inner>.section-sub {
  margin: 18px auto 44px;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
}

.price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 4rem;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.price-tag sup {
  font-size: 1.6rem;
  vertical-align: super;
  margin-right: 2px;
  color: var(--ink-3);
}

.price-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0;
}

.price-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-3);
  margin: 12px 0 28px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.45;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.check-icon i {
  width: 11px;
  height: 11px;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--primary);
  padding: 15px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-primary);
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.pricing-cta:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
}

.pricing-fine {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-4);
  margin-top: 16px;
  line-height: 1.5;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.faq-section>.section-wrap>.eyebrow,
.faq-section>.section-wrap>.vh2 {
  display: block;
  text-align: center;
}

.faq-section .vh2 {
  margin: 4px 0 44px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
}

.faq-item.is-open {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.faq-q .ic {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform var(--dur);
  flex-shrink: 0;
}

.faq-item.is-open .faq-q .ic {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease-out);
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ink-3);
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(56px, 8vw, 100px) 24px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 6vw, 80px);
}

.final-cta .orb-teal {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -80px;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.final-cta .vh2 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.final-cta .vh2 em,
.final-cta .vh2 .em {
  -webkit-text-fill-color: #fff;
  color: #fff;
  background: none;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.final-cta p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  margin: 18px auto 32px;
  max-width: 520px;
}

.final-cta .btn-primary {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  padding: 15px 30px;
  font-size: 1.02rem;
}

.final-cta .btn-primary:hover {
  background: #fff;
  color: var(--primary-deep);
}

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 48px 24px 40px;
}

.footer-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--ink-3);
  font-weight: 500;
  transition: color var(--dur-fast);
}

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

.footer-copy {
  font-size: 0.82rem;
  color: var(--ink-4);
  text-align: left;
}

/* =========================================================
   Responsive
   ========================================================= */

/* Tablet — keep multi-column where it still reads well */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .steps-track { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-login {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    padding: 56px 20px 56px;
  }

  .hero-demo {
    margin-top: 40px;
  }

  .announce {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .bento-card {
    grid-column: span 12 !important;
  }
}

/* Phone */
@media (max-width: 600px) {
  .section-wrap { padding: 0 18px; }
  .nav-inner { padding: 0 16px; }

  .hero { padding: 44px 16px 48px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { flex: 1; justify-content: center; padding: 14px 18px; }

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

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

  .pricing-card {
    padding: 28px 20px;
  }
  .price-tag { font-size: 3.2rem; }

  .testimonial-quote { font-size: 1.25rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* Small phone */
@media (max-width: 400px) {
  .hero-badge { font-size: 0.72rem; }
  .price-tag { font-size: 2.8rem; }
  .announce-pill { display: none; }
}