/* ============================================================
   watsinfo — Landing Page
   Dark Precision Editorial — Cormorant + Syne + Space Mono
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --ink:         #07080e;
  --surface:     #0d0f18;
  --surface-2:   #111420;
  --edge:        #1c1f30;
  --edge-2:      #252840;
  --gold:        #c8923a;
  --gold-bright: #e2ad58;
  --gold-muted:  #6a4c22;
  --mint:        #3dc48a;
  --coral:       #e05656;
  --text:        #dcd8cf;
  --text-sub:    #8a8d9e;
  --text-dim:    #3e4155;
  --text-inv:    #07080e;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Syne', system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Spacing scale */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- Canvas Background --- */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* --- Scroll-fade utility --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--s6);
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease),
              border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 8, 14, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--edge);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold-muted);
  border-radius: 6px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-logo:hover .logo-mark { border-color: var(--gold-bright); }

.logo-text {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s6);
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-sub);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s var(--ease);
}
.nav-link:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-inv);
  background: var(--gold-bright);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.2s var(--ease);
}
.nav-cta:hover {
  background: #ebb96a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(226, 173, 88, 0.25);
}
.nav-cta:active { transform: translateY(0); }
.cta-arrow { font-size: 14px; }

/* ============================================================
   Layout helpers
   ============================================================ */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s6);
  position: relative;
  z-index: 1;
}

.section-label {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
}
.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(64px + var(--s9)) var(--s6) var(--s10);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 146, 58, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61, 196, 138, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0;
  align-items: start;
}

.hero-badge {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: var(--s5);
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.1s forwards;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--mint); }
  50%       { opacity: 0.6; box-shadow: 0 0 16px var(--mint); }
}

.hero-headline {
  grid-column: 1;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--s6);
}

.hero-headline .line {
  display: block;
  opacity: 0;
}
.hero-headline .line-1 { animation: fadeSlideUp 0.7s var(--ease-out) 0.25s forwards; }
.hero-headline .line-2 { animation: fadeSlideUp 0.7s var(--ease-out) 0.38s forwards; }
.hero-headline .line-3 { animation: fadeSlideUp 0.7s var(--ease-out) 0.51s forwards; }
.hero-headline .line-italic { font-style: italic; color: var(--gold-bright); }

.hero-sub {
  grid-column: 1;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-sub);
  margin-bottom: var(--s7);
  max-width: 460px;
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.6s forwards;
}
.br-desktop { display: block; }

.hero-actions {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: var(--s5);
  margin-bottom: var(--s8);
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.72s forwards;
}

.hero-stats {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: var(--s5);
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.85s forwards;
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--edge);
  flex-shrink: 0;
}

/* Hero visual — terminal card */
.hero-visual {
  grid-column: 2;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: var(--s8);
  padding-top: 40px;
  opacity: 0;
  animation: fadeSlideLeft 0.9s var(--ease-out) 0.55s forwards;
}

.terminal-card {
  width: 400px;
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--edge),
    0 24px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(200,146,58,0.06);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--edge);
}
.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--edge-2);
}
.terminal-dots span:nth-child(1) { background: #e05656; opacity: 0.7; }
.terminal-dots span:nth-child(2) { background: #e0a556; opacity: 0.7; }
.terminal-dots span:nth-child(3) { background: #56e080; opacity: 0.7; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-left: auto;
  margin-right: auto;
}

.terminal-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; }

.feed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 8px;
  background: var(--surface-2);
  border-radius: 5px;
  border: 1px solid var(--edge);
}
.feed-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  min-width: 82px;
}
.feed-val { color: var(--text); flex: 1; }
.feed-delta { font-size: 11px; font-weight: 700; }
.feed-row--up .feed-delta  { color: var(--mint); }
.feed-row--down .feed-delta { color: var(--coral); }

.feed-divider { height: 1px; background: var(--edge); margin: 4px 0; }

.feed-news-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.5;
  padding: 4px 0;
}
.feed-impact {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 1px;
}
.feed-impact--high { background: rgba(224, 86, 86, 0.15); color: var(--coral); border: 1px solid rgba(224,86,86,0.25); }
.feed-impact--med  { background: rgba(200,146,58,0.12); color: var(--gold); border: 1px solid rgba(200,146,58,0.2); }
.feed-impact--low  { background: rgba(61,196,138,0.1); color: var(--mint); border: 1px solid rgba(61,196,138,0.18); }
.feed-news-text { color: var(--text-sub); font-family: var(--font-ui); font-size: 12px; line-height: 1.45; }

.feed-cursor {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-bright);
  animation: blink 1.1s step-end infinite;
  padding: 4px 8px 0;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bright);
  color: var(--text-inv);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn-primary:hover {
  background: #ebb96a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226,173,88,0.3);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-primary--large { font-size: 15px; padding: 14px 30px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.btn-ghost:hover { color: var(--text); }

/* ============================================================
   Products Section
   ============================================================ */
.products {
  padding: var(--s10) 0;
  position: relative;
  z-index: 1;
}
.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--edge-2), transparent);
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--s4);
}
.section-headline em { font-style: italic; color: var(--gold-bright); }

.section-sub {
  font-size: 15.5px;
  color: var(--text-sub);
  max-width: 560px;
  margin-bottom: var(--s8);
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: var(--s5);
  align-items: start;
}

/* --- Product Card Base --- */
.product-card {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product-card:hover { transform: translateY(-4px); }

.product-card--live {
  background: var(--surface);
  border: 1px solid var(--edge-2);
  box-shadow: 0 0 0 1px var(--edge), 0 16px 40px rgba(0,0,0,0.4);
}
.product-card--live:hover {
  border-color: rgba(200,146,58,0.4);
  box-shadow: 0 0 0 1px rgba(200,146,58,0.15), 0 20px 50px rgba(0,0,0,0.5),
              0 0 50px rgba(200,146,58,0.08);
}

.product-card--soon {
  background: var(--surface);
  border: 1px solid var(--edge);
  opacity: 0.72;
}
.product-card--soon:hover { opacity: 0.9; border-color: var(--edge-2); }

.product-card-inner { padding: var(--s6); position: relative; z-index: 1; }

.product-card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,58,0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.product-card--live:hover .product-card-glow { opacity: 1.5; }

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s5);
}

.product-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,146,58,0.1);
  border: 1px solid rgba(200,146,58,0.2);
  border-radius: 10px;
  color: var(--gold-bright);
}
.product-icon--dim {
  background: var(--surface-2);
  border-color: var(--edge);
  color: var(--text-dim);
}

.product-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-status--live {
  background: rgba(61,196,138,0.1);
  color: var(--mint);
  border: 1px solid rgba(61,196,138,0.2);
}
.product-status--soon {
  background: var(--surface-2);
  color: var(--text-dim);
  border: 1px solid var(--edge);
}

.live-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse-dot 2s ease-in-out infinite;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--text);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}
.product-name--dim { color: var(--text-sub); }

.product-tagline {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: var(--s5);
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: var(--s6);
}
.product-features li {
  font-size: 13px;
  color: var(--text-sub);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.product-features--dim li { color: var(--text-dim); }
.product-features--dim li::before { background: var(--text-dim); }

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-bright);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.product-cta:hover { color: #ebb96a; gap: 12px; }

.product-waitlist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  cursor: default;
}

/* ============================================================
   About Section
   ============================================================ */
.about {
  padding: var(--s10) 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(13,15,24,0.5) 50%, transparent 100%);
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--edge-2), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s10);
  align-items: start;
}

.about-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: var(--s2);
}
.about-headline em { font-style: italic; color: var(--gold-bright); }

.about-body {
  font-size: 15.5px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: var(--s5);
}
.about-body em { font-style: italic; color: var(--text); }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  margin-top: var(--s6);
  padding-top: var(--s6);
  border-top: 1px solid var(--edge);
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--s5);
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 2px;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.pillar span {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  padding: var(--s10) 0;
  position: relative;
  z-index: 1;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--edge-2), transparent);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  padding: var(--s8);
  background: var(--surface);
  border: 1px solid var(--edge-2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,146,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  color: var(--text);
}
.cta-headline em { font-style: italic; color: var(--gold-bright); }
.cta-banner-text p {
  font-size: 14.5px;
  color: var(--text-sub);
  margin-top: var(--s3);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: var(--s8) 0 var(--s7);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--edge);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s8);
  padding-bottom: var(--s7);
  border-bottom: 1px solid var(--edge);
  margin-bottom: var(--s6);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  text-decoration: none;
  color: var(--text);
  margin-bottom: var(--s4);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-links-group a {
  font-size: 13.5px;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links-group a:hover { color: var(--text); }

.tag-soon {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--edge);
  padding: 1px 5px;
  border-radius: 3px;
}

.footer-disclaimer {
  padding: var(--s5) 0;
  border-top: 1px solid var(--edge);
  margin-bottom: var(--s4);
}
.footer-disclaimer p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 720px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12.5px;
  color: var(--text-dim);
}
.footer-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero { padding-top: calc(64px + 60px); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(48px, 8vw, 72px); }
  .hero-badge, .hero-headline, .hero-sub,
  .hero-actions, .hero-stats { grid-column: 1; }
  .hero-visual { grid-column: 1; grid-row: auto; justify-content: flex-start; padding-left: 0; padding-top: var(--s7); }
  .terminal-card { width: 100%; max-width: 440px; }

  .about-grid { grid-template-columns: 1fr; gap: var(--s7); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card--live { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav { padding: 0 var(--s5); }
  .nav-links { gap: var(--s4); }
  .nav-link { display: none; }
  .section-inner { padding: 0 var(--s5); }
  .products-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: var(--s6); padding: var(--s6); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: var(--s2); align-items: flex-start; }
  .br-desktop { display: none; }
  .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero { padding-bottom: var(--s9); }
  .hero-headline { font-size: 44px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
