@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0a0a0c;
  color: #f5f5f4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }
::selection { background: rgba(245,158,11,.3); color: #fff; }

/* ─── Accessibility ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  z-index: 10000;
  padding: .65rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
  background: var(--amber); color: #0a0a0c;
  font-weight: 700; font-size: .8125rem;
}
.skip-link:focus { left: 0; outline: 2px solid var(--amber-light); outline-offset: 2px; }
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible, .form-group input:focus-visible, .form-group select:focus-visible, .form-group textarea:focus-visible {
  outline-offset: 3px;
}
#main-content:focus { outline: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Scroll reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --bg:           #0a0a0c;
  --bg-2:         #111114;
  --bg-3:         #18181b;
  --surface:      #131316;
  --surface-2:    #1c1c20;
  --fg:           #f5f5f4;
  --fg-2:         #d6d3d1;
  --muted:        #a8a29e;
  --muted-2:      #78716c;
  --border:       rgba(255,255,255,.08);
  --border-2:     rgba(255,255,255,.14);
  --amber:        #f59e0b;
  --amber-light:  #fbbf24;
  --amber-dark:   #d97706;
  --amber-bg:     rgba(245,158,11,.08);
  --amber-border: rgba(245,158,11,.2);
  /* Per-product brand colors — pulled directly from each product's globals.css.
     Each gets a `-light` variant tuned for legibility on the dark Roffik bg. */
  --salesthumb:        oklch(0.69 0.145 236);              /* SalesThumb brand sky-blue */
  --salesthumb-light:  oklch(0.78 0.13 236);
  --hubwho:            oklch(0.55 0.22 260);               /* HubWho brand indigo-blue */
  --hubwho-light:      oklch(0.72 0.2 260);
  --hubwho-accent:     oklch(0.7 0.18 200);                /* HubWho cyan accent */
  --aviationalley:     oklch(0.38 0.13 258);               /* AviationAlley brand navy */
  --aviationalley-light: oklch(0.68 0.14 258);             /* lighter for dark-bg legibility */
  --vizme:             oklch(0.65 0.13 200);               /* Vizme brand teal-cyan */
  --vizme-light:       oklch(0.78 0.13 200);
  --serif:        'Instrument Serif', Georgia, serif;
  --radius:       14px;
  --radius-sm:    10px;
  --max-w:        1180px;
  --shadow-glow:  0 0 50px rgba(245,158,11,.15);
}

/* ─── Background grain ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none; z-index: 0; opacity: .5;
}
body > * { position: relative; z-index: 1; }

/* ─── Layout ─────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.5rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; line-height: 1;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--amber); color: #0a0a0c;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 4px 16px rgba(245,158,11,.25);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 24px rgba(245,158,11,.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: rgba(255,255,255,.04); color: var(--fg);
  border-color: var(--border-2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); }
.btn-ghost { color: var(--muted); background: transparent; }
.btn-ghost:hover { color: var(--fg); background: rgba(255,255,255,.04); }
.btn-lg { padding: .95rem 2.25rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8125rem; }
.btn svg { flex-shrink: 0; }

/* ─── Badge ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .9rem; border-radius: 99px;
  font-size: .75rem; font-weight: 500; letter-spacing: .02em; line-height: 1;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--fg-2);
  backdrop-filter: blur(8px);
}
.badge-amber {
  background: var(--amber-bg); color: var(--amber-light);
  border-color: var(--amber-border);
}
.badge-live {
  background: rgba(34,197,94,.1); color: #4ade80;
  border-color: rgba(34,197,94,.25);
}
.badge-soon {
  background: rgba(255,255,255,.04); color: var(--muted);
  border-color: var(--border);
}
.badge-dot::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: inline-block;
  box-shadow: 0 0 8px currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ─── Navbar ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 0 1.5rem;
  background: transparent;
}
.nav-inner {
  max-width: var(--max-w); margin-inline: auto;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 700; font-size: 1.0625rem; letter-spacing: -.02em;
  color: var(--fg);
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .875rem; color: #0a0a0c;
  box-shadow: 0 0 0 1px rgba(245,158,11,.3), 0 4px 12px rgba(245,158,11,.3);
}
.nav-links { display: flex; align-items: center; }
.nav-links a {
  padding: .5rem 1rem;
  font-size: .875rem; font-weight: 500; color: var(--muted);
  transition: color .15s; border-radius: var(--radius-sm);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--amber-light); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.hamburger {
  display: none; width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--fg);
  border: 1px solid var(--border);
}
.hamburger:hover { background: rgba(255,255,255,.04); }
.hamburger svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }

/* Mobile menu */
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 200; }
.mobile-overlay.open { display: block; }
.mobile-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); }
.mobile-drawer {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(310px, 88vw); background: var(--bg-2);
  border-left: 1px solid var(--border);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem;
}
.drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.drawer-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--muted);
}
.drawer-close:hover { background: rgba(255,255,255,.04); color: var(--fg); }
.drawer-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.drawer-nav { display: flex; flex-direction: column; gap: 2px; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 1rem; }
.drawer-nav a {
  display: block; padding: .8rem 1rem; border-radius: var(--radius-sm);
  font-size: .9375rem; font-weight: 500; color: var(--muted);
  transition: all .15s;
}
.drawer-nav a:hover, .drawer-nav a.active { color: var(--amber-light); background: var(--amber-bg); }
.drawer-actions { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.drawer-actions .btn { justify-content: center; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 5rem 0 2rem; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: .5;
}
.footer-inner { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand-desc {
  font-size: .9375rem; color: var(--muted); line-height: 1.75;
  margin-top: 1rem; max-width: 320px;
}
.footer-col h4 {
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { font-size: .9rem; color: var(--fg-2); transition: color .15s; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: .8125rem; color: var(--muted-2); }
.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a { font-size: .8125rem; color: var(--muted-2); transition: color .15s; }
.footer-legal a:hover { color: var(--fg-2); }

/* ─── Section helpers ────────────────────────────────────────────── */
.section { padding: 7rem 0; position: relative; }
.section-sm { padding: 5rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--amber);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.035em; color: var(--fg);
}
.section-title em {
  font-family: var(--serif);
  font-weight: 400; font-style: italic;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
}
.section-sub {
  color: var(--muted); font-size: 1.0625rem; line-height: 1.75;
  margin-top: 1.25rem; max-width: 580px;
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header .section-sub { margin-inline: auto; }
.bg-wash { background: var(--bg-2); }
.bg-wash-border { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; text-align: center;
  padding: 8rem 0 6rem; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-glow::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background:
    radial-gradient(ellipse at center, rgba(245,158,11,.18) 0%, rgba(245,158,11,.06) 30%, transparent 60%);
  filter: blur(20px);
}
.hero-glow::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.4), transparent);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 2rem; }
.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -.045em;
  color: var(--fg); margin-bottom: 1.75rem;
}
.hero h1 em {
  font-family: var(--serif);
  font-weight: 400; font-style: italic;
  background: linear-gradient(135deg, #fcd34d, var(--amber), var(--amber-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.025em;
}
.hero-sub {
  font-size: 1.1875rem; color: var(--muted);
  max-width: 580px; margin: 0 auto 3rem; line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-social-proof { margin-top: 4.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-social-proof p {
  font-size: .75rem; color: var(--muted-2); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
}
.trust-badges { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; opacity: .7; }
.trust-badge { font-size: .8125rem; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.trust-badge svg { width: 14px; height: 14px; stroke: var(--amber); stroke-width: 2; fill: none; }

/* ─── Product cards ──────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.product-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .product-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .product-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 960px) { .product-grid-3 .product-card { padding: 2rem; } }

/* Four-up grid for the four-product homepage. Breakpoints:
   <640px  → 1 column, <1024px → 2 columns, ≥1024px → 4 columns side-by-side. */
.product-grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .product-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .product-grid-4 .product-card { padding: 1.5rem; } }
@media (min-width: 1024px) { .product-grid-4 .card-desc { font-size: .875rem; } }
.product-card {
  display: block; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity .3s;
}
.product-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,158,11,.05), transparent 70%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.product-card:hover { border-color: var(--border-2); transform: translateY(-4px); background: var(--surface-2); }
.product-card:hover::before, .product-card:hover::after { opacity: 1; }
.product-card:hover .card-arrow { gap: .75rem; color: var(--amber-light); }
.card-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem;
  border: 1px solid var(--border-2);
}
/* Per-product icon containers — when used with an <svg> child the gradient bg
   shows through and the stroke matches the brand. When used with an <img> child
   (the actual product favicon), the image fills the container and the gradient
   becomes a fallback for the brief moment before the image loads. */
.salesthumb-icon { background: linear-gradient(135deg, oklch(0.69 0.145 236 / 0.25), oklch(0.55 0.13 236 / 0.12)); overflow: hidden; box-shadow: 0 0 0 1px oklch(0.69 0.145 236 / 0.45), 0 0 50px oklch(0.69 0.145 236 / 0.85), 0 0 120px oklch(0.69 0.145 236 / 0.55); }
.salesthumb-icon svg { stroke: var(--salesthumb-light); }
.aviationalley-icon { background: linear-gradient(135deg, oklch(0.38 0.13 258 / 0.28), oklch(0.5 0.13 258 / 0.13)); overflow: hidden; box-shadow: 0 0 0 1px oklch(0.68 0.14 258 / 0.45), 0 0 50px oklch(0.68 0.14 258 / 0.85), 0 0 120px oklch(0.68 0.14 258 / 0.55); }
.aviationalley-icon svg { stroke: var(--aviationalley-light); }
.hubwho-icon { background: linear-gradient(135deg, oklch(0.55 0.22 260 / 0.26), oklch(0.7 0.18 200 / 0.14)); overflow: hidden; box-shadow: 0 0 0 1px oklch(0.55 0.22 260 / 0.45), 0 0 50px oklch(0.55 0.22 260 / 0.85), 0 0 120px oklch(0.55 0.22 260 / 0.55); }
.hubwho-icon svg { stroke: var(--hubwho-light); }
.vizme-icon { background: linear-gradient(135deg, oklch(0.55 0.13 200 / 0.26), oklch(0.72 0.14 195 / 0.13)); overflow: hidden; box-shadow: 0 0 0 1px oklch(0.65 0.13 200 / 0.45), 0 0 50px oklch(0.65 0.13 200 / 0.85), 0 0 120px oklch(0.65 0.13 200 / 0.55); }
.vizme-icon svg { stroke: var(--vizme-light); }

/* When a product container holds the actual product favicon as <img>, fill the
   container edge-to-edge — the favicon already carries the brand color. */
.salesthumb-icon img,
.aviationalley-icon img,
.hubwho-icon img,
.vizme-icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: inherit;
}
.card-icon-wrap svg { width: 26px; height: 26px; stroke-width: 1.75; fill: none; }
.card-header { display: flex; align-items: center; gap: .875rem; margin-bottom: .625rem; }
.card-header h3 { font-size: 1.375rem; font-weight: 700; letter-spacing: -.02em; color: var(--fg); }
.card-tagline { color: var(--fg-2); font-size: 1rem; font-weight: 500; margin-bottom: .875rem; }
.card-desc { font-size: .9375rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.card-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--fg);
  transition: all .2s;
}
.card-arrow svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* ─── Values ─────────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.value-icon svg { width: 20px; height: 20px; stroke: var(--amber); stroke-width: 2; fill: none; }
.value-item h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: .5rem; letter-spacing: -.015em; color: var(--fg); }
.value-item p { font-size: .9375rem; color: var(--muted); line-height: 1.75; }

/* ─── CTA section ────────────────────────────────────────────────── */
.cta-section { text-align: center; }
.cta-box {
  background:
    linear-gradient(135deg, rgba(245,158,11,.04), transparent),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 240px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.cta-box::after {
  content: ''; position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,.1), transparent 70%);
  pointer-events: none;
}
.cta-box-inner { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -.035em; margin-bottom: 1rem; color: var(--fg); }
.cta-box h2 em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--amber-light); }
.cta-box p { color: var(--muted); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1.0625rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Page hero (inner pages) ────────────────────────────────────── */
.page-hero {
  text-align: center; padding: 7rem 0 5rem;
  border-bottom: 1px solid var(--border); background: var(--bg-2);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(245,158,11,.12), transparent 60%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.4), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800; letter-spacing: -.035em; margin-bottom: 1rem;
  line-height: 1.1; color: var(--fg);
}
.page-hero h1 em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--amber-light); }
.page-hero p { color: var(--muted); font-size: 1.125rem; max-width: 560px; margin-inline: auto; line-height: 1.7; }

/* ─── Product detail hero ────────────────────────────────────────── */
.product-hero {
  text-align: center; padding: 6rem 0 4rem; position: relative; overflow: hidden;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
}
.product-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, var(--hero-tint, rgba(245,158,11,.1)), transparent 60%);
}
.product-hero-inner { position: relative; z-index: 1; }
.back-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .875rem; color: var(--muted); margin-bottom: 2.5rem;
  transition: color .15s;
}
.back-link:hover { color: var(--fg); }
.back-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.product-hero-icon {
  width: 76px; height: 76px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--border-2);
  background: var(--surface);
}
.product-hero-icon svg { width: 36px; height: 36px; stroke-width: 1.75; fill: none; }
.product-hero-title { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.product-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.04em; color: var(--fg); }
.product-tagline { font-size: 1.1875rem; color: var(--fg-2); font-weight: 500; margin-bottom: 1rem; }
.product-desc { font-size: 1.0625rem; color: var(--muted); max-width: 560px; margin: 0 auto 3rem; line-height: 1.75; }

/* ─── Feature cards ──────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.875rem;
  transition: all .25s;
}
.feature-card:hover { border-color: var(--border-2); background: var(--surface-2); transform: translateY(-2px); }
.feature-card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  border: 1px solid var(--border-2);
}
.feature-card-icon svg { width: 21px; height: 21px; stroke-width: 2; fill: none; }
.salesthumb-fi { background: oklch(0.69 0.145 236 / 0.1); overflow: hidden; }
.salesthumb-fi svg { stroke: var(--salesthumb-light); }
.aviationalley-fi { background: oklch(0.38 0.13 258 / 0.13); overflow: hidden; }
.aviationalley-fi svg { stroke: var(--aviationalley-light); }
.hubwho-fi { background: oklch(0.55 0.22 260 / 0.1); overflow: hidden; }
.hubwho-fi svg { stroke: var(--hubwho-light); }
.vizme-fi { background: oklch(0.55 0.13 200 / 0.12); overflow: hidden; }
.vizme-fi svg { stroke: var(--vizme-light); }
.salesthumb-fi img, .aviationalley-fi img, .hubwho-fi img, .vizme-fi img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit;
}
.feature-card h3 { font-size: 1rem; font-weight: 600; letter-spacing: -.015em; margin-bottom: .5rem; color: var(--fg); }
.feature-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ─── Products page ──────────────────────────────────────────────── */
.product-showcase {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 1.5rem; background: var(--surface);
  transition: border-color .25s, transform .25s;
}
.product-showcase:hover { border-color: var(--border-2); }
.product-showcase-inner { display: grid; grid-template-columns: 1fr 1fr; }
.showcase-left { padding: 3rem 3.25rem; }
.showcase-right {
  padding: 3rem 3.25rem;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
}
.showcase-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem; border: 1px solid var(--border-2);
}
.showcase-icon svg { width: 28px; height: 28px; stroke-width: 1.75; fill: none; }
.showcase-header { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap; }
.showcase-header h2 { font-size: 1.875rem; font-weight: 800; letter-spacing: -.03em; color: var(--fg); }
.showcase-tagline { font-size: 1.125rem; color: var(--fg-2); font-weight: 500; margin-bottom: 1rem; }
.showcase-desc { color: var(--muted); line-height: 1.75; margin-bottom: 2.25rem; font-size: .9375rem; }
/* Screenshot variant for products page */
.showcase-screenshot {
  padding: 1.5rem !important;
  background: var(--bg) !important;
  display: flex; align-items: center; justify-content: center;
}
.showcase-browser {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
}
.showcase-browser .browser-body img {
  width: 100%; display: block;
}

.showcase-right h4 {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.5rem;
}
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; align-items: center; gap: .875rem; font-size: .9375rem; color: var(--fg-2); }
.check-list svg {
  width: 18px; height: 18px; stroke: var(--amber); stroke-width: 2.5;
  fill: none; flex-shrink: 0;
}

/* ─── Pricing ────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 920px; margin-inline: auto; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem; position: relative;
  transition: all .25s;
}
.pricing-card:hover { border-color: var(--border-2); }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(245,158,11,.04), transparent), var(--surface);
  border-color: var(--amber-border);
  box-shadow: 0 0 0 1px rgba(245,158,11,.1), 0 8px 32px rgba(245,158,11,.08);
  transform: scale(1.03);
}
.popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #0a0a0c;
  font-size: .6875rem; font-weight: 700; padding: .35rem 1rem;
  border-radius: 99px; white-space: nowrap; letter-spacing: .04em;
}
.pricing-card h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .375rem; color: var(--fg); }
.pricing-card .plan-desc { font-size: .8125rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.price-wrap { display: flex; align-items: baseline; gap: .25rem; margin-bottom: 1.75rem; }
.price-amount { font-size: 3rem; font-weight: 800; letter-spacing: -.04em; color: var(--fg); }
.price-period { font-size: .9rem; color: var(--muted); }
.pricing-btn { width: 100%; margin-bottom: 2rem; }
.price-features { display: flex; flex-direction: column; gap: .8rem; }
.price-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--fg-2); }
.price-features svg { width: 16px; height: 16px; stroke: var(--amber); stroke-width: 2.5; fill: none; flex-shrink: 0; margin-top: 2px; }
.pricing-soon {
  border: 1px dashed var(--border-2); border-radius: var(--radius);
  padding: 3.5rem 2rem; text-align: center; background: var(--surface);
}
.pricing-soon p { color: var(--muted); margin-bottom: 1.5rem; font-size: .9375rem; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-wrap { max-width: 700px; margin-inline: auto; }
.faq-item { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .625rem; color: var(--fg); }
.faq-item p { font-size: .9375rem; color: var(--muted); line-height: 1.75; }

/* ─── About ──────────────────────────────────────────────────────── */
.about-lead { max-width: 800px; margin-bottom: 6rem; }
.about-lead h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 1.5rem; color: var(--fg);
}
.about-lead h1 em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--amber-light); }
.about-lead p { font-size: 1.1875rem; color: var(--muted); line-height: 1.75; }
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; margin-bottom: 6rem; }
.about-body p { font-size: .9375rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 820px; margin-inline: auto; }
.about-values h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .5rem; color: var(--fg); }
.about-values p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ─── Blog ───────────────────────────────────────────────────────── */
.featured-post {
  display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.75rem 3rem; margin-bottom: 1.5rem; transition: all .25s;
}
.featured-post:hover { border-color: var(--border-2); background: var(--surface-2); }
.featured-post:hover h2 { color: var(--amber-light); }
.post-cat {
  display: inline-block; padding: .3rem .85rem; border-radius: 99px;
  font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--fg-2);
}
.cat-violet  { background: rgba(167,139,250,.08); border-color: rgba(167,139,250,.2); color: #c4b5fd; }
.cat-amber   { background: var(--amber-bg); border-color: var(--amber-border); color: var(--amber-light); }
.cat-sky     { background: rgba(56,189,248,.08); border-color: rgba(56,189,248,.2); color: #7dd3fc; }
.cat-emerald { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.2); color: #86efac; }
.featured-post h2 {
  font-size: 1.875rem; font-weight: 700; letter-spacing: -.025em;
  margin-bottom: .875rem; line-height: 1.25; transition: color .15s; color: var(--fg);
}
.post-excerpt { font-size: .9375rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.post-meta { display: flex; align-items: center; gap: .625rem; font-size: .8125rem; color: var(--muted-2); }
.post-arrow {
  flex-shrink: 0; display: flex; align-items: center; gap: .625rem;
  font-size: .9rem; font-weight: 600; color: var(--amber);
  white-space: nowrap; transition: gap .15s;
}
.featured-post:hover .post-arrow { gap: .875rem; }
.post-arrow svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.blog-card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; transition: all .25s;
}
.blog-card:hover { border-color: var(--border-2); background: var(--surface-2); transform: translateY(-2px); }
.blog-card:hover h3 { color: var(--amber-light); }
.blog-card h3 {
  font-size: 1.125rem; font-weight: 600; letter-spacing: -.015em;
  line-height: 1.4; margin: .875rem 0 .75rem; transition: color .15s; color: var(--fg);
}
.blog-card .post-excerpt { font-size: .875rem; margin-bottom: 1rem; }

/* ─── Contact ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; max-width: 1000px; margin-inline: auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .8125rem; font-weight: 500; color: var(--fg-2); letter-spacing: .01em; }
.form-group input, .form-group select, .form-group textarea {
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9375rem; background: var(--surface); color: var(--fg);
  transition: border-color .15s, box-shadow .15s, background .15s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--amber); background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; height: 3rem; margin-top: .5rem; }
.contact-reasons { display: flex; flex-direction: column; gap: 1rem; }
.reason-card {
  display: flex; gap: 1.125rem; padding: 1.25rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color .2s, background .2s;
}
.reason-card:hover { border-color: var(--border-2); background: var(--surface-2); }
.reason-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--amber-bg); border: 1px solid var(--amber-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reason-icon svg { width: 18px; height: 18px; stroke: var(--amber); stroke-width: 2; fill: none; }
.reason-card h3 { font-size: .9375rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .375rem; color: var(--fg); }
.reason-card p { font-size: .8375rem; color: var(--muted); line-height: 1.6; }
.contact-email-note { margin-top: 1.5rem; font-size: .9rem; color: var(--muted); }
.contact-email-note a { color: var(--amber-light); font-weight: 500; }
.contact-email-note a:hover { text-decoration: underline; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 1.5rem; }
.alert-success { background: rgba(34,197,94,.1); color: #86efac; border: 1px solid rgba(34,197,94,.25); }

/* ─── Info banner ────────────────────────────────────────────────── */
.info-banner {
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; text-align: center; margin-bottom: 1.5rem;
}
.banner-amber {
  background: var(--amber-bg); color: var(--amber-light);
  border: 1px solid var(--amber-border);
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .product-showcase-inner, .about-body { grid-template-columns: 1fr; }
  .showcase-right { border-left: none; border-top: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .featured-post { grid-template-columns: 1fr; padding: 2rem; }
  .post-arrow { display: none; }
  .section { padding: 5rem 0; }
}
@media (max-width: 640px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 5rem 0 4rem; }
  .hero h1 { font-size: 2.75rem; }
  .hero-social-proof { display: none; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .showcase-left, .showcase-right { padding: 2rem; }
}

/* ─── Navbar glass on scroll ────────────────────────────────────────── */
.site-header {
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 32px rgba(0,0,0,.5);
}

/* ─── Nav dropdown ───────────────────────────────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-dropdown-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .5rem 1rem;
  font-size: .875rem; font-weight: 500; color: var(--muted);
  transition: color .15s; border-radius: var(--radius-sm);
  text-decoration: none;
}
.nav-dropdown-btn:hover,
.nav-has-dropdown:hover .nav-dropdown-btn { color: var(--fg); }
.nav-dropdown-btn.active { color: var(--amber-light); }
.dropdown-chevron { flex-shrink: 0; transition: transform .2s cubic-bezier(.4,0,.2,1); }
.nav-has-dropdown:hover .dropdown-chevron,
.nav-has-dropdown:focus-within .dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 272px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: .5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 4px 20px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .17s, transform .17s, visibility 0s .17s;
  z-index: 200;
}
.nav-dropdown::before {
  /* bridge gap between trigger and panel */
  content: ''; position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown::after {
  /* notch arrow */
  content: ''; position: absolute;
  top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--bg-2);
  border-left: 1px solid var(--border-2); border-top: 1px solid var(--border-2);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .17s, transform .17s, visibility 0s 0s;
}

.dp-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .625rem .75rem; border-radius: calc(var(--radius) - 6px);
  transition: background .15s; text-decoration: none;
}
.dp-item:hover { background: rgba(255,255,255,.05); }
.dp-item:hover .dp-name { color: var(--amber-light); }
.dp-icon {
  width: 34px; height: 34px; border-radius: 9px;
  flex-shrink: 0; overflow: hidden; border: 1px solid var(--border);
}
.dp-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dp-name { font-size: .875rem; font-weight: 600; color: var(--fg); letter-spacing: -.01em; line-height: 1.2; transition: color .15s; }
.dp-tagline { font-size: .75rem; color: var(--muted); margin-top: .1rem; line-height: 1.3; }
.dp-footer { margin-top: .375rem; padding-top: .375rem; border-top: 1px solid var(--border); }
.dp-footer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem .75rem; font-size: .8rem; font-weight: 600; color: var(--amber-light);
  border-radius: calc(var(--radius) - 6px); transition: background .15s; text-decoration: none;
}
.dp-footer a:hover { background: var(--amber-bg); }
.dp-footer a svg { flex-shrink: 0; }

/* ─── Mobile drawer products accordion ──────────────────────────────── */
.drawer-products-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm);
  font-size: .9375rem; font-weight: 500; color: var(--muted);
  transition: color .15s, background .15s; text-align: left;
}
.drawer-products-toggle:hover { color: var(--amber-light); background: var(--amber-bg); }
.drawer-chevron { flex-shrink: 0; transition: transform .25s; }
.drawer-products-toggle[aria-expanded="true"] .drawer-chevron { transform: rotate(180deg); }
.drawer-products-toggle[aria-expanded="true"] { color: var(--amber-light); }
.drawer-products-list {
  display: none; flex-direction: column; gap: 2px;
  padding: .25rem 0 .5rem .875rem; margin-top: 2px;
}
.drawer-products-list.open { display: flex; }
.drawer-products-list a {
  display: block; padding: .65rem 1rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--muted); transition: all .15s;
}
.drawer-products-list a:hover { color: var(--amber-light); background: var(--amber-bg); }
.drawer-all-products { color: var(--amber-light) !important; font-size: .8rem !important; opacity: .85; }
.drawer-all-products:hover { opacity: 1 !important; }

/* ─── Industry bar ────────────────────────────────────────────────────── */
.industry-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: .875rem 0; background: var(--surface); overflow: hidden;
}
.industry-bar-inner {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  font-size: .8125rem; font-weight: 500; color: var(--muted-2);
  justify-content: center;
}
.industry-bar-inner a {
  color: var(--fg-2); transition: color .15s;
  padding: .2rem .4rem; border-radius: 5px;
}
.industry-bar-inner a:hover { color: var(--amber-light); }
.industry-bar .divider { color: var(--border-2); user-select: none; }

/* ─── Card features list (homepage product cards) ────────────────────── */
.card-features {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.75rem; list-style: none;
}
.card-features li {
  display: flex; align-items: center; gap: .625rem;
  font-size: .8375rem; color: var(--fg-2); line-height: 1.4;
}
.card-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}

/* ─── Problem grid (product pages) ───────────────────────────────────── */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.problem-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color .2s;
}
.problem-item:hover { border-color: var(--border-2); }
.problem-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .625rem;
}
.problem-item p { font-size: .9375rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ─── Product screenshot showcase ────────────────────────────────────── */
.screenshot-section .section-header { margin-bottom: 3rem; }
.screenshot-browser {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  max-width: 1100px;
  margin-inline: auto;
}
.browser-chrome {
  background: var(--surface-2);
  padding: .65rem 1.25rem;
  display: flex; align-items: center; gap: .875rem;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: .35rem; }
.browser-dots span {
  width: 11px; height: 11px; border-radius: 50%; display: block;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; max-width: 300px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .275rem .875rem;
  font-size: .75rem; color: var(--muted-2);
  font-family: ui-monospace, 'SF Mono', monospace;
  margin-inline: auto; text-align: center;
}
.browser-body img {
  width: 100%; display: block;
  border: none;
}

/* ─── Roadmap ─────────────────────────────────────────────────────────── */
.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (max-width: 820px) { .roadmap-phases { grid-template-columns: 1fr; } }
.roadmap-phase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.875rem;
  position: relative;
}
.roadmap-phase.current {
  border-color: var(--amber-border);
  background: linear-gradient(180deg, rgba(245,158,11,.04), var(--surface));
}
.roadmap-phase.current::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: 99px 99px 0 0;
}
.phase-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 99px;
  margin-bottom: 1.25rem;
}
.phase-tag.now {
  background: var(--amber-bg); color: var(--amber-light);
  border: 1px solid var(--amber-border);
}
.phase-tag.now::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}
.phase-tag.next {
  background: rgba(255,255,255,.04); color: var(--fg-2);
  border: 1px solid var(--border);
}
.phase-tag.later {
  background: rgba(255,255,255,.02); color: var(--muted);
  border: 1px solid var(--border);
}
.roadmap-phase h3 {
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--fg); margin-bottom: 1.25rem;
}
.roadmap-items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.roadmap-items li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; color: var(--muted); line-height: 1.5;
}
.roadmap-items li::before {
  content: '';
  width: 16px; height: 16px; min-width: 16px; margin-top: 2px;
  border-radius: 50%; flex-shrink: 0;
  background: rgba(245,158,11,.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l2.5 2.5 5.5-5' stroke='%23f59e0b' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100%;
}
.roadmap-phase:not(.current) .roadmap-items li::before {
  background-color: rgba(255,255,255,.05);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='2.5' fill='%23a8a29e'/%3E%3C/svg%3E");
}
.roadmap-phase.future .roadmap-items li::before {
  background-color: rgba(255,255,255,.03);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='2' fill='%2378716c'/%3E%3C/svg%3E");
}

/* ─── How it works / Process steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.125rem;
  left: calc(33.333% - .75rem);
  right: calc(33.333% - .75rem);
  height: 1px;
  background: linear-gradient(90deg, var(--amber-border), rgba(245,158,11,.15), var(--amber-border));
  pointer-events: none;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.step-card:hover { border-color: var(--amber-border); }
.step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  color: var(--amber);
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 .6rem;
  color: var(--fg);
}
.step-card p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* ──────────────────────────────────────────────────────────────────────
   Screenshot Gallery — used on product pages below the showcase section
   ─────────────────────────────────────────────────────────────────── */
.ss-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.ss-card {
  margin: 0;
  background: var(--surface-2, #1c1c20);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2, .9, .3, 1), border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.ss-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .55);
}
.ss-card-frame {
  position: relative;
  background: #0a0a0d;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ss-card-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ss-card-caption {
  padding: 1rem 1.125rem 1.125rem;
}
.ss-card-caption strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -.015em;
  margin-bottom: .35rem;
}
.ss-card-caption p {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
html[data-theme="light"] .ss-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, .07);
}
html[data-theme="light"] .ss-card:hover {
  border-color: rgba(0, 0, 0, .14);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .15);
}
html[data-theme="light"] .ss-card-frame {
  background: #f5f5f7;
}
html[data-theme="light"] .ss-card-caption strong { color: #1a1a1a; }
html[data-theme="light"] .ss-card-caption p { color: #4a4a4a; }
@media (max-width: 640px) {
  .ss-gallery { grid-template-columns: 1fr; gap: 1rem; }
}
