/* ============================================================
   Abhinav Cybersecurity — stylesheet
   Single committed dark theme. No external dependencies.
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #0a0b0e;
  --bg-2:      #0d0f13;
  --panel:     #12151b;
  --panel-2:   #171b22;
  --line:      rgba(255, 255, 255, .075);
  --line-2:    rgba(255, 255, 255, .16);

  /* type */
  --fg:        #eef1f7;
  --fg-2:      #c3cad8;
  --dim:       #8b95a9;
  --dimmer:    #6a7386;

  /* accents */
  --accent:      #ff5a30;
  --accent-2:    #ff8256;
  --accent-soft: rgba(255, 90, 48, .10);
  --accent-line: rgba(255, 90, 48, .34);
  --ok:          #35e0a1;
  --warn:        #ffc44d;

  /* fonts */
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;

  /* layout */
  --maxw: 1180px;
  --pad: 24px;
  --radius: 14px;
  --radius-sm: 9px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap-narrow { max-width: 820px; }

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-tight { padding: clamp(48px, 5vw, 72px) 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }

/* ---------- type ---------- */
.h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.032em;
  font-weight: 700;
  margin: 0 0 22px;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -.026em;
  font-weight: 700;
  margin: 0 0 16px;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
}

.eyebrow {
  display: inline-flex; align-items: flex-start; gap: 9px;
  font-family: var(--mono);
  font-size: .715rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex: none;
  /* keep the marker on the first line when the label wraps */
  margin-top: .5em;
}

.lede {
  font-size: clamp(1.03rem, 1.5vw, 1.17rem);
  color: var(--fg-2);
  margin: 0 0 16px;
  max-width: 60ch;
}
.lede-sub {
  font-size: .99rem;
  color: var(--dim);
  margin: 0 0 30px;
  max-width: 58ch;
}
.lede-sub strong { color: var(--fg-2); font-weight: 600; }

.sec-head { max-width: 700px; margin-bottom: clamp(38px, 4.5vw, 58px); }
.sec-sub { color: var(--dim); font-size: 1.02rem; margin: 0; max-width: 62ch; }

.sub-h {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em;
  margin: 56px 0 20px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px;
}
.sub-h-note {
  font-family: var(--mono); font-size: .72rem; font-weight: 400;
  color: var(--dimmer); letter-spacing: .04em; text-transform: none;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font: inherit; font-size: .945rem; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .12s, box-shadow .2s, color .2s;
}
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 24px -10px rgba(255,90,48,.7);
}
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 12px 30px -10px rgba(255,90,48,.85); }

.btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: var(--line-2);
  color: var(--fg);
}
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.3); }

.btn-sm { padding: 10px 17px; font-size: .875rem; border-radius: 9px; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 11, 14, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 11, 14, .9);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--fg);
  font-weight: 700; letter-spacing: -.02em;
  flex: none;
}
.brand-mark { width: 26px; height: 26px; color: var(--accent); flex: none; }
.brand-text { font-size: 1.02rem; white-space: nowrap; }
.brand-thin { color: var(--dim); font-weight: 500; margin-left: 1px; }

.nav {
  display: flex; align-items: center; gap: 26px;
  margin-left: auto;
  font-size: .915rem;
}
.nav a {
  text-decoration: none; color: var(--dim);
  transition: color .18s; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--fg); }

.header-cta { flex: none; }

.burger {
  display: none;
  width: 40px; height: 40px; flex: none;
  background: transparent; border: 1px solid var(--line-2);
  border-radius: 9px; cursor: pointer;
  padding: 0; position: relative;
}
.burger span {
  display: block; width: 16px; height: 1.6px; background: var(--fg);
  margin: 3.4px auto; border-radius: 2px; transition: transform .25s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 6vw, 80px); overflow: hidden; }

.hero-bg {
  position: absolute; inset: -20% -10% auto -10%; height: 900px; z-index: 0;
  background:
    radial-gradient(58% 46% at 22% 12%, rgba(255,90,48,.15), transparent 62%),
    radial-gradient(46% 40% at 84% 4%, rgba(53,224,161,.07), transparent 64%);
  pointer-events: none;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(78% 62% at 50% 26%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(78% 62% at 50% 26%, #000 25%, transparent 78%);
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }

.hero-note {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: .765rem;
  color: var(--dimmer); margin: 0; letter-spacing: .01em;
}
.hero-note svg { width: 15px; height: 15px; color: var(--ok); flex: none; }

/* terminal */
.hero-panel { min-width: 0; }
.term {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.95), 0 0 0 1px rgba(255,255,255,.02);
}
.term-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 15px;
  background: rgba(255,255,255,.028);
  border-bottom: 1px solid var(--line);
}
.tdot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.tdot-r { background: #ff5f57; } .tdot-y { background: #febc2e; } .tdot-g { background: #28c840; }
.term-title {
  font-family: var(--mono); font-size: .72rem; color: var(--dimmer);
  margin-left: 9px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.term-body {
  margin: 0; padding: 18px 16px 20px;
  font-family: var(--mono);
  font-size: clamp(.685rem, 1.15vw, .8rem);
  line-height: 1.8;
  overflow-x: auto;
  color: var(--fg-2);
  /* the .l children are block-level and carry their own line breaks —
     collapse the source newlines so rows are not double-spaced */
  white-space: normal;
}
.term-body code { font: inherit; display: block; }
.term-body .l { display: block; white-space: pre; min-height: 1em; }
.c-dim { color: var(--dimmer); }
.c-cmd { color: var(--fg); font-weight: 600; }
.c-acc { color: var(--accent-2); }
.c-ok  { color: var(--ok); }

.sev {
  display: inline-block; padding: 0 5px; margin-right: 7px;
  border-radius: 4px; font-weight: 700; font-size: .93em; letter-spacing: .04em;
}
.sev-crit { background: rgba(255,60,60,.16); color: #ff7a6e; }
.sev-high { background: rgba(255,140,48,.15); color: #ffa24d; }
.sev-med  { background: rgba(255,196,77,.13); color: var(--warn); }

.term-caption {
  font-size: .765rem; color: var(--dimmer);
  margin: 12px 2px 0; line-height: 1.55;
}

/* stat strip */
.stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 6vw, 78px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 7px;
}
.stat-num {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700; letter-spacing: -.035em; line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: .845rem; color: var(--dim); line-height: 1.45; }
.stat-label em {
  font-style: normal; font-family: var(--mono);
  font-size: .715rem; color: var(--dimmer); letter-spacing: .03em;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-title {
  font-family: var(--mono); font-size: .715rem; letter-spacing: .17em;
  text-transform: uppercase; color: var(--dimmer);
  text-align: center; margin: 0 0 30px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  padding: 7px 0;
}
.marquee-track {
  display: flex; width: max-content;
  list-style: none; margin: 0; padding: 0;
  animation: slide 88s linear infinite;
}
.marquee-rev .marquee-track { animation-direction: reverse; animation-duration: 104s; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* every cell is the same height so marks and wordmarks share a baseline */
.m-item {
  flex: none;
  display: inline-flex; align-items: center; gap: 11px;
  height: 46px;
  padding: 0 30px;
  color: var(--dim);
  white-space: nowrap;
  transition: color .22s;
  border-left: 1px solid var(--line);
}
.m-item:first-child { border-left: 0; }
.m-item:hover { color: var(--fg-2); }

.m-logo {
  width: 25px; height: 25px; flex: none;
  fill: currentColor;
}
.m-item span {
  font-size: 1.005rem; font-weight: 600;
  letter-spacing: -.014em;
}
/* wordmark-only cells keep the optical weight of the ones with a mark */
.m-item-word span { letter-spacing: -.008em; }

@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* The inlined <symbol> sprite must never affect layout. Defined here rather
   than as a style attribute — the CSP sets style-src 'self', so inline styles
   are blocked. Same reason the 404 rules below live in this file. */
.logo-sprite {
  position: absolute;
  width: 0; height: 0;
  overflow: hidden;
}

/* small layout utilities, so no markup needs a style attribute */
.is-centered { justify-content: center; }
.ml-auto { margin-left: auto; }

.marquee-note {
  text-align: center; font-size: .775rem; color: var(--dimmer);
  max-width: 68ch; margin: 26px auto 0; line-height: 1.6;
}

/* ============================================================
   CARDS / SERVICES
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  position: relative;
  transition: border-color .25s, transform .25s, background .25s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,90,48,.055), transparent 55%);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }

.card-ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  margin-bottom: 17px;
}
.card-ico svg { width: 21px; height: 21px; }
.card h3 {
  font-size: 1.055rem; font-weight: 700; letter-spacing: -.017em;
  margin: 0 0 9px; line-height: 1.32;
}
.card p { margin: 0 0 16px; font-size: .9rem; color: var(--dim); line-height: 1.6; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.tags li {
  font-family: var(--mono); font-size: .685rem;
  padding: 4px 9px; border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--dim);
  white-space: nowrap;
}

/* ============================================================
   WHY / SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.split-copy { position: sticky; top: 100px; }
.split-copy .sec-sub { margin-bottom: 28px; }

.reasons { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.reasons li {
  display: grid; grid-template-columns: 52px 1fr; gap: 14px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  transition: border-color .22s, background .22s;
}
.reasons li:hover { border-color: var(--line-2); background: var(--panel-2); }
.rnum {
  font-family: var(--mono); font-size: .8rem; font-weight: 700;
  color: var(--accent); padding-top: 2px;
}
.reasons h3 { font-size: 1.01rem; font-weight: 700; margin: 0 0 6px; letter-spacing: -.015em; }
.reasons p { margin: 0; font-size: .895rem; color: var(--dim); line-height: 1.62; }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  counter-reset: s;
}
.step {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color .25s, transform .25s;
}
.step:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.step-n {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  color: var(--accent);
  display: inline-block; margin-bottom: 13px;
  padding: 3px 9px; border-radius: 6px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.step-body h3 { font-size: 1.045rem; font-weight: 700; margin: 0 0 9px; letter-spacing: -.017em; }
.step-body p { margin: 0 0 14px; font-size: .895rem; color: var(--dim); line-height: 1.62; }
.step-out {
  display: block; font-family: var(--mono); font-size: .705rem;
  color: var(--dimmer); padding-top: 12px; border-top: 1px dashed var(--line-2);
}

.deliverables {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,90,48,.05), transparent 60%), var(--panel);
  padding: 30px 28px;
}
.deliv-h {
  font-size: .74rem; font-family: var(--mono); letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim); margin: 0 0 18px;
}
.deliv-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 11px 26px;
}
.deliv-list li {
  position: relative; padding-left: 26px;
  font-size: .9rem; color: var(--fg-2); line-height: 1.5;
}
.deliv-list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 13px; height: 8px;
  border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok);
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* ============================================================
   TRACK RECORD
   ============================================================ */
.record-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px;
}
.rec-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px 24px;
  transition: border-color .25s;
}
.rec-card:hover { border-color: var(--line-2); }
.rec-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,90,48,.09), transparent 62%), var(--panel);
  border-color: var(--accent-line);
}
.rec-kicker {
  font-family: var(--mono); font-size: .69rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dimmer); margin: 0 0 12px;
}
.rec-big {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700; letter-spacing: -.035em; line-height: 1.05;
  margin: 0 0 12px; color: var(--fg);
  display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap;
}
.rec-feature .rec-big { color: var(--accent); }
.medal { font-size: .95em; }
.rec-unit { font-size: .46em; font-weight: 600; color: var(--dim); letter-spacing: .01em; }
.rec-desc { margin: 0; font-size: .895rem; color: var(--dim); line-height: 1.62; }
.rec-desc strong { color: var(--fg-2); font-weight: 600; }

.findings { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 14px; }
.finding {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--panel); padding: 20px 20px 18px;
  display: flex; flex-direction: column; gap: 9px;
  transition: border-color .22s;
}
.finding:hover { border-color: var(--line-2); }
.sev-pill {
  align-self: flex-start;
  font-family: var(--mono); font-size: .655rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px;
}
.sev-pill.sev-crit { background: rgba(255,60,60,.13); color: #ff7a6e; border: 1px solid rgba(255,60,60,.28); }
.sev-pill.sev-high { background: rgba(255,140,48,.12); color: #ffa24d; border: 1px solid rgba(255,140,48,.26); }
.finding h4 { font-size: .95rem; font-weight: 700; margin: 0; letter-spacing: -.015em; line-height: 1.35; }
.finding h4 code {
  font-family: var(--mono); font-size: .9em;
  background: rgba(255,255,255,.055); padding: 1px 5px; border-radius: 4px;
}
.finding p { margin: 0; font-size: .85rem; color: var(--dim); line-height: 1.55; flex: 1; }
.finding-b {
  font-family: var(--mono); font-size: .82rem; font-weight: 700; color: var(--ok);
  padding-top: 11px; border-top: 1px dashed var(--line-2);
}

.record-foot {
  font-size: .775rem; color: var(--dimmer); margin: 30px 0 0; line-height: 1.6;
}
.record-foot a { color: var(--dim); text-decoration: underline; text-underline-offset: 3px; }
.record-foot a:hover { color: var(--accent); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 4.5vw, 60px); align-items: start;
}
.founder-card {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,90,48,.075), transparent 55%), var(--panel);
  padding: 28px 26px;
  position: sticky; top: 100px;
}
.founder-top { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.avatar {
  width: 62px; height: 62px; border-radius: 15px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--accent), #c8340f);
  color: #fff; font-weight: 700; font-size: 1.32rem; letter-spacing: -.02em;
  box-shadow: 0 8px 22px -10px rgba(255,90,48,.9);
}
.founder-role { margin: 5px 0 3px; font-size: .875rem; color: var(--fg-2); }
.founder-handle { margin: 0; font-size: .8rem; color: var(--dimmer); }
.founder-handle code { font-family: var(--mono); color: var(--accent); }

.founder-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.founder-links a {
  font-size: .8rem; font-weight: 600; text-decoration: none;
  padding: 7px 13px; border-radius: 8px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.03);
  color: var(--fg-2); transition: border-color .2s, color .2s, background .2s;
}
.founder-links a:hover { border-color: var(--accent-line); color: var(--accent); background: var(--accent-soft); }

.founder-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.founder-facts li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 15px; background: var(--panel);
  font-size: .845rem;
}
.founder-facts span { color: var(--dimmer); font-family: var(--mono); font-size: .715rem; letter-spacing: .05em; text-transform: uppercase; }
.founder-facts strong { color: var(--fg); font-weight: 600; text-align: right; }

.founder-bio p { color: var(--dim); font-size: .975rem; margin: 0 0 16px; line-height: 1.7; }
.founder-bio p strong { color: var(--fg-2); font-weight: 600; }

.badges-h {
  font-family: var(--mono); font-size: .715rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--dim);
  margin: 32px 0 14px;
}
.badges { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.badges li {
  font-size: .81rem; padding: 7px 13px; border-radius: 8px;
  background: rgba(255,255,255,.038); border: 1px solid var(--line);
  color: var(--fg-2);
}
.badges-alt li { font-family: var(--mono); font-size: .74rem; color: var(--dim); }

/* ============================================================
   TIERS
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; align-items: start; }
.tier {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.tier-featured {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, rgba(255,90,48,.075), transparent 45%), var(--panel);
  box-shadow: 0 24px 60px -32px rgba(255,90,48,.55);
}
.tier-flag {
  position: absolute; top: -11px; left: 26px;
  font-family: var(--mono); font-size: .655rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 4px 11px; border-radius: 6px;
}
.tier h3 { font-size: 1.2rem; font-weight: 700; margin: 0; letter-spacing: -.022em; }
.tier-for { margin: 0; font-size: .875rem; color: var(--dim); line-height: 1.55; }
.tier-dur {
  margin: 0; font-family: var(--mono); font-size: .77rem;
  color: var(--accent); padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.tier ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; flex: 1; }
.tier li {
  position: relative; padding-left: 24px;
  font-size: .885rem; color: var(--fg-2); line-height: 1.5;
}
.tier li::before {
  content: ""; position: absolute; left: 0; top: .4em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok);
  transform: rotate(-45deg); border-radius: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 2px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--panel);
  transition: border-color .22s, background .22s;
}
.faq details[open] { border-color: var(--line-2); background: var(--panel-2); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 19px 52px 19px 22px;
  font-size: .985rem; font-weight: 600; letter-spacing: -.012em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--dim); border-bottom: 2px solid var(--dim);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s, border-color .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); border-color: var(--accent); }
.faq summary:hover { color: var(--fg); }
.faq p { margin: 0; padding: 0 22px 21px; color: var(--dim); font-size: .92rem; line-height: 1.68; }

/* ============================================================
   CONTACT
   ============================================================ */
.section-cta {
  background:
    radial-gradient(52% 62% at 18% 0%, rgba(255,90,48,.11), transparent 62%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.contact {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 64px); align-items: start;
}
.contact-copy .sec-sub { margin-bottom: 28px; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.contact-list li { display: flex; align-items: center; gap: 11px; font-size: .9rem; color: var(--dim); }
.contact-list svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.contact-list a { color: var(--fg-2); text-decoration: none; border-bottom: 1px solid var(--line-2); transition: color .2s, border-color .2s; }
.contact-list a:hover { color: var(--accent); border-color: var(--accent-line); }

.form {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--panel); padding: 28px 26px;
  display: grid; gap: 15px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; min-width: 0; }
.field > span {
  font-family: var(--mono); font-size: .705rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim);
}
.field i { color: var(--accent); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; font-size: .92rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  padding: 11px 13px;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--dim) 50%), linear-gradient(135deg, var(--dim) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.field select option { background: var(--panel); color: var(--fg); }
.field input::placeholder, .field textarea::placeholder { color: #545c6d; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent-line); outline: none; background: var(--bg-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: rgba(255,90,48,.6); }

.check { display: flex; gap: 11px; align-items: flex-start; font-size: .8rem; color: var(--dim); line-height: 1.55; cursor: pointer; }
.check input {
  appearance: none; -webkit-appearance: none;
  width: 17px; height: 17px; flex: none; margin-top: 2px;
  border: 1px solid var(--line-2); border-radius: 5px; background: var(--bg);
  cursor: pointer; transition: background .2s, border-color .2s; position: relative;
}
.check input:checked { background: var(--accent); border-color: var(--accent); }
.check input:checked::after {
  content: ""; position: absolute; left: 5px; top: 2px;
  width: 5px; height: 9px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-note { margin: 0; font-size: .765rem; color: var(--dimmer); text-align: center; line-height: 1.5; }
.form-note.ok { color: var(--ok); }
.form-note.err { color: #ff7a6e; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); padding-top: 62px; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 38px 30px; padding-bottom: 46px;
}
.footer-brand p { font-size: .865rem; color: var(--dim); margin: 16px 0 18px; max-width: 40ch; line-height: 1.65; }
.social { display: flex; flex-wrap: wrap; gap: 8px; }
.social a {
  font-size: .78rem; font-weight: 600; text-decoration: none;
  padding: 6px 12px; border-radius: 7px;
  border: 1px solid var(--line); color: var(--dim);
  transition: color .2s, border-color .2s;
}
.social a:hover { color: var(--accent); border-color: var(--accent-line); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--mono); font-size: .69rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--fg); margin: 0 0 4px; font-weight: 600;
}
.footer-col a {
  font-size: .865rem; color: var(--dim); text-decoration: none;
  transition: color .18s; word-break: break-word;
}
.footer-col a:hover { color: var(--accent); }
.footer-small { font-size: .8rem; color: var(--dimmer); margin: 4px 0 0; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px 30px;
  display: flex; flex-wrap: wrap; gap: 10px 30px; align-items: baseline;
  justify-content: space-between;
}
.footer-bottom p { margin: 0; font-size: .78rem; color: var(--dimmer); }
.footer-legal { max-width: 62ch; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: 2; }
  .split, .founder, .contact { grid-template-columns: 1fr; }
  .split-copy, .founder-card { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .rec-feature { grid-column: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,11,14,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 16px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px var(--pad); font-size: 1rem; border-bottom: 1px solid var(--line); }
  .header-cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .header-inner { gap: 12px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .reasons li { grid-template-columns: 38px 1fr; padding: 18px 16px; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form { padding: 22px 18px; }
  .rec-feature { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ============================================================
   MOTION / PRINT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

@media print {
  .site-header, .hero-bg, .marquee, .form, .burger { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.nf {
  min-height: 76vh;
  display: grid; place-items: center;
  text-align: center;
  position: relative;
}
.nf-inner { position: relative; z-index: 1; }
/* .nf .nf-code, not .nf-code — the `.nf p` rule below is (0,1,1) and would
   otherwise win the cascade and paint the 404 grey instead of accent. */
.nf .nf-code {
  font-family: var(--mono);
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 700; letter-spacing: -.05em; line-height: 1;
  color: var(--accent);
  margin: 0 0 10px;
}
.nf p { color: var(--dim); max-width: 46ch; margin: 0 auto 26px; }
