/* ============================================================
   SIMPLY SECURE — Design System
   Dark, warm near-black. Orange/amber accent. Tech + enterprise.
   ============================================================ */

:root {
  /* Surfaces — warm near-black */
  --bg:        #0a0908;
  --bg-grad:   #0e0c0a;
  --surface:   #131110;
  --surface-2: #1a1715;
  --surface-3: #221d1a;
  --line:      rgba(255, 246, 238, 0.08);
  --line-2:    rgba(255, 246, 238, 0.14);

  /* Text */
  --text:   #f6f2ec;
  --text-2: #c8bfb4;
  --muted:  #8a8079;
  --faint:  #5b534d;

  /* Accent — Rapid7-style orange/amber */
  --accent:      #ff6a1f;
  --accent-hot:  #ff8a3d;
  --accent-deep: #d24b0c;
  --accent-soft: rgba(255, 106, 31, 0.14);
  --accent-line: rgba(255, 106, 31, 0.42);

  /* Status (scoring) */
  --green: #46d18a;
  --amber: #f5c452;
  --red:   #f0584f;
  --green-soft: rgba(70, 209, 138, 0.14);
  --amber-soft: rgba(245, 196, 82, 0.14);
  --red-soft:   rgba(240, 88, 79, 0.14);

  /* Type */
  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body:    'Manrope', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Ambient background texture: dotted grid + warm glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(255, 106, 31, 0.13), transparent 60%),
    radial-gradient(900px 600px at 8% 4%, rgba(255, 138, 61, 0.06), transparent 55%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,246,238,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,246,238,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ---- Eyebrow / mono labels ---- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

/* ---- Headings ---- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; margin: 0; }

.section { padding: 110px 0; position: relative; z-index: 1; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 18px 0 0; }
.section-head p { color: var(--text-2); font-size: 1.08rem; margin: 18px 0 0; max-width: 580px; }

/* ============================================================
   HEADER
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 72px; }

.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(150deg, var(--accent-hot), var(--accent-deep));
  display: grid; place-items: center;
  font-family: var(--f-mono); font-weight: 700; font-size: 0.78rem; color: #1a0e06;
  box-shadow: 0 4px 18px rgba(255,106,31,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
.logo-word { font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.02em; }
.logo-word b { color: var(--text); font-weight: 600; }
.logo-word span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; margin-left: 12px; }
.nav-links a { font-size: 0.92rem; color: var(--text-2); transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line-2);
  border-radius: 10px; background: var(--surface); cursor: pointer;
}
.nav-burger span { display: block; height: 2px; border-radius: 2px; background: var(--text); transition: transform .25s, opacity .2s; }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-weight: 600; font-size: 0.92rem;
  padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
  transition: transform .15s, background .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(160deg, var(--accent-hot), var(--accent));
  color: #1c0d04;
  box-shadow: 0 6px 20px rgba(255,106,31,0.32), inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(255,106,31,0.45); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent-line); background: var(--accent-soft); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px 0 90px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 64px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.08em;
  padding: 7px 13px; border-radius: 100px;
  border: 1px solid var(--line-2); background: var(--surface);
  color: var(--text-2); margin-bottom: 26px;
}
.dot-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(70,209,138,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(70,209,138,0.55);} 70% { box-shadow: 0 0 0 8px rgba(70,209,138,0);} 100% { box-shadow: 0 0 0 0 rgba(70,209,138,0);} }

.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.7rem); letter-spacing: -0.035em; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .mono { font-family: var(--f-mono); font-weight: 500; }
.hero-sub { color: var(--text-2); font-size: 1.16rem; margin: 26px 0 0; max-width: 520px; }

/* domain scan input */
.scan-form { margin-top: 36px; max-width: 520px; }
.scan-field {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 7px 7px 7px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.scan-field:focus-within { border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-soft); }
.scan-field .prompt { font-family: var(--f-mono); color: var(--accent); font-size: 0.95rem; }
.scan-field input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--text); font-family: var(--f-mono); font-size: 1rem; padding: 8px 4px;
}
.scan-field input::placeholder { color: var(--faint); }
.scan-note { margin: 12px 2px 0; font-size: 0.84rem; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; }
.scan-note span { display: inline-flex; align-items: center; gap: 6px; }
.tick { color: var(--green); }

.hero-note { margin-top: 40px; font-size: 0.9rem; }

/* ---- Hero scan console ---- */
.console {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,106,31,0.04);
  overflow: hidden;
  position: relative;
}
.console-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.console-bar .dots { display: flex; gap: 6px; }
.console-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.console-bar .dots i:nth-child(1){ background:#ff5f57; } .console-bar .dots i:nth-child(2){ background:#febc2e; } .console-bar .dots i:nth-child(3){ background:#28c840; }
.console-bar .title { font-family: var(--f-mono); font-size: 0.78rem; color: var(--muted); margin-left: 6px; }
.console-bar .live { margin-left: auto; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--green); display: flex; align-items: center; gap: 6px; }

.console-body { padding: 18px; min-height: 388px; position: relative; }

/* terminal feed */
.term { font-family: var(--f-mono); font-size: 0.82rem; line-height: 1.85; }
.term .ln { white-space: pre-wrap; opacity: 0; transform: translateY(4px); animation: lnIn .25s forwards; }
@keyframes lnIn { to { opacity: 1; transform: none; } }
.term .c-prompt { color: var(--accent); }
.term .c-tool   { color: var(--accent-hot); }
.term .c-arg    { color: var(--text-2); }
.term .c-ok     { color: var(--green); }
.term .c-warn   { color: var(--amber); }
.term .c-dim    { color: var(--muted); }
.term .cursor { display:inline-block; width:8px; height:1.05em; background: var(--accent); vertical-align:-2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* results dashboard inside console */
.result {
  opacity: 0; pointer-events: none;
  position: absolute; inset: 0; padding: 18px;
  display: flex; flex-direction: column; justify-content: center;
}
.result.show { opacity: 1; pointer-events: auto; animation: lnIn .4s; }
.result-top { display: flex; align-items: center; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.score-ring { position: relative; width: 116px; height: 116px; flex-shrink: 0; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring .val { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; }
.score-ring .val b { font-family: var(--f-display); font-size: 2rem; line-height: 1; }
.score-ring .val small { font-family: var(--f-mono); font-size: 0.6rem; color: var(--muted); letter-spacing: 0.1em; }
.result-top .meta h4 { font-family: var(--f-display); font-size: 1.05rem; margin: 0 0 4px; }
.result-top .meta p { margin: 0; font-size: 0.82rem; color: var(--muted); }
.result-top .meta .delta { color: var(--green); font-family: var(--f-mono); font-size: 0.78rem; }

.asset-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 16px; }
.asset-cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 14px; display: flex; flex-direction: column; gap: 3px;
}
.asset-cell .n { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; }
.asset-cell .l { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.asset-cell .n.crit { color: var(--red); }
.asset-cell .n.warn { color: var(--amber); }

/* scanning shimmer line */
.scanline { position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px 2px rgba(255,106,31,0.5); opacity: 0; }
.scanning .scanline { opacity: 1; animation: sweep 1.4s linear infinite; }
@keyframes sweep { 0% { top: 0; } 100% { top: 100%; } }

/* ============================================================
   LOGO STRIP / STATS
   ============================================================ */
.statband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.012); }
.stats { display: grid; grid-template-columns: repeat(3,1fr); }
.stat { padding: 48px 32px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--f-display); font-size: clamp(2.6rem,4vw,3.6rem); font-weight: 600; line-height: 1; letter-spacing: -0.03em; }
.stat .num .accent { color: var(--accent); }
.stat .lbl { color: var(--text-2); margin-top: 12px; font-size: 0.98rem; max-width: 260px; }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: border-color .25s, transform .25s, background .25s;
  position: relative; overflow: hidden;
}
.feat:hover { border-color: var(--accent-line); transform: translateY(-3px); background: var(--surface-2); }
.feat .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-hot);
  margin-bottom: 20px;
}
.feat .ico svg { width: 22px; height: 22px; }
.feat h3 { font-size: 1.18rem; margin-bottom: 9px; }
.feat p { color: var(--text-2); font-size: 0.95rem; margin: 0; }
.feat .tag { position: absolute; top: 20px; right: 20px; font-family: var(--f-mono); font-size: 0.64rem; color: var(--faint); letter-spacing: 0.1em; }

/* ============================================================
   DEMO DASHBOARD
   ============================================================ */
.demo-shell {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2); border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.85);
}
.demo-topbar { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-bottom: 1px solid var(--line); background: rgba(0,0,0,0.22); }
.demo-topbar .dots { display: flex; gap: 6px; }
.demo-topbar .dots i { width: 11px; height: 11px; border-radius: 50%; }
.demo-topbar .dots i:nth-child(1){ background:#ff5f57; } .demo-topbar .dots i:nth-child(2){ background:#febc2e; } .demo-topbar .dots i:nth-child(3){ background:#28c840; }
.demo-topbar .url { flex: 1; max-width: 360px; font-family: var(--f-mono); font-size: 0.8rem; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 7px 14px; }
.demo-topbar .url b { color: var(--text-2); }

.demo-body { display: grid; grid-template-columns: 300px 1fr; min-height: 540px; }
.demo-side { border-right: 1px solid var(--line); padding: 26px; background: rgba(0,0,0,0.18); }
.demo-main { padding: 28px; }

.demo-big-score { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 8px 0 24px; }
.demo-big-score .ring { position: relative; width: 168px; height: 168px; }
.demo-big-score .ring svg { transform: rotate(-90deg); }
.demo-big-score .ring .center { position: absolute; inset: 0; display: grid; place-content: center; }
.demo-big-score .ring .center .s { font-family: var(--f-display); font-size: 3.1rem; font-weight: 700; line-height: 1; }
.demo-big-score .ring .center .t { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
.demo-big-score .delta { margin-top: 14px; font-family: var(--f-mono); font-size: 0.82rem; color: var(--green); background: var(--green-soft); padding: 4px 12px; border-radius: 100px; }

.demo-week { margin-top: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.demo-week h5 { font-family: var(--f-display); font-size: 0.95rem; margin: 0 0 16px; text-align: center; }
.demo-week .row { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.demo-week .row:first-of-type { border-top: 0; }
.demo-week .accent-bar { width: 3px; border-radius: 3px; }
.demo-week .row.found .accent-bar { background: var(--red); }
.demo-week .row.fixed .accent-bar { background: var(--green); }
.demo-week .row .kv { flex: 1; }
.demo-week .row .kv .label { font-family: var(--f-display); font-size: 0.88rem; margin-bottom: 6px; }
.demo-week .row .kv .pair { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); }
.demo-week .row .kv .pair b { color: var(--text); font-family: var(--f-mono); }

.demo-main-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 16px; }
.demo-tabs { display: flex; gap: 24px; }
.demo-tabs button { background: 0; border: 0; padding: 0 0 8px; color: var(--muted); font-size: 0.98rem; font-weight: 600; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.demo-tabs button.active { color: var(--text); border-color: var(--accent); }

.qfilter { display: flex; gap: 8px; }
.qfilter button {
  font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.04em;
  padding: 7px 13px; border-radius: 9px; border: 1px solid var(--line-2); background: var(--surface);
  color: var(--text-2); transition: all .18s; display: flex; align-items: center; gap: 7px;
}
.qfilter button:hover { border-color: var(--line-2); color: var(--text); }
.qfilter button.active { color: var(--text); }
.qfilter button[data-f="errors"].active { border-color: var(--red); background: var(--red-soft); color: var(--red); }
.qfilter button[data-f="warnings"].active { border-color: var(--amber); background: var(--amber-soft); color: var(--amber); }
.qfilter button[data-f="passed"].active { border-color: var(--green); background: var(--green-soft); color: var(--green); }
.qfilter button[data-f="all"].active { border-color: var(--accent-line); background: var(--accent-soft); color: var(--accent-hot); }

.issue-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.issue {
  border-radius: 16px; padding: 20px; min-height: 150px; position: relative;
  border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s, opacity .2s; overflow: hidden;
}
.issue:hover { transform: translateY(-3px); }
.issue.hidden { display: none; }
.issue .iv { font-family: var(--f-display); font-size: 2.3rem; font-weight: 700; line-height: 1; }
.issue .it { font-size: 0.95rem; color: var(--text); margin-top: 6px; font-weight: 600; }
.issue .pills { display: flex; gap: 7px; margin-top: 14px; }
.issue .pill { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 600; min-width: 26px; height: 24px; padding: 0 8px; border-radius: 100px; display: grid; place-items: center; }
.issue .pill.e { background: var(--red); color: #2a0907; }
.issue .pill.w { background: var(--amber); color: #2c2306; }
.issue .pill.p { background: var(--green); color: #052414; }
.issue.sev-crit { background: linear-gradient(155deg, rgba(240,88,79,0.20), rgba(240,88,79,0.04)); border-color: rgba(240,88,79,0.3); }
.issue.sev-warn { background: linear-gradient(155deg, rgba(255,106,31,0.20), rgba(255,106,31,0.04)); border-color: rgba(255,138,61,0.3); }
.issue.sev-ok   { background: linear-gradient(155deg, rgba(70,209,138,0.16), rgba(70,209,138,0.03)); border-color: rgba(70,209,138,0.26); }
.issue.sev-crit .iv { color: var(--red); }
.issue.sev-warn .iv { color: var(--accent-hot); }
.issue.sev-ok .iv { color: var(--green); }

.discovered { margin-top: 22px; }
.discovered h4 { font-family: var(--f-display); font-size: 1.05rem; margin: 0 0 14px; }
.disc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.disc {
  background: linear-gradient(155deg, rgba(70,209,138,0.10), transparent);
  border: 1px solid rgba(70,209,138,0.22); border-radius: 14px; padding: 18px;
  position: relative; overflow: hidden;
}
.disc .dn { font-family: var(--f-display); font-size: 1.9rem; font-weight: 700; color: var(--green); }
.disc .dl { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); margin-top: 2px; }
.disc .badge { position: absolute; top: 14px; right: 14px; font-family: var(--f-mono); font-size: 0.66rem; color: var(--green); background: var(--green-soft); padding: 2px 7px; border-radius: 100px; }

/* ============================================================
   WHY / SPLIT
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden; }
.why-card .eyebrow { margin-bottom: 16px; }
.why-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.why-card p { color: var(--text-2); font-size: 0.98rem; margin: 0; }
.why-card.big { grid-column: span 7; }
.why-card.small { grid-column: span 5; }
.why-card.half { grid-column: span 6; }
.why-card .huge { font-family: var(--f-display); font-size: clamp(3rem,6vw,5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }

.tools { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tool-chip {
  font-family: var(--f-mono); font-size: 0.82rem; padding: 8px 14px; border-radius: 9px;
  border: 1px solid var(--line-2); background: var(--bg); color: var(--text-2);
  display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s, color .2s;
}
.tool-chip:hover { border-color: var(--accent-line); color: var(--text); }
.tool-chip::before { content: "$"; color: var(--accent); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 36px;
  position: relative; display: flex; flex-direction: column;
}
.price.featured { border-color: var(--accent-line); background: linear-gradient(180deg, var(--surface-2), var(--surface)); box-shadow: 0 30px 80px -40px rgba(255,106,31,0.4); }
.price .ribbon { position: absolute; top: 22px; right: 22px; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--accent-hot); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 4px 11px; border-radius: 100px; }
.price .plan { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.price .amount { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 6px; }
.price .amount .v { font-family: var(--f-display); font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; }
.price .amount .per { color: var(--muted); font-size: 0.95rem; }
.price .desc { color: var(--text-2); font-size: 0.94rem; margin: 8px 0 26px; }
.price ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price li { display: flex; gap: 11px; font-size: 0.94rem; color: var(--text); align-items: flex-start; }
.price li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.price .btn { width: 100%; justify-content: center; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta-band {
  border: 1px solid var(--accent-line); border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,106,31,0.14), rgba(255,138,61,0.04));
  display: grid; grid-template-columns: 1.1fr 1fr;
}
.cta-left { padding: 50px; }
.cta-left h2 { font-size: clamp(2rem,3.5vw,2.8rem); }
.cta-left p { color: var(--text-2); margin: 18px 0 30px; font-size: 1.05rem; max-width: 420px; }
.cta-meta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.cta-meta .row { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text-2); }
.cta-meta .row b { color: var(--text); }
.cta-meta .row .k { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); width: 130px; }

.cta-right { padding: 50px; border-left: 1px solid var(--accent-line); background: rgba(0,0,0,0.25); display: flex; flex-direction: column; justify-content: center; }
.pilot { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--accent-hot); margin-bottom: 14px; text-transform: uppercase; }
.field-row { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.8rem; color: var(--muted); font-family: var(--f-mono); letter-spacing: 0.05em; }
.field input {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px; padding: 12px 14px;
  color: var(--text); font-family: var(--f-body); font-size: 0.95rem; outline: 0; transition: border-color .2s, box-shadow .2s;
}
.field input:focus { border-color: var(--accent-line); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-ok { display: none; padding: 18px; border: 1px solid var(--green); background: var(--green-soft); border-radius: 12px; color: var(--green); font-size: 0.95rem; align-items: center; gap: 10px; }
.form-ok.show { display: flex; }
.form-err { display: none; padding: 12px 16px; border: 1px solid var(--red); background: rgba(240,88,79,0.08); border-radius: 12px; color: var(--red); font-size: 0.88rem; }
.form-err.show { display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ---- privacy policy page ---- */
.policy-body { max-width: 760px; }
.policy-body .updated { font-family: var(--f-mono); font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; margin: 0 0 40px; }
.policy-body h3 { font-family: var(--f-display); font-size: 1.35rem; margin: 44px 0 14px; }
.policy-body h3 .n { font-family: var(--f-mono); font-size: 0.8rem; color: var(--accent); margin-right: 10px; }
.policy-body p { color: var(--text-2); font-size: 0.98rem; line-height: 1.75; margin: 0 0 14px; }
.policy-body ul { margin: 0 0 14px; padding-left: 20px; }
.policy-body li { color: var(--text-2); font-size: 0.98rem; line-height: 1.75; margin-bottom: 8px; }
.policy-body b { color: var(--text); }
.policy-body a { color: var(--accent-hot); }
.policy-note {
  margin-top: 48px; padding: 22px 26px; border-radius: 14px;
  border: 1px solid var(--line-2); background: var(--surface);
  display: flex; gap: 14px; align-items: flex-start;
}
.policy-note .tick { font-size: 1.1rem; margin-top: 2px; }
.policy-note p { margin: 0; color: var(--text-2); font-size: 0.92rem; line-height: 1.65; }

.footer { border-top: 1px solid var(--line); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .col h6 { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.footer .col a, .footer .col p { display: block; color: var(--text-2); font-size: 0.92rem; margin-bottom: 11px; transition: color .2s; }
.footer .col a:hover { color: var(--accent-hot); }
.footer .tagline { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 280px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--faint); font-size: 0.85rem; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-side { border-right: 0; border-bottom: 1px solid var(--line); }
  .issue-grid { grid-template-columns: repeat(2,1fr); }
  .disc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0; margin: 0;
    padding: 10px 24px 18px;
    background: rgba(10, 9, 8, 0.96);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav.menu-open .nav-links a { padding: 11px 0; font-size: 1rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .why-card.big, .why-card.small, .why-card.half { grid-column: span 12; }
  .price-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-right { border-left: 0; border-top: 1px solid var(--accent-line); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 80px 0; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .nav-inner { gap: 14px; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn { padding: 9px 13px; font-size: 0.85rem; }
}
@media (max-width: 430px) {
  .logo-word { display: none; }
  .issue-grid { grid-template-columns: 1fr; }
  .disc-grid { grid-template-columns: 1fr 1fr; }
  .asset-grid { grid-template-columns: 1fr 1fr; }
  .cta-left, .cta-right { padding: 32px; }
  .nav-actions .btn-ghost { display: none; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* ============================================================
   v2 — DEPTH & COMPLEXITY LAYER
   ============================================================ */

/* grain/noise overlay over the whole page */
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* floating glow orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; opacity: 0.5; }
.orb-a { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,106,31,0.5), transparent 70%); top: -80px; right: -60px; animation: float1 14s ease-in-out infinite; }
.orb-b { width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,138,61,0.32), transparent 70%); bottom: 10%; left: -120px; animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translate(-40px, 50px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(60px, -40px) scale(1.08); } }

/* hero network canvas */
.hero { overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; pointer-events: none; opacity: 0.8; }
.hero-grid { position: relative; z-index: 2; }
.console { backdrop-filter: blur(2px); }

/* big ghost word behind hero */
.hero-ghost {
  position: absolute; right: -2%; bottom: -6%; z-index: 1; pointer-events: none;
  font-family: var(--f-display); font-weight: 700; font-size: 22vw; line-height: 0.8;
  letter-spacing: -0.04em; color: transparent;
  -webkit-text-stroke: 1px rgba(255,106,31,0.06);
  user-select: none; white-space: nowrap;
}

/* ---- marquee ticker ---- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,106,31,0.03); overflow: hidden; position: relative; z-index: 1; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scrollx 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; padding: 18px 30px; font-family: var(--f-mono); font-size: 0.84rem; letter-spacing: 0.06em; color: var(--text-2); white-space: nowrap; }
.marquee-item b { color: var(--accent-hot); }
.marquee-item .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.6; }

/* ---- bento ---- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 16px; }
.bento-cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px;
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .25s, transform .25s;
}
.bento-cell:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.bento-cell .bn { font-family: var(--f-display); font-size: clamp(2.2rem,3.4vw,3.1rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.bento-cell .bn .accent { color: var(--accent); }
.bento-cell .bl { color: var(--text-2); font-size: 0.92rem; max-width: 230px; }
.bento-cell .bk { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-accent { background: linear-gradient(150deg, rgba(255,106,31,0.16), rgba(255,138,61,0.03)); border-color: var(--accent-line); }
.bento-dark { background: linear-gradient(160deg, var(--surface-2), var(--bg)); }
.bento-cell .bk, .bento-cell .bn, .bento-cell .bl { position: relative; z-index: 1; }
.bento-cell .spark {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 52px; opacity: 0.55; z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 55%);
  mask-image: linear-gradient(180deg, transparent, #000 55%);
}
.bento-cell .minigraph {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0.55; z-index: 0;
  -webkit-mask-image: radial-gradient(120% 90% at 75% 60%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 90% at 75% 60%, #000 55%, transparent 100%);
}
.bento-cell .pulse-ring { position: absolute; top: 22px; right: 22px; }

/* ---- section index number ---- */
.section-head .idx { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.2em; color: var(--faint); }
.section-num {
  position: absolute; top: -18px; left: 0; font-family: var(--f-display); font-weight: 700;
  font-size: 7rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  z-index: 0; pointer-events: none; user-select: none;
}
.section { overflow: hidden; }

/* ---- network graph panel (why section visual) ---- */
.graph-card { grid-column: span 12; background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); border-radius: 20px; padding: 0; overflow: hidden; display: grid; grid-template-columns: 1fr 1.1fr; min-height: 340px; }
.graph-card .gc-copy { padding: 38px; display: flex; flex-direction: column; justify-content: center; }
.graph-card .gc-copy h3 { font-size: 1.5rem; margin-bottom: 12px; }
.graph-card .gc-copy p { color: var(--text-2); margin: 0; }
.graph-card .gc-vis { position: relative; border-left: 1px solid var(--line); background: radial-gradient(circle at 60% 50%, rgba(255,106,31,0.07), transparent 65%); }
.graph-card .gc-vis canvas { width: 100%; height: 100%; display: block; }

/* enhanced feature cards: corner accent + number */
.feat::after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); transition: width .35s ease; }
.feat:hover::after { width: 100%; }
.feat .fnum { position: absolute; bottom: 22px; right: 24px; font-family: var(--f-mono); font-size: 0.7rem; color: var(--faint); }

/* glass on demo shell */
.demo-shell { position: relative; }
.demo-shell::before { content: ""; position: absolute; inset: 0; border-radius: 20px; padding: 1px; background: linear-gradient(160deg, rgba(255,138,61,0.4), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .graph-card { grid-template-columns: 1fr; }
  .graph-card .gc-vis { border-left: 0; border-top: 1px solid var(--line); min-height: 260px; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 150px; }
  .bento-wide, .bento-tall { grid-column: span 1; grid-row: span 1; }
  .hero-ghost { display: none; }
  .section-num { font-size: 4.5rem; }
}
