@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --bg:          #080808;
  --bg-2:        #0E0E0E;
  --bg-card:     #111111;
  --bg-card-2:   #161616;
  --border:      rgba(255,255,255,0.08);
  --border-hi:   rgba(255,255,255,0.14);
  --amber:       #F97316;
  --amber-2:     #FB923C;
  --amber-dim:   #C2610F;
  --amber-glow:  rgba(249,115,22,0.18);
  --amber-glow2: rgba(249,115,22,0.08);
  --text:        #FFFFFF;
  --text-2:      #E4E4E4;
  --muted:       #777777;
  --muted-2:     #555555;
  --green:       #22C55E;
  --blue:        #60A5FA;
  --red:         #F87171;
  --yellow:      #FBBF24;
  --purple:      #A78BFA;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --nav-h:       64px;
  --dot-color:   rgba(255,255,255,0.09);
  --dot-size:    22px;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'IBM Plex Sans',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{cursor:pointer;border:none;background:none;font:inherit;color:inherit}
ul,ol{list-style:none}
::selection{background:rgba(249,115,22,0.35);color:#fff}

/* ═══════════════════════════════════════════
   DOT GRID BACKGROUND
═══════════════════════════════════════════ */
.dot-grid{
  background-image:radial-gradient(circle, var(--dot-color) 1px, transparent 1px);
  background-size:var(--dot-size) var(--dot-size);
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container{
  max-width:1160px;
  margin-inline:auto;
  padding-inline:32px;
  position:relative;
}
.section{padding:100px 0}
.section--sm{padding:60px 0}
.section--lg{padding:140px 0}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.display{
  font-family:'JetBrains Mono',monospace;
  font-size:clamp(42px,6vw,80px);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-2px;
  color:var(--text);
}
.display .light{font-weight:400;color:rgba(255,255,255,0.55)}
.display .amber{color:var(--amber)}
.h2{
  font-family:'JetBrains Mono',monospace;
  font-size:clamp(28px,4vw,48px);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-1.5px;
}
.h3{
  font-family:'JetBrains Mono',monospace;
  font-size:18px;font-weight:600;
}
.label{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;font-weight:600;letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--amber);
}
.lead{font-size:18px;color:var(--muted);line-height:1.75;max-width:600px}
.body-sm{font-size:14px;color:var(--muted);line-height:1.7}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 24px;border-radius:var(--radius-sm);
  font-size:14px;font-weight:600;
  transition:all 180ms ease;cursor:pointer;
  white-space:nowrap;
}
.btn-amber{
  background:var(--amber);color:#000;
  box-shadow:0 0 0 0 rgba(249,115,22,0);
}
.btn-amber:hover{background:var(--amber-2);box-shadow:0 0 32px rgba(249,115,22,0.4);transform:translateY(-1px)}
.btn-dark{
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border-hi);color:var(--text);
}
.btn-dark:hover{background:rgba(255,255,255,0.1);border-color:rgba(255,255,255,0.2)}
.btn-ghost{color:var(--muted);font-size:14px}
.btn-ghost:hover{color:var(--text)}
.btn-sm{padding:8px 16px;font-size:13px}
.btn svg{flex-shrink:0}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:var(--nav-h);
  display:flex;align-items:center;
  border-bottom:1px solid var(--border);
  background:rgba(8,8,8,0.88);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
.nav__inner{
  display:flex;align-items:center;
  width:100%;max-width:1160px;
  margin-inline:auto;padding-inline:32px;
  gap:0;
}
.nav__logo{
  display:flex;align-items:center;gap:10px;
  font-family:'JetBrains Mono',monospace;
  font-weight:700;font-size:16px;
  margin-right:40px;flex-shrink:0;
}
.nav__logo-mark{
  width:30px;height:30px;border-radius:7px;
  background:var(--amber);
  display:grid;place-items:center;
  font-size:13px;font-weight:800;color:#000;
  font-family:'JetBrains Mono',monospace;
  flex-shrink:0;
}
.nav__links{display:flex;align-items:center;gap:2px;flex:1}
.nav__links a{
  padding:7px 14px;border-radius:6px;
  font-size:14px;color:var(--muted);
  transition:color 150ms,background 150ms;
}
.nav__links a:hover{color:var(--text);background:rgba(255,255,255,0.05)}
.nav__right{display:flex;align-items:center;gap:10px;margin-left:auto}
.nav__hamburger{
  display:none;flex-direction:column;gap:5px;
  padding:8px;cursor:pointer;margin-left:auto;
}
.nav__hamburger span{
  display:block;width:20px;height:1.5px;
  background:var(--text);border-radius:2px;transition:all 200ms;
}

/* Mobile menu */
.nav__mobile{
  display:none;
  position:fixed;top:var(--nav-h);left:0;right:0;z-index:199;
  background:rgba(8,8,8,0.98);
  border-bottom:1px solid var(--border);
  padding:16px 24px 24px;
  flex-direction:column;gap:4px;
  backdrop-filter:blur(20px);
}
.nav__mobile.open{display:flex}
.nav__mobile a{
  padding:12px 14px;border-radius:8px;
  font-size:15px;color:var(--muted);
  transition:color 150ms,background 150ms;
}
.nav__mobile a:hover{color:var(--text);background:rgba(255,255,255,0.05)}

/* ═══════════════════════════════════════════
   EYEBROW PILL
═══════════════════════════════════════════ */
.eyebrow-pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:5px 14px;border-radius:100px;
  border:1px solid rgba(249,115,22,0.3);
  background:rgba(249,115,22,0.08);
  font-family:'JetBrains Mono',monospace;
  font-size:12px;font-weight:600;color:var(--amber);
  margin-bottom:28px;
}
.eyebrow-pill__dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--amber);box-shadow:0 0 6px var(--amber);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.8)}}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  padding-top:var(--nav-h);
  overflow:hidden;
}
.hero__glow{
  position:absolute;
  top:0;left:50%;transform:translateX(-50%);
  width:900px;height:600px;
  background:radial-gradient(ellipse 70% 60% at 50% 0%, rgba(249,115,22,0.22) 0%, transparent 70%);
  pointer-events:none;
}
.hero__glow-2{
  position:absolute;
  top:30%;left:50%;transform:translate(-50%,-50%);
  width:600px;height:400px;
  background:radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events:none;
}
.hero__content{position:relative;z-index:1;padding:80px 0 60px}
.hero__ctas{
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:12px;margin-top:36px;
}
/* store buttons inside hero get slightly lighter background */
.hero__ctas .store-btn{
  background:rgba(255,255,255,0.07);
  border-color:rgba(255,255,255,0.15);
  padding:11px 20px;
}
.hero__ctas .store-btn:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(249,115,22,0.4);
  transform:translateY(-2px);
}
.hero__sub{
  font-size:17px;color:var(--muted);
  max-width:560px;margin:20px auto 0;line-height:1.75;
}

/* Trust bar */
.trust-bar{
  position:relative;z-index:1;
  width:100%;
  border-top:1px solid var(--border);
  padding:20px 0;
  display:flex;align-items:center;justify-content:center;gap:0;
  overflow:hidden;
  margin-top:auto;
}
.trust-bar__label{
  font-size:13px;color:var(--muted-2);
  padding-right:24px;border-right:1px solid var(--border);
  margin-right:24px;white-space:nowrap;
  font-family:'JetBrains Mono',monospace;
}
.trust-bar__items{
  display:flex;align-items:center;gap:32px;flex-wrap:wrap;justify-content:center;
}
.trust-item{
  display:flex;align-items:center;gap:8px;
  font-size:13px;font-weight:500;color:var(--muted-2);
  font-family:'JetBrains Mono',monospace;
  transition:color 150ms;
}
.trust-item:hover{color:var(--muted)}
.trust-item__icon{
  width:18px;height:18px;border-radius:4px;
  display:grid;place-items:center;
  opacity:0.5;
}

/* ═══════════════════════════════════════════
   BIG APP MOCKUP (CSS IDE)
═══════════════════════════════════════════ */
.app-showcase{
  position:relative;
  border:1px solid var(--border-hi);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(249,115,22,0.06),
    0 40px 120px rgba(0,0,0,0.8),
    0 0 80px rgba(249,115,22,0.06);
}
.app-showcase__titlebar{
  display:flex;align-items:center;
  padding:10px 16px;gap:12px;
  background:var(--bg-card-2);
  border-bottom:1px solid var(--border);
}
.titlebar-dots{display:flex;gap:6px}
.titlebar-dot{width:11px;height:11px;border-radius:50%}
.titlebar-dot--red{background:#FF5F57}
.titlebar-dot--yellow{background:#FEBC2E}
.titlebar-dot--green{background:#28C840}
.titlebar-path{
  flex:1;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;color:var(--muted-2);
  text-align:center;
}
.app-showcase__body{
  display:grid;
  grid-template-columns:200px 1fr 340px;
  min-height:420px;
}

/* Sidebar */
.ide-sidebar{
  border-right:1px solid var(--border);
  background:var(--bg-card);
  padding:12px 0;
}
.ide-sidebar__section{
  padding:4px 14px 4px;
  font-family:'JetBrains Mono',monospace;
  font-size:9px;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;
  color:var(--muted-2);margin-bottom:4px;
}
.ide-file{
  display:flex;align-items:center;gap:8px;
  padding:6px 14px;font-size:11px;font-weight:500;
  font-family:'JetBrains Mono',monospace;
  color:var(--muted);cursor:default;
  transition:background 100ms;border-radius:0;
}
.ide-file:hover{background:rgba(255,255,255,0.04);color:var(--text)}
.ide-file.active{background:rgba(249,115,22,0.1);color:var(--amber)}
.ide-file svg{width:12px;height:12px;flex-shrink:0;opacity:0.6}
.ide-file.active svg{opacity:1}
.ide-folder{color:var(--yellow);opacity:0.7}
.ide-folder.open{opacity:1}

/* Editor pane */
.ide-editor{
  background:var(--bg);
  display:flex;flex-direction:column;
}
.ide-tabs{
  display:flex;
  border-bottom:1px solid var(--border);
  background:var(--bg-card);
}
.ide-tab{
  padding:8px 16px;font-size:11px;
  font-family:'JetBrains Mono',monospace;
  color:var(--muted);border-right:1px solid var(--border);
  display:flex;align-items:center;gap:8px;
  cursor:default;white-space:nowrap;
}
.ide-tab.active{color:var(--text);background:var(--bg);border-top:1px solid var(--amber)}
.ide-tab__dot{width:6px;height:6px;border-radius:50%;background:var(--amber)}
.ide-code{
  flex:1;padding:16px 20px;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;line-height:2;
  overflow:hidden;
}
.ide-line{display:flex;align-items:baseline;gap:0}
.ide-ln{
  width:28px;font-size:10px;color:var(--muted-2);
  text-align:right;margin-right:16px;flex-shrink:0;
  user-select:none;
}
.ide-line.hl{background:rgba(249,115,22,0.06);margin:0 -20px;padding:0 20px}
/* syntax */
.s-k{color:#C792EA}   /* keyword */
.s-f{color:#82AAFF}   /* function */
.s-s{color:#C3E88D}   /* string */
.s-n{color:#F78C6C}   /* number */
.s-c{color:#546E7A;font-style:italic} /* comment */
.s-v{color:#EEFFFF}   /* variable */
.s-p{color:#89DDFF}   /* punctuation */
.s-t{color:#FFCB6B}   /* type */
.s-a{color:var(--amber)} /* accent */
.cursor{
  display:inline-block;width:2px;height:14px;
  background:var(--amber);border-radius:1px;
  animation:blink 1s step-end infinite;
  vertical-align:text-bottom;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}

/* Preview pane */
.ide-preview{
  border-left:1px solid var(--border);
  background:#fff;
  display:flex;flex-direction:column;
}
.ide-preview__bar{
  padding:8px 14px;
  background:#f5f5f5;
  border-bottom:1px solid #ddd;
  display:flex;align-items:center;gap:8px;
}
.preview-url{
  flex:1;background:#e8e8e8;
  border-radius:4px;padding:4px 10px;
  font-size:10px;color:#666;
  font-family:'JetBrains Mono',monospace;
}
.ide-preview__content{
  flex:1;
  display:flex;flex-direction:column;
  align-items:center;justify-content:flex-start;
  padding:16px;
  gap:10px;
  background:linear-gradient(135deg,#fafafa 0%,#f0f0f0 100%);
}
.preview-card{
  width:100%;background:#fff;border-radius:8px;
  padding:12px;box-shadow:0 2px 12px rgba(0,0,0,0.08);
}
.preview-h{height:8px;border-radius:4px;background:#1a1a1a;width:70%;margin-bottom:6px}
.preview-p{height:6px;border-radius:4px;background:#ddd;width:90%;margin-bottom:4px}
.preview-p2{height:6px;border-radius:4px;background:#ddd;width:75%}
.preview-btn-row{display:flex;gap:6px;margin-top:10px}
.preview-btn{
  height:22px;border-radius:4px;
  background:var(--amber);
  padding:0 10px;font-size:9px;
  color:#000;font-weight:700;
  font-family:'JetBrains Mono',monospace;
  display:flex;align-items:center;
}
.preview-btn-2{
  height:22px;border-radius:4px;
  background:transparent;border:1px solid #ccc;
  padding:0 10px;font-size:9px;color:#666;
  font-family:'JetBrains Mono',monospace;
  display:flex;align-items:center;
}

/* Status bar */
.ide-statusbar{
  display:flex;align-items:center;gap:16px;
  padding:4px 14px;
  background:var(--amber);
  font-family:'JetBrains Mono',monospace;
  font-size:10px;font-weight:600;color:#000;
}
.ide-statusbar__spacer{flex:1}
.ide-statusbar__item{display:flex;align-items:center;gap:4px}

/* ═══════════════════════════════════════════
   FEATURE SECTIONS (split layout)
═══════════════════════════════════════════ */
.feature-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;gap:80px;
}
.feature-split.reverse{direction:rtl}
.feature-split.reverse > *{direction:ltr}
.feature-text .label{display:block;margin-bottom:16px}
.feature-text .h2{margin-bottom:16px}
.feature-text .lead{margin-bottom:28px}
.feature-text .body-sm{color:var(--muted)}

/* Feature bullet list */
.feat-bullets{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.feat-bullet{
  display:flex;align-items:flex-start;gap:12px;
  font-size:14px;color:var(--muted);
}
.feat-bullet-icon{
  width:20px;height:20px;border-radius:5px;
  background:rgba(249,115,22,0.12);
  display:grid;place-items:center;flex-shrink:0;margin-top:2px;
}
.feat-bullet-icon svg{width:11px;height:11px;stroke:var(--amber)}

/* ═══════════════════════════════════════════
   MINI MOCKUPS (for feature sections)
═══════════════════════════════════════════ */
.mockup-wrap{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border-hi);
  background:var(--bg-card);
  box-shadow:0 24px 80px rgba(0,0,0,0.6);
}
.mockup-wrap::before{
  content:'';
  position:absolute;inset:0;
  border-radius:var(--radius-lg);
  box-shadow:inset 0 0 40px rgba(249,115,22,0.04);
  pointer-events:none;z-index:1;
}
.mockup-titlebar{
  display:flex;align-items:center;gap:10px;
  padding:9px 14px;
  background:var(--bg-card-2);
  border-bottom:1px solid var(--border);
}

/* Git panel mockup */
.git-panel{padding:0}
.git-section-head{
  padding:10px 14px;
  font-family:'JetBrains Mono',monospace;
  font-size:10px;font-weight:600;letter-spacing:1px;
  text-transform:uppercase;color:var(--muted-2);
  border-bottom:1px solid var(--border);
}
.git-file-item{
  display:flex;align-items:center;gap:10px;
  padding:9px 14px;border-bottom:1px solid rgba(255,255,255,0.04);
  font-family:'JetBrains Mono',monospace;font-size:11px;
}
.git-status{
  width:14px;height:14px;border-radius:3px;
  display:grid;place-items:center;
  font-size:8px;font-weight:800;flex-shrink:0;
}
.git-status.m{background:rgba(251,191,36,0.15);color:#FBBF24}
.git-status.a{background:rgba(34,197,94,0.15);color:#22C55E}
.git-status.d{background:rgba(248,113,113,0.15);color:#F87171}
.git-commit-box{
  margin:10px 14px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:8px;padding:10px;
}
.git-commit-input{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;color:var(--muted);
  margin-bottom:8px;
}
.git-btn{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 14px;border-radius:6px;
  background:var(--amber);color:#000;
  font-size:10px;font-weight:700;
  font-family:'JetBrains Mono',monospace;
}

/* Mobile keyboard mockup */
.mobile-mockup{
  width:240px;margin-inline:auto;
  background:#0A0A0A;
  border:2px solid rgba(249,115,22,0.3);
  border-radius:40px;
  padding:12px 8px;
  box-shadow:0 0 60px rgba(249,115,22,0.1),0 24px 60px rgba(0,0,0,0.7);
}
.mobile-notch{
  width:80px;height:18px;background:#080808;
  border-radius:0 0 12px 12px;margin:0 auto 8px;
}
.mobile-screen{
  background:#0D0D0D;border-radius:28px;
  overflow:hidden;border:1px solid rgba(255,255,255,0.06);
}
.mobile-editor-area{
  padding:10px;min-height:160px;
  font-family:'JetBrains Mono',monospace;font-size:10px;line-height:1.8;
}
.mobile-keyboard-bar{
  background:var(--bg-card-2);
  border-top:1px solid var(--border);
  padding:6px 8px;
  display:flex;gap:4px;flex-wrap:wrap;
}
.kb-key{
  padding:4px 8px;border-radius:5px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.1);
  font-family:'JetBrains Mono',monospace;
  font-size:10px;color:var(--text-2);
  cursor:default;
}
.kb-key.special{background:rgba(249,115,22,0.15);border-color:rgba(249,115,22,0.3);color:var(--amber)}
.mobile-keyboard{
  background:#2A2A2A;padding:10px 6px;
  display:grid;grid-template-columns:repeat(10,1fr);gap:4px;
}
.mobile-keyboard__key{
  background:#3A3A3A;border-radius:5px;
  height:30px;display:grid;place-items:center;
  font-size:10px;color:var(--text-2);
  box-shadow:0 2px 0 #1A1A1A;
}

/* ═══════════════════════════════════════════
   FEATURES GRID (cards)
═══════════════════════════════════════════ */
.feat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.feat-card-v2{
  background:var(--bg-card);
  padding:32px 28px;
  transition:background 180ms;
  cursor:default;
}
.feat-card-v2:hover{background:var(--bg-card-2)}
.feat-card-v2__icon{
  width:38px;height:38px;border-radius:9px;
  display:grid;place-items:center;
  margin-bottom:18px;
  background:rgba(249,115,22,0.1);
}
.feat-card-v2__icon svg{width:18px;height:18px;stroke:var(--amber)}
.feat-card-v2__title{
  font-family:'JetBrains Mono',monospace;
  font-size:15px;font-weight:600;margin-bottom:8px;
}
.feat-card-v2__desc{font-size:13px;color:var(--muted);line-height:1.65}
.feat-card-v2.span2{grid-column:span 2}

/* ═══════════════════════════════════════════
   LANG BADGES
═══════════════════════════════════════════ */
.lang-row{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-top:32px;
}
.lang-chip{
  display:flex;align-items:center;gap:7px;
  padding:7px 14px;border-radius:100px;
  background:var(--bg-card);border:1px solid var(--border);
  font-family:'JetBrains Mono',monospace;
  font-size:12px;font-weight:500;color:var(--text-2);
  transition:border-color 150ms,background 150ms;
  cursor:default;
}
.lang-chip:hover{border-color:rgba(249,115,22,0.3);background:rgba(249,115,22,0.05)}
.lang-chip-dot{width:7px;height:7px;border-radius:50%}

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.stats-band{
  display:grid;grid-template-columns:repeat(4,1fr);
  border:1px solid var(--border);border-radius:var(--radius-lg);
  overflow:hidden;background:var(--bg-card);
  margin:0;
}
.stat-item{
  padding:36px 28px;
  border-right:1px solid var(--border);
  text-align:center;
}
.stat-item:last-child{border-right:none}
.stat-value{
  font-family:'JetBrains Mono',monospace;
  font-size:42px;font-weight:800;
  color:var(--amber);line-height:1;margin-bottom:8px;
}
.stat-label{font-size:13px;color:var(--muted)}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.testi-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  transition:border-color 180ms;
  cursor:default;
}
.testi-card:hover{border-color:rgba(249,115,22,0.2)}
.testi-stars{
  display:flex;gap:2px;margin-bottom:14px;
}
.testi-stars svg{width:14px;height:14px;fill:var(--amber)}
.testi-quote{
  font-size:14px;line-height:1.75;color:var(--text-2);
  margin-bottom:18px;font-style:italic;
}
.testi-author{
  font-family:'JetBrains Mono',monospace;
  font-size:13px;font-weight:600;
}
.testi-role{font-size:12px;color:var(--muted);margin-top:2px}

/* ═══════════════════════════════════════════
   DOWNLOAD / CTA BAND
═══════════════════════════════════════════ */
.cta-section{
  position:relative;overflow:hidden;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.cta-section__glow{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:800px;height:400px;
  background:radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249,115,22,0.16) 0%, transparent 70%);
  pointer-events:none;
}
.cta-section__inner{
  position:relative;z-index:1;
  text-align:center;padding:100px 0;
}
.store-btns{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:12px;margin-top:32px}
.store-btn{
  display:flex;align-items:center;gap:12px;
  padding:12px 22px;border-radius:var(--radius-sm);
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border-hi);
  transition:all 180ms;
}
.store-btn:hover{background:rgba(255,255,255,0.09);border-color:rgba(249,115,22,0.3);transform:translateY(-2px)}
.store-btn__label{font-size:10px;color:var(--muted);display:block;text-align:left}
.store-btn__name{font-size:14px;font-weight:600;font-family:'JetBrains Mono',monospace;display:block;text-align:left}
.store-btn svg{flex-shrink:0}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer{
  border-top:1px solid var(--border);
  padding:60px 0 32px;
}
.footer__top{
  display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:48px;margin-bottom:48px;
}
.footer__brand-tagline{
  font-size:13px;color:var(--muted);
  margin-top:10px;line-height:1.65;max-width:240px;
}
.footer__col-title{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;font-weight:700;
  letter-spacing:2px;text-transform:uppercase;
  color:var(--muted-2);margin-bottom:14px;
}
.footer__links{display:flex;flex-direction:column;gap:10px}
.footer__links a{font-size:13px;color:var(--muted);transition:color 150ms}
.footer__links a:hover{color:var(--text)}
.footer__divider{border:none;border-top:1px solid var(--border);margin-bottom:24px}
.footer__bottom{
  display:flex;align-items:center;justify-content:space-between;
  font-size:12px;color:var(--muted-2);flex-wrap:wrap;gap:12px;
}
.footer__socials{display:flex;gap:10px}
.footer__social-btn{
  width:32px;height:32px;border-radius:7px;
  display:grid;place-items:center;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  transition:all 150ms;
}
.footer__social-btn:hover{background:rgba(249,115,22,0.1);border-color:rgba(249,115,22,0.3)}
.footer__social-btn svg{width:15px;height:15px;fill:var(--muted)}
.footer__social-btn:hover svg{fill:var(--amber)}

/* ═══════════════════════════════════════════
   INNER PAGE HEADER
═══════════════════════════════════════════ */
.page-hero{
  padding-top:calc(var(--nav-h) + 80px);
  padding-bottom:60px;
  text-align:center;
  border-bottom:1px solid var(--border);
  margin-bottom:60px;
  position:relative;
}
.page-hero__glow{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:600px;height:300px;
  background:radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events:none;
}
.page-hero .h2{margin-top:12px}
.page-hero__meta{font-size:13px;color:var(--muted);margin-top:10px}

/* ═══════════════════════════════════════════
   PROSE (legal)
═══════════════════════════════════════════ */
.prose{max-width:740px;margin-inline:auto;padding-bottom:100px}
.prose h2{
  font-family:'JetBrains Mono',monospace;
  font-size:18px;font-weight:700;
  color:var(--text);margin:40px 0 12px;
  padding-top:8px;
}
.prose h3{
  font-family:'JetBrains Mono',monospace;
  font-size:14px;font-weight:600;
  color:var(--amber);margin:24px 0 8px;
}
.prose p{font-size:14px;color:#999;line-height:1.85;margin-bottom:14px}
.prose ul{margin-bottom:16px}
.prose ul li{
  font-size:14px;color:#999;line-height:1.75;
  padding:3px 0 3px 18px;position:relative;
}
.prose ul li::before{
  content:'';position:absolute;left:0;top:11px;
  width:5px;height:5px;border-radius:50%;background:var(--amber);
}
.prose a{color:var(--amber)}
.prose a:hover{text-decoration:underline}
.prose .callout{
  padding:18px 22px;
  background:rgba(249,115,22,0.06);
  border-left:2px solid var(--amber);
  border-radius:0 8px 8px 0;
  margin:24px 0;font-size:14px;color:var(--text-2);
  line-height:1.7;
}

/* ═══════════════════════════════════════════
   SUPPORT / FAQ
═══════════════════════════════════════════ */
.faq-list{max-width:740px;margin-inline:auto;display:flex;flex-direction:column;gap:1px;background:var(--border);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.faq-item{background:var(--bg-card)}
.faq-q{
  width:100%;text-align:left;
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 22px;font-size:14px;font-weight:600;
  gap:16px;cursor:pointer;transition:background 150ms;
}
.faq-q:hover{background:var(--bg-card-2)}
.faq-q[aria-expanded="true"]{color:var(--amber)}
.faq-q svg{width:16px;height:16px;flex-shrink:0;stroke:var(--muted);transition:transform 200ms,stroke 200ms}
.faq-q[aria-expanded="true"] svg{transform:rotate(45deg);stroke:var(--amber)}
.faq-a{
  display:none;padding:0 22px 18px;
  font-size:13px;color:var(--muted);line-height:1.8;
  border-top:1px solid var(--border);padding-top:14px;
}
.faq-a.open{display:block}
.support-channels-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:16px;margin-top:0;
}
.support-ch{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:28px;text-align:center;
  transition:border-color 180ms;cursor:default;
}
.support-ch:hover{border-color:rgba(249,115,22,0.25)}
.support-ch__icon{
  width:44px;height:44px;border-radius:10px;
  background:rgba(249,115,22,0.1);
  display:grid;place-items:center;margin:0 auto 14px;
}
.support-ch__icon svg{width:20px;height:20px;stroke:var(--amber)}
.support-ch__title{font-family:'JetBrains Mono',monospace;font-size:14px;font-weight:600;margin-bottom:6px}
.support-ch__desc{font-size:12px;color:var(--muted);line-height:1.6;margin-bottom:14px}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px){
  .app-showcase__body{grid-template-columns:160px 1fr}
  .ide-preview{display:none}
  .feat-grid{grid-template-columns:repeat(2,1fr)}
  .feat-card-v2.span2{grid-column:span 1}
  .footer__top{grid-template-columns:1fr 1fr;gap:32px}
  .stats-band{grid-template-columns:repeat(2,1fr)}
  .stats-band .stat-item:nth-child(2){border-right:none}
  .stats-band .stat-item:nth-child(3){border-top:1px solid var(--border)}
  .stats-band .stat-item:nth-child(4){border-top:1px solid var(--border);border-right:none}
  .testi-grid{grid-template-columns:1fr 1fr}
  .support-channels-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .section{padding:64px 0}
  .container{padding-inline:20px}
  .nav__links,.nav__right{display:none}
  .nav__hamburger{display:flex}
  .nav__inner{padding-inline:20px}
  .feature-split{grid-template-columns:1fr;gap:40px}
  .feature-split.reverse{direction:ltr}
  .feat-grid{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .stats-band{grid-template-columns:repeat(2,1fr)}
  .footer__top{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;align-items:flex-start;gap:16px}
  .support-channels-grid{grid-template-columns:1fr}
  .app-showcase__body{grid-template-columns:1fr;min-height:auto}
  .ide-sidebar{display:none}
  .display{font-size:clamp(36px,10vw,56px)}
}
@media(max-width:480px){
  .stats-band{grid-template-columns:1fr}
  .stats-band .stat-item{border-right:none;border-top:1px solid var(--border)}
  .stats-band .stat-item:first-child{border-top:none}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms !important;transition-duration:0.01ms !important}
}
