/* ============================================
   ABSOLO CLOUD — Marketing Site
   Violet primary, bolder accents, dark + light
   ============================================ */

:root,
:root[data-theme="dark"] {
  /* base palette — DARK graphite */
  --bg: #0A0C0E;
  --bg-2: #06080A;
  --surface: #11151A;
  --surface-2: #161B22;
  --surface-3: #1E242D;
  --border: #232932;
  --border-strong: #2E3540;

  /* text */
  --text: #EDF1F5;
  --text-body: #B6BFC9;
  --text-muted: #7B8593;
  --text-faint: #4A525E;

  /* brand — burnt orange, serious cloud-ops primary */
  --brand: #E8742C;
  --brand-hover: #F0863F;
  --brand-soft: rgba(232, 116, 44, 0.14);

  /* accents (used sparingly — keep palette tight) */
  --accent-amber: #F0B442;
  --accent-steel: #6E7A8A;
  --accent-emerald-deep: #8A3F12;  /* deep burnt, used by CTA gradient */
  --accent-emerald-glow: #FFB075;  /* warm peach highlight for CTA accent text */

  /* legacy aurora vars remapped to a tighter, more serious set so
     existing component styles still resolve cleanly */
  --aurora-pink:    #C95E5E; /* muted brick */
  --aurora-magenta: #B95B73; /* dusty rose, used minimally */
  --aurora-violet:  #6E7A8A; /* steel */
  --aurora-cyan:    #E8742C; /* brand */
  --aurora-yellow:  #F0B442; /* amber */
  --aurora-orange:  #E8742C; /* brand */
  --aurora-lime:    #FFB075; /* peach */
  --aurora-coral:   #B95B73;

  --success: #2BB673;
  --warning: #F0B442;
  --danger:  #D45B5B;

  /* mesh / hero — subtle, monochrome + orange */
  --mesh-1: rgba(232, 116, 44, 0.32);
  --mesh-2: rgba(232, 116, 44, 0.18);
  --mesh-3: rgba(110, 122, 138, 0.22);
  --mesh-4: rgba(240, 180, 66, 0.18);
  --mesh-5: rgba(232, 116, 44, 0.10);

  --noise-strength: 0.18;
  --star-strength: 0;
  --cpanel-body: #D8DCE2;

  /* type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --font-hand: "Caveat", "Comic Sans MS", cursive;
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-logo: "Bricolage Grotesque", "Inter", system-ui, sans-serif;

  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 7px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-2xl: 18px;
}

/* LIGHT THEME — clean off-white + emerald */
:root[data-theme="light"] {
  --bg: #F8F9FA;
  --bg-2: #EEF1F4;
  --surface: #FFFFFF;
  --surface-2: #F4F6F8;
  --surface-3: #E9ECF0;
  --border: #E1E5EA;
  --border-strong: #C8CFD7;

  --text: #0E1419;
  --text-body: #2C353F;
  --text-muted: #5C6773;
  --text-faint: #98A1AC;

  --brand: #C45A1B;
  --brand-hover: #A84A12;
  --brand-soft: rgba(196, 90, 27, 0.08);

  --accent-amber: #B97E1B;
  --accent-steel: #4A5560;
  --accent-emerald-deep: #8A3F12;
  --accent-emerald-glow: #E8742C;

  --aurora-pink:    #B14848;
  --aurora-magenta: #9D4459;
  --aurora-violet:  #4A5560;
  --aurora-cyan:    #C45A1B;
  --aurora-yellow:  #B97E1B;
  --aurora-orange:  #C45A1B;
  --aurora-lime:    #E8742C;
  --aurora-coral:   #9D4459;

  --success: #1F8A57;
  --warning: #B97E1B;
  --danger:  #B14848;

  --mesh-1: rgba(196, 90, 27, 0.20);
  --mesh-2: rgba(196, 90, 27, 0.12);
  --mesh-3: rgba(74, 85, 96, 0.10);
  --mesh-4: rgba(185, 126, 27, 0.10);
  --mesh-5: rgba(196, 90, 27, 0.06);

  --noise-strength: 0.10;
  --star-strength: 0;
  --cpanel-body: #D8DCE2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

body {
  background-image:
    radial-gradient(1px 1px at 12% 8%, rgba(255,255,255, var(--star-strength)), transparent),
    radial-gradient(1px 1px at 88% 32%, rgba(255,255,255, var(--star-strength)), transparent),
    radial-gradient(1px 1px at 42% 68%, rgba(255,255,255, var(--star-strength)), transparent),
    radial-gradient(1px 1px at 72% 88%, rgba(255,255,255, var(--star-strength)), transparent),
    radial-gradient(1.5px 1.5px at 22% 92%, var(--aurora-violet), transparent),
    radial-gradient(1.5px 1.5px at 92% 12%, var(--aurora-cyan), transparent);
  background-attachment: fixed;
  background-size: 100% 100%;
}
:root[data-theme="light"] body { background-image: none; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

p { text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--brand); color: white; }

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: color-mix(in oklch, var(--surface) 60%, transparent);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--aurora-cyan);
  box-shadow: 0 0 12px var(--aurora-cyan);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section-head h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.03em;
}

.section-head p {
  font-size: 18px;
  color: var(--text-body);
  max-width: 580px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}

.btn--primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.16) inset,
              0 1px 2px rgba(0,0,0,0.4);
}
.btn--primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset,
              0 4px 12px -4px color-mix(in oklch, var(--brand) 60%, transparent);
}

.btn--secondary {
  background: color-mix(in oklch, var(--surface) 50%, transparent);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover {
  background: color-mix(in oklch, var(--surface) 80%, transparent);
  border-color: var(--text-muted);
}

.btn--ghost { color: var(--text); padding: 8px 12px; border-radius: 5px; }
.btn--ghost:hover { color: var(--text); background: color-mix(in oklch, var(--text) 6%, transparent); }

.btn--lg { padding: 13px 22px; font-size: 15px; }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 12px 0;
  background: color-mix(in oklch, var(--bg) 75%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav__row {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ---------- Wordmark logo ---------- */
.logo {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}
.logo__a {
  color: var(--text);
}
.logo__o-final {
  position: relative;
  display: inline-block;
  color: var(--brand);
}
.logo__sparkle { display: none; }
.logo--lg { font-size: 28px; }

/* ---------- Nav links / dropdowns ---------- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
}
.nav__link {
  padding: 7px 12px;
  font-size: 14px;
  color: var(--text-body);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  background: none;
  border: 0;
}
.nav__link:hover, .nav__link[data-open="true"] { color: var(--text); background: color-mix(in oklch, var(--text) 6%, transparent); }
.nav__link .chev {
  font-size: 9px;
  opacity: 0.6;
  transition: transform 0.25s ease;
  display: inline-block;
  margin-left: 2px;
}
.nav__link[data-open="true"] .chev { transform: rotate(180deg); }

.navdd {
  position: relative;
}
.navdd--right .navdd__panel {
  left: auto;
  right: 0;
}
.navdd__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  width: 620px;
  max-width: calc(100vw - 64px);
  background: color-mix(in oklch, var(--surface) 96%, transparent);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 0, 0, 0.2);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  transition: opacity 0.18s ease, transform 0.2s ease;
}
.navdd__panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.navdd__list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.navdd__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: stretch;
  gap: 12px;
  padding: 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  width: 100%;
}
.navdd__item:hover, .navdd__item.active {
  background: var(--surface-2);
  border-color: var(--border);
}
.navdd__item-thumb {
  width: 96px;
  height: 64px;
  border-radius: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.navdd__item:hover .navdd__item-thumb,
.navdd__item.active .navdd__item-thumb {
  border-color: color-mix(in oklch, var(--icon-color, var(--brand)) 50%, var(--border));
}
.navdd__item-thumb svg { width: 100%; height: 100%; display: block; }
.navdd__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}
.navdd__item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navdd__item-name .navdd__item-icon {
  width: 14px;
  height: 14px;
  color: var(--icon-color, var(--brand));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navdd__item-name .navdd__item-icon svg {
  width: 14px;
  height: 14px;
}
.navdd__item-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.navdd__foot {
  margin-top: 4px;
  padding: 9px 6px 5px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  gap: 12px;
  white-space: nowrap;
}
.navdd__foot a {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.navdd__foot a:hover { color: var(--brand); }
/* Old preview pane (now unused; kept for backwards-compat but hidden) */
.navdd__preview { display: none; }

.nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: color-mix(in oklch, var(--text) 4%, transparent);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { background: color-mix(in oklch, var(--text) 8%, transparent); border-color: var(--border-strong); }
.theme-toggle svg { transition: transform 0.4s ease, opacity 0.3s ease; }
.theme-toggle .sun { opacity: 0; transform: rotate(-90deg); position: absolute; }
.theme-toggle .moon { opacity: 1; transform: rotate(0deg); }
:root[data-theme="light"] .theme-toggle .sun { opacity: 1; transform: rotate(0deg); position: absolute; }
:root[data-theme="light"] .theme-toggle .moon { opacity: 0; transform: rotate(90deg); }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* hamburger only visible on mobile */
.nav__burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--text) 4%, transparent);
  color: var(--text);
  align-items: center;
  justify-content: center;
}
.nav__burger:hover { background: color-mix(in oklch, var(--text) 8%, transparent); }

@media (max-width: 880px) {
  .nav__burger { display: inline-flex; }
  .nav__signin { display: none; }
  .nav__cta-btn { display: none; }
}
@media (max-width: 540px) {
  .nav__row { gap: 12px; }
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: color-mix(in oklch, var(--bg-2) 70%, transparent);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mnav--open { opacity: 1; pointer-events: auto; }

.mnav__sheet {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: min(380px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--border-strong);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.6);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 18px 22px 28px;
  overflow-y: auto;
}
.mnav--open .mnav__sheet { transform: translateX(0); }

.mnav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.mnav__close {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  display: grid; place-items: center;
}
.mnav__close:hover { background: var(--surface-2); }

.mnav__primary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.mnav__primary a {
  padding: 12px 4px;
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mnav__primary a:hover { color: var(--brand); }

.mnav__sec {
  margin-top: 18px;
}
.mnav__sec-h {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.mnav__sec-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mnav__sec-list a {
  padding: 9px 4px;
  font-size: 14.5px;
  color: var(--text-body);
}
.mnav__sec-list a:hover { color: var(--text); }

.mnav__cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mnav__cta .btn { width: 100%; justify-content: center; padding: 13px 18px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}

.hero__network {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 800px;
  max-height: 90%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  /* Donut mask: hollow center keeps text legible, ring of nodes around it, fade to edges */
  mask-image: radial-gradient(ellipse 60% 55% at 50% 48%,
    transparent 0%,
    rgba(0,0,0,0.15) 18%,
    black 38%,
    black 55%,
    transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 48%,
    transparent 0%,
    rgba(0,0,0,0.15) 18%,
    black 38%,
    black 55%,
    transparent 100%);
}
:root[data-theme="light"] .hero__network { opacity: 0.55; }
@media (max-width: 600px) {
  .hero__network { height: 600px; }
}

.hero__mesh {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__mesh .blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: float 20s ease-in-out infinite;
}
:root[data-theme="light"] .hero__mesh .blob { mix-blend-mode: multiply; }
.hero__mesh .blob--1 { top: 0; left: 8%; width: 520px; height: 520px; background: radial-gradient(circle, var(--mesh-1), transparent 65%); }
.hero__mesh .blob--2 { top: 10%; right: 5%; width: 480px; height: 480px; background: radial-gradient(circle, var(--mesh-2), transparent 65%); animation-delay: -5s; }
.hero__mesh .blob--3 { bottom: -10%; left: 30%; width: 580px; height: 580px; background: radial-gradient(circle, var(--mesh-3), transparent 65%); animation-delay: -10s; }
.hero__mesh .blob--4 { top: 30%; left: 45%; width: 340px; height: 340px; background: radial-gradient(circle, var(--mesh-4), transparent 65%); animation-delay: -15s; }
.hero__mesh .blob--5 { bottom: 0; right: 20%; width: 360px; height: 360px; background: radial-gradient(circle, var(--mesh-5), transparent 65%); animation-delay: -7s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: var(--noise-strength);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(color-mix(in oklch, var(--brand) 6%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklch, var(--brand) 6%, transparent) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  opacity: 0.4;
}

.hero__inner { position: relative; z-index: 2; }

.hero__top {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: color-mix(in oklch, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  font-size: 13px;
  color: var(--text-body);
}
.hero__pill .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
}

.hero__title {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 600;
  position: relative;
}
.hero__title .accent {
  color: var(--brand);
  position: relative;
  display: inline-block;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__meta .check { color: var(--aurora-cyan); }

.hero__doodle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
.hero__doodle--squiggle1 { top: 22%; left: 6%; width: 110px; color: var(--aurora-pink); animation: bob 4s ease-in-out infinite; }
.hero__doodle--star { top: 32%; right: 8%; width: 64px; color: var(--aurora-yellow); animation: spin 18s linear infinite; }
.hero__doodle--arrow { top: 56%; left: 14%; width: 130px; color: var(--aurora-cyan); }
.hero__doodle--dots { top: 64%; right: 7%; width: 90px; color: var(--aurora-violet); }
.hero__doodle--sparkle { bottom: 42%; right: 18%; width: 40px; color: var(--aurora-yellow); animation: pulse 2s ease-in-out infinite; }
.hero__doodle--burst { top: 18%; right: 22%; width: 50px; color: var(--aurora-orange); animation: spin 30s linear infinite reverse; }
.hero__doodle--loop { bottom: 18%; left: 6%; width: 100px; color: var(--aurora-lime); animation: bob 6s ease-in-out infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__note {
  position: absolute;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--aurora-yellow);
  z-index: 3;
  pointer-events: none;
  line-height: 1;
}
.hero__note--1 { top: 28%; right: 14%; transform: rotate(-6deg); }
.hero__note--2 { top: 58%; left: 18%; transform: rotate(4deg); color: var(--aurora-pink); }

.hero__preview {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  perspective: 1400px;
}
.hero__preview-frame {
  position: relative;
  border-radius: 10px;
  padding: 8px;
  background: linear-gradient(180deg, color-mix(in oklch, var(--brand) 35%, transparent), color-mix(in oklch, var(--border-strong) 50%, transparent) 50%, transparent 90%);
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.6),
              0 30px 80px -20px color-mix(in oklch, var(--brand) 20%, transparent);
  transform: rotateX(6deg);
  transform-origin: center bottom;
}
.hero__preview-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(180deg, color-mix(in oklch, var(--text) 18%, transparent), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero__preview-glow {
  position: absolute;
  inset: -10% -5% 60% -5%;
  background: radial-gradient(ellipse at center top, color-mix(in oklch, var(--brand) 25%, transparent), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

/* "Open the full dashboard" link below preview */
.hero__previewlink {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__previewlink a {
  color: var(--text);
  border-bottom: 1px dashed var(--brand);
  padding-bottom: 2px;
}
.hero__previewlink a:hover { color: var(--brand); }

/* ============================================
   PRODUCT CARD (dashboard mock) — shared
   ============================================ */

.dashmock {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.dashmock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dashmock__bar .dots { display: flex; gap: 6px; }
.dashmock__bar .dots span { width: 11px; height: 11px; border-radius: 50%; }
.dashmock__bar .dots span:nth-child(1) { background: #FF5F57; }
.dashmock__bar .dots span:nth-child(2) { background: #FEBC2E; }
.dashmock__bar .dots span:nth-child(3) { background: #28C840; }
.dashmock__bar .url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 5px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 380px;
}

.dashmock__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 480px;
}
.dashmock__side {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashmock__side-h {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  padding: 12px 10px 6px;
}
.dashmock__side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-body);
  border-radius: 6px;
}
.dashmock__side-item.active {
  background: var(--brand-soft);
  color: var(--text);
}
.dashmock__side-item svg { width: 14px; height: 14px; opacity: 0.7; }

.dashmock__main {
  padding: 24px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dashmock__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashmock__heading h3 { font-size: 19px; }
.dashmock__heading-actions { display: flex; gap: 8px; }
.dashmock__pill {
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 11px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.dashmock__pill--brand {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.dashmock__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.statcard {
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.statcard__lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.statcard__val { font-size: 22px; color: var(--text); margin-top: 4px; font-family: var(--font-mono); font-weight: 500; }
.statcard__delta { font-size: 11px; color: var(--success); margin-top: 2px; display: inline-flex; align-items: center; gap: 4px; }
.statcard__delta.warn { color: var(--warning); }

.dashmock__chart {
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 10px;
  height: 200px;
  position: relative;
}

.dashmock__deploys { display: flex; flex-direction: column; gap: 8px; }
.deploy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12.5px;
}
.deploy-row__status {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.deploy-row__status.building { background: var(--warning); box-shadow: 0 0 8px var(--warning); }
.deploy-row__sha { font-family: var(--font-mono); color: var(--text-body); }
.deploy-row__msg { color: var(--text-muted); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.deploy-row__time { color: var(--text-faint); font-size: 11px; font-family: var(--font-mono); }

/* ============================================
   LOGO STRIP
   ============================================ */

.logos {
  padding: 64px 0 24px;
  position: relative;
}
.logos__lbl {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.logos__marquee {
  display: flex;
  gap: 64px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logos__track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(calc(-50% - 32px)); }
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.logo-item:hover { opacity: 1; color: var(--text); }
.logo-item svg { width: 24px; height: 24px; }

/* ============================================
   TWO MODES
   ============================================ */

.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) {
  .modes { grid-template-columns: 1fr; }
}

.mode-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px 0;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.mode-card:hover {
  border-color: var(--border-strong);
}
.mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mode-gradient);
  opacity: 0.12;
  pointer-events: none;
}
.mode-card--sites { --mode-gradient: radial-gradient(circle at 0% 0%, var(--brand), transparent 60%); }
.mode-card--apps { --mode-gradient: radial-gradient(circle at 100% 0%, var(--accent-amber), transparent 60%); }

.mode-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.mode-card__icon {
  width: 44px; height: 44px;
  border-radius: 7px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
}
.mode-card--sites .mode-card__icon { color: var(--brand); }
.mode-card--apps .mode-card__icon { color: var(--accent-amber); }
.mode-card__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  white-space: nowrap;
}
.mode-card__title {
  font-size: 32px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.mode-card__desc {
  margin-top: 12px;
  color: var(--text-body);
  font-size: 16px;
  position: relative;
  z-index: 1;
  max-width: 440px;
}
.mode-card__list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.mode-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.mode-card__list li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}
.mode-card__cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.mode-card--sites .mode-card__cta:hover { color: var(--brand); }
.mode-card--apps .mode-card__cta:hover { color: var(--accent-amber); }

.mode-card__viz {
  margin-top: auto;
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: -1px;
  padding: 24px 24px 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   FEATURE GRID
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 24px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  min-height: 200px;
  overflow: hidden;
}
.feature:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.feature__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 6px;
  margin-bottom: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--feat-color, var(--brand));
}
.feature__title {
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.feature__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.feature__corner {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 100% 0%, var(--feat-color, var(--brand)), transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

/* ============================================
   TEMPLATES
   ============================================ */

.templates__head {
  align-items: flex-start !important;
  text-align: left;
  max-width: none !important;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 32px !important;
  gap: 32px;
  flex-wrap: wrap;
}
.templates__head-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.templates__head-cta { align-self: flex-end; }
@media (max-width: 700px) {
  .templates__head { flex-direction: column; }
  .templates__head-cta { align-self: flex-start; }
}

.templates { position: relative; }
.templates__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 32px 32px;
  margin: 0 -32px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.templates__track::-webkit-scrollbar { height: 6px; }
.templates__track::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }

.tpl {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.tpl:hover { border-color: var(--border-strong); }
.tpl__top {
  padding: 24px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tpl-bg, linear-gradient(135deg, var(--surface-3), var(--surface-2)));
  position: relative;
  overflow: hidden;
}
.tpl__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 60%);
}
.tpl__logo {
  width: 64px; height: 64px;
  color: var(--tpl-color, white);
  position: relative;
  z-index: 1;
}
.tpl__body {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--border);
}
.tpl__name {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.tpl__desc { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.tpl__deploy {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */

.beforeafter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) { .beforeafter { grid-template-columns: 1fr; } }

.ba-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.ba-card__head {
  padding: 22px 26px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.ba-card__head h4 { font-size: 19px; }
.ba-card__head .stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: 600;
}
.ba-card--before .stamp { color: var(--danger); background: color-mix(in oklch, var(--danger) 12%, transparent); border: 1px solid color-mix(in oklch, var(--danger) 40%, transparent); }
.ba-card--after .stamp { color: var(--brand); background: var(--brand-soft); border: 1px solid color-mix(in oklch, var(--brand) 40%, transparent); }
.ba-card__body {
  flex: 1;
  padding: 24px;
  position: relative;
  background: var(--surface);
}

/* cPanel mock */
.cpanel {
  background: var(--cpanel-body);
  color: #2B3138;
  font-family: "Tahoma", "Verdana", sans-serif;
  font-size: 11px;
  padding: 8px;
  border-radius: 4px;
  height: 100%;
}
.cpanel__bar {
  background: linear-gradient(180deg, #5577AA, #3E5C8A);
  color: white;
  padding: 6px 10px;
  font-weight: bold;
  font-size: 11px;
  border-radius: 3px 3px 0 0;
  display: flex;
  justify-content: space-between;
}
.cpanel__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 6px;
}
.cpanel__tile {
  background: #FFFFFF;
  border: 1px solid #B5BCC7;
  padding: 8px 4px 6px;
  text-align: center;
  border-radius: 2px;
  font-size: 9.5px;
  color: #2B3138;
  line-height: 1.2;
}
.cpanel__tile-icon {
  font-size: 16px;
  display: block;
  margin: 0 auto 3px;
  width: 22px; height: 22px;
}
.cpanel__notice {
  margin-top: 6px;
  background: #FFFFCC;
  border: 1px solid #D4A017;
  padding: 5px 8px;
  font-size: 10px;
  color: #5B4500;
}

/* absolo wizard */
.wizard {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wizard__steps {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.wizard__step {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: var(--surface-2);
}
.wizard__step.done { background: var(--aurora-cyan); }
.wizard__step.active { background: linear-gradient(90deg, var(--aurora-cyan), var(--brand)); }
.wizard__h {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.wizard__lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wizard__input {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  width: 100%;
}
.wizard__opt-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.wizard__opt {
  padding: 12px 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--text-body);
}
.wizard__opt.sel {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--text);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--brand) 22%, transparent);
}
.wizard__opt .tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.wizard__btn {
  margin-top: auto;
  padding: 12px;
  background: linear-gradient(135deg, var(--brand), var(--aurora-magenta));
  border-radius: 10px;
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan--featured {
  background: var(--surface);
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}
.plan__badge {
  position: absolute;
  top: -10px; left: 20px;
  background: var(--brand);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  font-weight: 600;
}
.plan__name {
  font-size: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.plan__price {
  font-size: 56px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan__price .currency { font-size: 24px; opacity: 0.6; }
.plan__price .per { font-size: 14px; color: var(--text-muted); font-weight: 400; letter-spacing: 0; }
.plan__desc { font-size: 14px; color: var(--text-muted); }
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  margin: 4px 0;
}
.plan__features li { display: flex; align-items: flex-start; gap: 10px; }
.plan__features li svg { color: var(--aurora-cyan); flex-shrink: 0; margin-top: 3px; }
.plan__btn {
  margin-top: auto;
  padding: 11px;
  background: var(--surface-2);
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  color: var(--text);
  border: 1px solid var(--border-strong);
  transition: background 0.15s, border-color 0.15s;
}
.plan__btn:hover { background: var(--surface-3); border-color: var(--text-muted); }
.plan--featured .plan__btn {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.plan--featured .plan__btn:hover { background: var(--brand-hover); border-color: var(--brand-hover); }

/* ============================================
   DEV TERMINAL
   ============================================ */

.dev-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .dev-section { grid-template-columns: 1fr; } }

.dev-section__copy h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.03em; }
.dev-section__copy p { font-size: 18px; color: var(--text-body); margin-top: 16px; max-width: 480px; }
.dev-section__list {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dev-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
}
.dev-section__list li svg { color: var(--aurora-cyan); flex-shrink: 0; margin-top: 2px; }
.dev-section__list li b { color: var(--text); font-weight: 500; }

.terminal {
  background: #06080A;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  font-family: var(--font-mono);
  font-size: 13.5px;
  position: relative;
}
.terminal::after {
  content: none;
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #0E1217;
  border-bottom: 1px solid #1A1F26;
  font-size: 11px;
  color: #6E7A8A;
}
.terminal__bar .dots { display: flex; gap: 6px; }
.terminal__bar .dots span { width: 9px; height: 9px; border-radius: 50%; background: #2A3038; }
.terminal__bar .dots span:nth-child(1) { background: #D45B5B; }
.terminal__bar .dots span:nth-child(2) { background: #F0B442; }
.terminal__bar .dots span:nth-child(3) { background: #E8742C; }
.terminal__title { font-family: var(--font-mono); letter-spacing: 0.04em; }
.terminal__body {
  padding: 20px 24px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.7;
  color: #B6BFC9;
}
.term-line { color: inherit; white-space: pre-wrap; }
.term-line .prompt { color: #E8742C; }
.term-line .arrow { color: #6E7A8A; }
.term-line .ok { color: #E8742C; }
.term-line .info { color: #7B8593; }
.term-line .pink { color: #C97A3B; }
.term-line .yellow { color: #F0B442; }
.term-line .dim { color: #4A525E; }
.term-line .url { color: #FFB075; }
.term-line.cursor::after {
  content: "\258D";
  color: #E8742C;
  animation: blink 1.1s steps(2) infinite;
}
@keyframes blink { to { opacity: 0; } }

/* ============================================
   TESTIMONIAL
   ============================================ */

.testi {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.testi__quote {
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
}
.testi__quote::before {
  content: "\201C";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  color: var(--brand);
  opacity: 0.25;
  line-height: 1;
  font-family: var(--font-display);
}
.testi__author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testi__avatar {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.testi__meta { text-align: left; }
.testi__name { color: var(--text); font-weight: 500; font-size: 15px; }
.testi__role { color: var(--text-muted); font-size: 13px; }

/* ============================================
   CTA BANNER
   ============================================ */

.cta {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 72px 56px;
  background: linear-gradient(135deg, var(--accent-emerald-deep), #0F4A2E 60%, #0A2A1B);
  text-align: center;
  isolation: isolate;
  border: 1px solid var(--accent-emerald-deep);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.035em;
  color: white;
}
.cta h2 .accent {
  color: var(--accent-emerald-glow);
  font-weight: 600;
}
.cta p { font-size: 18px; color: rgba(255,255,255,0.88); margin: 16px auto 0; max-width: 560px; }
.cta__btns { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.cta__doodle1 { position: absolute; top: 20px; left: 5%; width: 70px; color: var(--aurora-yellow); animation: bob 4s ease-in-out infinite; }
.cta__doodle2 { position: absolute; bottom: 24px; right: 6%; width: 90px; color: var(--aurora-cyan); animation: spin 22s linear infinite; }

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

.footer__brand .logo { margin-bottom: 14px; }
.footer__tag { color: var(--text-muted); font-size: 14px; max-width: 260px; line-height: 1.6; margin-top: 14px; }
.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer__social a:hover { color: var(--text); border-color: var(--brand); }

.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--text-body); font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__regions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__region {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
}
.footer__region .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .container { padding: 0 16px; }
  .cta { padding: 40px 22px; border-radius: 8px; }
  .hero { padding: 110px 0 40px; }
  .hero__title { font-size: clamp(38px, 10vw, 56px); }
  .hero__sub { font-size: 15.5px; }
  .hero__pill { font-size: 12px; padding: 4px 4px 4px 10px; }
  .hero__pill .tag { font-size: 9.5px; padding: 2px 6px; }
  .hero__meta { gap: 14px; font-size: 12px; flex-wrap: wrap; justify-content: center; }
  .hero__cta .btn { padding: 12px 18px; font-size: 14.5px; }
  .hero__preview-frame { transform: none; padding: 6px; }
  .dashmock__body { grid-template-columns: 1fr; min-height: auto; }
  .dashmock__side { display: none; }
  .dashmock__main { padding: 16px; gap: 14px; }
  .dashmock__stats { grid-template-columns: 1fr 1fr; }
  .dashmock__chart { height: 160px; }
  .section-head { margin-bottom: 40px; gap: 14px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 40px); }
  .section-head p { font-size: 15px; }
  .mode-card { padding: 26px 22px 0; min-height: auto; }
  .mode-card__title { font-size: 24px; }
  .mode-card__viz { margin-left: -22px; margin-right: -22px; padding: 16px 16px 0; }
  .feature { padding: 22px 20px; min-height: auto; }
  .features { gap: 12px; }
  .ba-card__body { padding: 16px; }
  .cpanel__grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { gap: 14px; }
  .plan { padding: 24px 20px; }
  .plan__price { font-size: 44px; }
  .dev-section { grid-template-columns: 1fr; gap: 28px; }
  .terminal__body { padding: 14px 18px; min-height: 280px; font-size: 12.5px; }
  .testi__quote { font-size: 18px; line-height: 1.45; }
  .testi__quote::before { font-size: 64px; top: -30px; }
  footer { padding: 56px 0 28px; margin-top: 56px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { margin-top: 40px; }
  .templates__track { padding: 4px 16px 24px; margin: 0 -16px; }
  .tpl { flex: 0 0 240px; }
  .cta h2 { font-size: clamp(28px, 7vw, 42px); }
  .cta p { font-size: 15px; }
  .nav.scrolled { padding: 10px 0; }
}

@media (max-width: 420px) {
  .hero__cta { width: 100%; flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .cta__btns { flex-direction: column; align-items: stretch; }
  .cta__btns .btn { justify-content: center; }
  .dashmock__stats { grid-template-columns: 1fr 1fr; }
  .cpanel__grid { grid-template-columns: repeat(3, 1fr); }
}
