/* ═══════════════════════════════════════════════════
   YottaGeek — styles.css
   Dark mode by default; [data-theme="light"] overrides.
   All colors are CSS variables — edit one place.
═══════════════════════════════════════════════════ */

/* ─── Colour tokens — DARK (default) ────────────── */
:root {
  --gold:      #c9a227;
  --gold-lt:   #e8c45a;
  --gold-dim:  rgba(201,162,39,.18);

  --black:     #07090d;
  --bg:        #0b0d13;
  --bg2:       #111420;
  --bg3:       #181c28;

  --border:    rgba(201,162,39,.18);
  --border-hi: rgba(201,162,39,.40);

  --text:      #d6dae8;
  --muted:     #7a8099;
  --subtle:    #4a5070;

  --blue:      #3d8bff;
  --green:     #35d07a;
  --red:       #ff4d4d;
  --purple:    #5533aa;

  --mono:  'Share Tech Mono', monospace;
  --head:  'Rajdhani', sans-serif;
  --body:  'Source Sans 3', sans-serif;

  /* section surface — semi-transparent so orbs bleed through */
  --surf:      rgba(11,13,19,.84);
  --surf2:     rgba(17,20,32,.86);
  --surf3:     rgba(24,28,40,.88);
  --nav-bg:    rgba(7,9,13,.92);
  --footer-bg: rgba(7,9,13,.96);
  --input-bg:  rgba(17,20,32,.92);

  --orb-a-clr: rgba(201,162,39,.18);
  --orb-b-clr: rgba(61,139,255,.13);
  --orb-c-clr: rgba(85,51,170,.11);
  --orb-d-clr: rgba(201,162,39,.09);
}

/* ─── Colour tokens — LIGHT ──────────────────────── */
[data-theme="light"] {
  --black:     #ffffff;
  --bg:        #f4f5fa;
  --bg2:       #eceef5;
  --bg3:       #e3e6f0;

  --border:    rgba(201,162,39,.28);
  --border-hi: rgba(201,162,39,.55);

  --text:      #1a1f2e;
  --muted:     #5a6275;
  --subtle:    #9aa0b5;

  --surf:      rgba(244,245,250,.88);
  --surf2:     rgba(236,238,245,.90);
  --surf3:     rgba(227,230,240,.92);
  --nav-bg:    rgba(255,255,255,.92);
  --footer-bg: rgba(240,241,248,.98);
  --input-bg:  rgba(236,238,245,.95);

  --orb-a-clr: rgba(201,162,39,.10);
  --orb-b-clr: rgba(61,139,255,.08);
  --orb-c-clr: rgba(85,51,170,.06);
  --orb-d-clr: rgba(201,162,39,.06);
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; }
body   {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Background Orbs ────────────────────────────── */
.bg-scene {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px); will-change: transform;
}
.orb1 { width:700px; height:700px; top:-200px; left:-150px; background: radial-gradient(circle, var(--orb-a-clr) 0%, transparent 65%); animation: o1 34s ease-in-out infinite alternate; }
.orb2 { width:600px; height:600px; top:20%;   right:-100px; background: radial-gradient(circle, var(--orb-b-clr) 0%, transparent 65%); animation: o2 26s ease-in-out infinite alternate; }
.orb3 { width:800px; height:500px; bottom:-150px; left:25%; background: radial-gradient(circle, var(--orb-c-clr) 0%, transparent 65%); animation: o3 40s ease-in-out infinite alternate; }
.orb4 { width:400px; height:400px; top:55%;   right:15%;  background: radial-gradient(circle, var(--orb-d-clr) 0%, transparent 65%); animation: o4 22s ease-in-out infinite alternate; }

@keyframes o1 { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(200px,150px) scale(1.1)} 100%{transform:translate(80px,280px) scale(.95)} }
@keyframes o2 { 0%{transform:translate(0,0)}           40%{transform:translate(-160px,180px) scale(1.12)} 100%{transform:translate(-40px,320px) scale(.9)} }
@keyframes o3 { 0%{transform:translate(0,0) scale(1)}  50%{transform:translate(-200px,-120px) scale(1.08)} 100%{transform:translate(120px,-220px) scale(.96)} }
@keyframes o4 { 0%{transform:translate(0,0)}           100%{transform:translate(-130px,-180px) scale(1.18)} }

.scanlines {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,.03) 3px, rgba(0,0,0,.03) 4px);
}
[data-theme="light"] .scanlines { opacity: .4; }

/* ─── Layout helpers ─────────────────────────────── */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section     { padding: 96px 0; position: relative; z-index: 2; }
.section-bg  { background: var(--surf); }
.section-bg2 { background: var(--surf2); }

.section-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--head); font-size: clamp(28px,4vw,44px);
  font-weight: 700; line-height: 1.15; color: var(--text);
}
.section-sub  { font-size: 17px; color: var(--muted); max-width: 560px; margin-top: 14px; line-height: 1.7; }
.divider      { width: 48px; height: 3px; background: var(--gold); margin: 20px 0 0; }
.center       { text-align: center; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 600; font-size: 15px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 28px; border-radius: 2px;
  cursor: pointer; border: none;
  transition: all .2s ease; position: relative; overflow: hidden;
}
.btn::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,.07); opacity:0; transition:opacity .2s; }
.btn:hover::after { opacity: 1; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-gold    { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(201,162,39,.35); }

.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: rgba(201,162,39,.09); transform: translateY(-1px); }

.btn-ghost   { background: rgba(128,128,128,.08); color: var(--text); border: 1px solid rgba(128,128,128,.18); }
.btn-ghost:hover { background: rgba(128,128,128,.14); }

/* ─── Topbar ─────────────────────────────────────── */
.topbar {
  position: relative; z-index: 10;
  background: rgba(201,162,39,.12);
  border-bottom: 1px solid rgba(201,162,39,.22);
  font-family: var(--mono); font-size: 12px;
  color: var(--gold); text-align: center; padding: 8px 16px; letter-spacing: .5px;
}
.topbar a { text-decoration: underline; margin-left: 8px; }

/* ─── Nav ────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; height: 64px;
  max-width: 1140px; margin: 0 auto; padding: 0 28px; gap: 0;
}
.nav-logo {
  font-family: var(--head); font-weight: 700; font-size: 22px;
  letter-spacing: 1px; color: var(--text);
  display: flex; align-items: center; gap: 10px; margin-right: auto;
}
.nav-logo .badge {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #000; font-weight: 700; flex-shrink: 0;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-family: var(--head); font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
  padding: 8px 13px; border-radius: 2px; transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 12px; }

/* Dark/Light toggle button */
.theme-toggle {
  margin-left: 16px; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(128,128,128,.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(201,162,39,.15); border-color: var(--gold); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden;
  padding: 80px 0 60px; z-index: 2;
  background: var(--surf);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--gold-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold-dim) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 30s linear infinite; opacity: .5;
}
@keyframes gridMove { 0%{background-position:0 0} 100%{background-position:60px 60px} }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 70% 70% at 60% 50%, transparent 0%, var(--bg) 100%);
}
[data-theme="light"] .hero-vignette {
  background: radial-gradient(ellipse 70% 70% at 60% 50%, transparent 0%, var(--bg) 90%);
}
.hero .container { position: relative; z-index: 3; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-eyebrow::before { content:''; display:inline-block; width:20px; height:1px; background:var(--gold); }

.hero h1 {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(34px,4.5vw,58px); line-height: 1.08;
  color: var(--text); margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-num   { font-family: var(--head); font-size: 28px; font-weight: 700; color: var(--text); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ─── Terminal window ────────────────────────────── */
.terminal-window {
  background: #0e1119; border: 1px solid rgba(201,162,39,.25); border-radius: 6px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03), 0 40px 80px rgba(0,0,0,.55);
}
[data-theme="light"] .terminal-window {
  background: #1a1f2e; box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.terminal-bar { background: #161a24; padding: 10px 16px; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(201,162,39,.12); }
.t-dot { width:10px; height:10px; border-radius:50%; }
.t-dot.r{background:#ff4d4d} .t-dot.y{background:#ffd12c} .t-dot.g{background:#35d07a}
.terminal-title { font-family:var(--mono); font-size:11px; color:var(--muted); margin-left:8px; letter-spacing:1px; }
.terminal-body  { padding:20px; font-family:var(--mono); font-size:12px; line-height:1.9; }
.t-comment{color:#4a5070} .t-key{color:var(--blue)} .t-val{color:var(--green)}
.t-warn{color:var(--gold)} .t-err{color:var(--red)}
.t-head { color:#fff; font-size:11px; letter-spacing:2px; border-bottom:1px solid rgba(255,255,255,.06); padding-bottom:6px; margin-bottom:10px; }
.t-bar  { display:flex; align-items:center; gap:8px; margin-top:14px; padding-top:12px; border-top:1px solid rgba(255,255,255,.05); }
.t-progress-track { flex:1; height:4px; background:#1e2535; border-radius:2px; overflow:hidden; }
.t-progress-fill  { height:100%; background:var(--gold); border-radius:2px; animation: scanbar 2.4s ease-in-out infinite alternate; }
@keyframes scanbar { from{width:40%} to{width:95%} }

.badge-corner {
  position:absolute; top:-12px; right:-12px;
  background:var(--red); color:#fff;
  font-family:var(--head); font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  padding:5px 12px; border-radius:2px; box-shadow:0 4px 20px rgba(255,77,77,.4);
}
.hero-visual { position: relative; }

/* GOP map */
.gop-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:3px; margin-top:12px; }
.gop-cell { aspect-ratio:1; border-radius:1px; font-size:7px; font-family:var(--mono); display:flex; align-items:center; justify-content:center; font-weight:700; }
.gop-I{background:var(--gold);color:#000} .gop-P{background:#2a5fa5;color:#fff}
.gop-B{background:#1a3d6e;color:#8bb8f0} .gop-X{background:var(--red);color:#fff}

/* ─── Trust bar ──────────────────────────────────── */
.trust-bar {
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background:var(--surf2); padding:24px 0; position:relative; z-index:2;
}
.trust-inner  { display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.trust-label  { font-family:var(--mono); font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--muted); white-space:nowrap; }
.trust-badges { display:flex; gap:28px; align-items:center; flex-wrap:wrap; }
.trust-badge  { font-family:var(--head); font-size:13px; font-weight:600; color:var(--subtle); letter-spacing:.5px; transition:color .2s; }
.trust-badge:hover { color:var(--muted); }

/* ─── Product cards ──────────────────────────────── */
.product-card {
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;
  padding:56px 48px; background:var(--surf2); border:1px solid var(--border);
  border-radius:4px; margin-bottom:32px; position:relative; overflow:hidden;
  transition:border-color .3s;
}
.product-card:hover { border-color:var(--border-hi); }
.product-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--gold),transparent); }
.product-tag {
  display:inline-block; font-family:var(--mono); font-size:10px; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold); border:1px solid rgba(201,162,39,.3);
  padding:4px 10px; border-radius:2px; margin-bottom:14px;
}
.product-name     { font-family:var(--head); font-size:clamp(26px,3vw,38px); font-weight:700; color:var(--text); line-height:1.1; margin-bottom:6px; }
.product-fullname { font-family:var(--mono); font-size:11px; color:var(--muted); letter-spacing:1px; margin-bottom:20px; }
.product-desc     { color:var(--muted); font-size:15.5px; line-height:1.75; margin-bottom:24px; }
.product-actions  { display:flex; gap:12px; flex-wrap:wrap; }

.feature-list { list-style:none; margin-bottom:30px; display:flex; flex-direction:column; gap:10px; }
.feature-list li { display:flex; align-items:flex-start; gap:10px; font-size:14.5px; color:var(--text); }
.feature-list li::before { content:'▸'; color:var(--gold); flex-shrink:0; margin-top:2px; }

/* ─── Mock screen ────────────────────────────────── */
.mock-screen { background:#0a0d14; border:1px solid rgba(255,255,255,.07); border-radius:6px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.45); }
[data-theme="light"] .mock-screen { background:#1a1f2e; }
.mock-titlebar { background:#111520; padding:8px 14px; display:flex; align-items:center; gap:6px; border-bottom:1px solid rgba(255,255,255,.05); }
.mock-dot { width:8px; height:8px; border-radius:50%; }
.mock-dot.r{background:#ff4d4d} .mock-dot.y{background:#ffd12c} .mock-dot.g{background:#35d07a}
.mock-titletext { font-family:var(--mono); font-size:10px; color:var(--muted); margin-left:6px; }
.mock-content { padding:16px; }
.mock-row { display:flex; gap:8px; margin-bottom:6px; align-items:center; }
.mock-bar-label { font-family:var(--mono); font-size:9px; color:var(--muted); width:80px; flex-shrink:0; }
.mock-bar-track { flex:1; height:10px; background:#1a1f2e; border-radius:1px; overflow:hidden; }
.mock-bar-fill  { height:100%; border-radius:1px; }
.mock-bar-val   { font-family:var(--mono); font-size:9px; color:var(--muted); width:36px; text-align:right; }
.mock-section-label { font-family:var(--mono); font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-top:14px; margin-bottom:8px; }
.mock-waveform  { height:36px; background:#111520; border-radius:2px; overflow:hidden; margin-top:4px; }

/* ─── Compare table ──────────────────────────────── */
.compare-table { width:100%; border-collapse:collapse; margin-top:48px; font-size:14.5px; }
.compare-table th { padding:14px 20px; text-align:left; font-family:var(--head); font-weight:700; letter-spacing:.5px; border-bottom:2px solid var(--border); color:var(--muted); font-size:13px; }
.compare-table th.ours { color:var(--gold); }
.compare-table td { padding:13px 20px; border-bottom:1px solid rgba(128,128,128,.07); vertical-align:middle; }
.compare-table tr:hover td { background:rgba(128,128,128,.04); }
.compare-table td:first-child { color:var(--text); font-weight:500; }
.compare-table td.ours { color:var(--gold); background:rgba(201,162,39,.05); }
.compare-table td.ours.yes::before { content:'✓ '; font-weight:700; }
.compare-table td.no  { color:var(--muted); }
.compare-table td.no::before  { content:'✗  '; }
.compare-table td.partial { color:var(--blue); }
.compare-table td.partial::before { content:'◐ '; }

/* ─── Pricing ────────────────────────────────────── */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }

.price-card {
  background:var(--surf2); border:1px solid var(--border);
  border-radius:4px; padding:36px 28px; position:relative; overflow:hidden;
  /* default: ready for fly-in animation */
  opacity:0; transform:translateX(60px);
  transition:border-color .2s, box-shadow .2s;
}
.price-card.featured {
  border-color:var(--gold);
  background:var(--surf3);
}
.price-card.featured::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-lt));
}
/* fly-in: triggered by JS adding .animate to the pricing section */
.pricing-grid.animate .price-card { animation:flyInRight .5s cubic-bezier(.22,.68,0,1.15) forwards; }
.pricing-grid.animate .price-card:nth-child(1) { animation-delay:.04s; }
.pricing-grid.animate .price-card:nth-child(2) { animation-delay:.17s; }
.pricing-grid.animate .price-card:nth-child(3) { animation-delay:.30s; }
@keyframes flyInRight { from{opacity:0;transform:translateX(60px)} to{opacity:1;transform:translateX(0)} }
/* allow hover after animation */
.pricing-grid.animate .price-card:hover { transform:translateY(-4px); box-shadow:0 20px 60px rgba(0,0,0,.3); border-color:var(--border-hi); }

.price-badge { position:absolute; top:20px; right:20px; background:var(--gold); color:#000; font-family:var(--head); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:3px 10px; border-radius:2px; }
.price-tier  { font-family:var(--mono); font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--muted); margin-bottom:10px; }
.price-name  { font-family:var(--head); font-size:22px; font-weight:700; color:var(--text); margin-bottom:16px; }
.price-amount { display:flex; align-items:baseline; gap:4px; margin-bottom:8px; }
.price-amount .currency { font-size:18px; color:var(--muted); font-family:var(--head); }
.price-amount .amount   { font-family:var(--head); font-size:44px; font-weight:700; color:var(--text); line-height:1; }
.price-note { font-size:12.5px; color:var(--muted); margin-bottom:24px; }

.price-features { list-style:none; margin-bottom:28px; display:flex; flex-direction:column; gap:9px; }
.price-features li { font-size:14px; color:var(--text); display:flex; align-items:flex-start; gap:8px; }
.price-features li::before { content:'✓'; color:var(--gold); flex-shrink:0; margin-top:1px; }
.price-features li.no::before { content:'—'; color:var(--muted); }
.price-features li.no { color:var(--muted); }
.price-card .btn { width:100%; justify-content:center; }

.price-enterprise {
  margin-top:24px; padding:28px; background:var(--surf2);
  border:1px solid var(--border); border-radius:4px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.pe-title { font-family:var(--head); font-size:20px; font-weight:700; color:var(--text); }
.pe-sub   { font-size:14px; color:var(--muted); margin-top:4px; }
.pe-actions { display:flex; gap:12px; }







/* ═══════════════════════════════════════════════════
   TESTIMONIALS — infinite looping carousel
   One card visible at a time. Cards auto-advance
   every 6 seconds and loop seamlessly.
   Independent of pricing — tweak freely.
═══════════════════════════════════════════════════ */

/* Outer wrapper — clips the sliding track */
.testimonial-carousel {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  transition: height .45s cubic-bezier(.4, 0, .2, 1); /* ← ADD: smooth height animation */
}

/* Sliding row — JS sets transform: translateX() */
.testimonial-track {
  display: flex;
  align-items: flex-start;                            /* ← ADD: cards shrink to own content */
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Each card — full carousel width, never shrinks */
.testimonial-card {
  flex: 0 0 100%;           /* one card fills the viewport */
  width: 100%;
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 52px 56px 36px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color .3s;
}
.testimonial-card:hover {
  border-color: var(--border-hi);
}

/* Gold left-edge gradient */
.testimonial-card::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,162,39,.15) 100%);
  border-radius: 6px 0 0 6px;
}

/* Opening quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; left: 48px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  opacity: .18;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Closing quote — drop <span class="testimonial-close-quote">\u201D</span> at end of .testimonial-note */
.testimonial-close-quote {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px;
  line-height: .6;
  color: var(--gold);
  opacity: .18;
  text-align: right;
  margin-top: 8px;
  user-select: none;
}

/* Body text */
.testimonial-note {
  position: relative; z-index: 1;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
}

/* Author block */
.testimonial-author {
  position: relative; z-index: 1;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  font-style: normal;
}

/* Author name highlight — wrap name in <span class="t-name"> */
.testimonial-author .t-name {
  display: block;
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
  margin-bottom: 3px;
}

/* Role / org line — wrap in <span class="testimonial-role"> */
.testimonial-role {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Navigation bar ──────────────────────────────── */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

/* Prev / Next buttons */
.t-prev, .t-next {
  background: var(--surf2);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 20px;
  width: 44px; height: 44px;
  border-radius: 3px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .15s;
  flex-shrink: 0;
  font-family: var(--mono);
}
.t-prev:hover, .t-next:hover {
  background: rgba(201,162,39,.12);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* Dot indicators */
.t-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid rgba(201,162,39,.3);
  cursor: pointer;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .testimonial-card { padding: 48px 32px 28px; }
}
@media (max-width: 640px) {
  .testimonial-card { padding: 44px 20px 24px; }
  .testimonial-note { font-size: 14px; }
  .testimonial-card::before { font-size: 80px; left: 18px; }
  .t-prev, .t-next { width: 38px; height: 38px; font-size: 16px; }
}







/* ─── Release notes ──────────────────────────────── */
.release-list { margin-top:40px; display:flex; flex-direction:column; gap:24px; }
.release-item { background:var(--surf2); border:1px solid var(--border); border-radius:4px; padding:28px 32px; position:relative; overflow:hidden; }
.release-item::before { content:''; position:absolute; top:0; left:0; bottom:0; width:3px; background:var(--gold); }
.release-ver  { font-family:var(--head); font-size:22px; font-weight:700; color:var(--text); }
.release-date { font-family:var(--mono); font-size:11px; color:var(--muted); letter-spacing:1px; margin-bottom:16px; margin-top:4px; }
.release-notes { list-style:none; display:flex; flex-direction:column; gap:8px; }
.release-notes li { font-size:14.5px; color:var(--text); display:flex; gap:8px; }
.release-notes li::before { content:'▸'; color:var(--gold); flex-shrink:0; }
.tag     { display:inline-block; font-family:var(--mono); font-size:10px; letter-spacing:1px; text-transform:uppercase; padding:2px 8px; border-radius:2px; margin-left:6px; }
.tag-fix { background:rgba(61,139,255,.15); color:var(--blue); }
.tag-new { background:rgba(53,208,122,.15); color:var(--green); }
.tag-imp { background:rgba(201,162,39,.15); color:var(--gold); }

/* ─── Contact ────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; margin-top:48px; align-items:start; }
.contact-form { display:flex; flex-direction:column; gap:20px; }
.form-row     { display:flex; flex-direction:column; gap:6px; }
.form-row label { font-family:var(--mono); font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); }
.form-row input, .form-row textarea, .form-row select {
  background:var(--input-bg); border:1px solid var(--border); border-radius:2px;
  color:var(--text); font-family:var(--body); font-size:15px;
  padding:12px 14px; outline:none; transition:border-color .2s; width:100%;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color:var(--gold); }
.form-row textarea { min-height:130px; resize:vertical; }
.form-row select option { background:var(--bg2); }
.contact-info { display:flex; flex-direction:column; gap:20px; }
.info-card    { background:var(--surf2); border:1px solid var(--border); border-radius:4px; padding:24px; }
.info-card h3 { font-family:var(--head); font-size:18px; font-weight:700; color:var(--text); margin-bottom:8px; }
.info-card p  { font-size:14.5px; color:var(--muted); line-height:1.7; }
.info-card a  { color:var(--gold); }

/* ─── CTA section ────────────────────────────────── */
.cta-section { padding:80px 0; position:relative; z-index:2; }
.cta-inner   { text-align:center; max-width:680px; margin:0 auto; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:36px; }

/* ─── Footer ─────────────────────────────────────── */
footer {
  background:var(--footer-bg); border-top:1px solid var(--border);
  padding:56px 0 32px; position:relative; z-index:10;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand p { font-size:13.5px; color:var(--muted); line-height:1.7; max-width:260px; margin-top:14px; }
.footer-col h4 { font-family:var(--mono); font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:14px; color:var(--muted); transition:color .15s; }
.footer-col ul li a:hover { color:var(--text); }
.footer-bottom { padding-top:28px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy   { font-family:var(--mono); font-size:11px; color:var(--muted); letter-spacing:.5px; }
.footer-links  { display:flex; gap:20px; }
.footer-links a { font-size:12px; color:var(--muted); transition:color .15s; }
.footer-links a:hover { color:var(--text); }

/* ─── Scroll reveal ──────────────────────────────── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — four breakpoints
   1140  tablet-landscape (shrink columns/font)
    900  tablet-portrait  (stack two-column layouts)
    640  large phone      (hamburger, stack everything)
    400  small phone      (tighten padding/font further)
═══════════════════════════════════════════════════ */

/* ── Hamburger button (hidden on desktop) ─────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  cursor: pointer; margin-left: 12px; flex-shrink: 0;
  background: none; border: 1px solid var(--border); border-radius: 3px;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--gold); }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, background .2s;
}
/* animated X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ────────────────────────────────── */
.nav-drawer {
  display: none; /* JS will switch to flex when open */
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  flex-direction: column;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  padding: 80px 32px 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-drawer.open {
  opacity: 1;
  transform: none;
}
.nav-drawer a {
  font-family: var(--head); font-weight: 700;
  font-size: 28px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--gold); }
.nav-drawer-cta {
  margin-top: 32px;
}

/* ─── 1140px — tablet landscape ──────────────────── */
@media (max-width: 1140px) {
  .container { padding: 0 20px; }
  .hero-layout { gap: 40px; }
  .hero h1 { font-size: clamp(30px, 4vw, 50px); }
  .product-card { padding: 40px 32px; gap: 40px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
  .nav-links a { padding: 8px 10px; font-size: 12px; }
  .nav-cta { padding: 10px 18px; font-size: 13px; }
}

/* ─── 900px — tablet portrait ────────────────────── */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  /* Hero: single column, hide terminal visual */
  .hero { min-height: auto; padding: 60px 0 48px; }
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(32px, 5vw, 48px); }
  .hero-desc { font-size: 16px; max-width: 100%; }
  .hero-stats { gap: 24px; }

  /* Product cards: single column, hide mock screen */
  .product-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 0; }
  .product-card > div:last-child { display: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .price-card { padding: 28px 22px; }
  .price-amount .amount { font-size: 36px; }

  /* Compare table: reduce columns, make scrollable */
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 14px; }
  /* Hide the 4th column on tablet */
  .compare-table th:last-child,
  .compare-table td:last-child { display: none; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Trust bar */
  .trust-badges { gap: 16px; }

  /* Enterprise row */
  .price-enterprise { flex-direction: column; align-items: flex-start; }
}

/* ─── 640px — large phone / hamburger kicks in ────── */
@media (max-width: 640px) {
  /* Hide normal nav links and CTA, show hamburger */
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }
  .theme-toggle { display: none; } /* move into drawer */
  .nav-hamburger { display: flex; }

  .nav-inner { height: 56px; }

  /* Topbar — shorter on mobile */
  .topbar { font-size: 11px; padding: 6px 12px; }
  .topbar .topbar-extra { display: none; } /* hide "See what's new" link */

  /* Section padding tighter */
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .hero-desc { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding-top: 24px; margin-top: 32px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 9px; }

  /* Trust bar */
  .trust-bar { padding: 16px 0; }
  .trust-inner { flex-direction: column; gap: 10px; align-items: flex-start; }
  .trust-badges { flex-wrap: wrap; gap: 10px; }
  .trust-badge { font-size: 12px; }
  .trust-label { font-size: 10px; }

  /* Pricing: single column */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-enterprise { padding: 20px; }
  .pe-actions { flex-direction: column; width: 100%; }
  .pe-actions .btn { width: 100%; justify-content: center; }

  /* Compare: only show first two columns on phone */
  .compare-table { font-size: 12px; }
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3),
  .compare-table th:last-child,
  .compare-table td:last-child { display: none; }
  .compare-table th, .compare-table td { padding: 10px 10px; }

  /* Product cards */
  .product-card { padding: 24px 16px; }
  .product-name { font-size: 28px; }
  .product-actions { flex-direction: column; gap: 8px; }
  .product-actions .btn { width: 100%; justify-content: center; }

  /* Section titles */
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .section-sub { font-size: 15px; }

  /* CTA */
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  footer { padding: 40px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Contact form */
  .contact-grid { gap: 28px; }

  /* Release items */
  .release-item { padding: 20px 16px 20px 22px; }
  .release-ver { font-size: 18px; }

  /* Buttons full width in price cards */
  .price-card .btn { width: 100%; justify-content: center; }

  /* Info cards */
  .info-card { padding: 18px; }
}

/* ─── 400px — small phone ────────────────────────── */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 26px; }
  .hero-desc { font-size: 14px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 22px; }
  .nav-logo { font-size: 18px; }
  .nav-logo .badge { width: 28px; height: 28px; font-size: 10px; }
  .price-amount .amount { font-size: 32px; }
  .product-name { font-size: 24px; }
  .topbar { font-size: 10px; }
  .btn { font-size: 13px; padding: 11px 20px; }
}
