/* ─────────────────────────────────────────────
   HOODNET · design tokens
   Palette & motion follow the arcus.xyz direction:
   warm cream, deep forest, near-black green, lime.
   ───────────────────────────────────────────── */
:root {
  --cream: #f5f2eb;
  --cream-2: #efe9dc;
  --sand: #e8ddbe;
  --paper: #fbf9f4;
  --forest: #1e3b25;
  --emerald: #2f7a45;
  --ink: #0f140d;
  --ink-2: #151c13;
  --grey: #7b7975;
  --grey-2: #a3a09a;
  --lime: #a2ee3a;
  --lime-soft: rgba(162, 238, 58, .14);

  --line: rgba(123, 121, 117, .22);
  --line-soft: rgba(123, 121, 117, .12);
  --line-dark: rgba(255, 255, 255, .08);
  --line-dark-2: rgba(255, 255, 255, .14);

  --sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Hedvig Letters Serif", Georgia, serif;
  --mono: "Fragment Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(.7, .2, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-std: cubic-bezier(.4, 0, .2, 1);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 24px;
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
code { font-family: var(--mono); font-size: .88em; padding: 1px 6px; border-radius: 6px; background: rgba(30, 59, 37, .07); color: var(--forest); }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .02em; }
.dim { opacity: .55; }
.spacer { flex: 1; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 16px; } }

/* ── buttons ── */
.btn {
  --bx: 0px; --by: 0px;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  height: 50px; padding: 0 24px;
  border-radius: 100px;
  font-size: 15px; font-weight: 500; letter-spacing: -.005em;
  white-space: nowrap;
  transform: translate(var(--bx), var(--by));
  transition: background .2s var(--ease-std), color .2s, border-color .2s, box-shadow .3s var(--ease-std), transform .5s var(--ease-out);
}
.btn .arr { display: inline-block; transition: transform .35s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-dark { background: var(--forest); color: var(--cream); box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 10px 30px -12px rgba(30, 59, 37, .6); }
.btn-dark:hover { background: #26492e; box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 14px 36px -12px rgba(30, 59, 37, .7); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: rgba(255, 255, 255, .45); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(30, 59, 37, .4); background: rgba(255, 255, 255, .8); }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 0 0 1px rgba(162, 238, 58, .4), 0 14px 40px -10px rgba(162, 238, 58, .55); }
.btn-lime:hover { background: #b3f556; }
.btn-ghost-dark { border: 1px solid var(--line-dark-2); color: var(--cream); background: rgba(255, 255, 255, .03); }
.btn-ghost-dark:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .07); }

/* ── pulse dot ── */
.pulse {
  position: relative; width: 7px; height: 7px; border-radius: 50%;
  background: #3fbf5a; flex-shrink: 0;
}
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; animation: ping 2.4s var(--ease-std) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(3); opacity: 0; } }

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center; padding: 0 16px;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: 100%; max-width: 1180px;
  display: flex; align-items: center; gap: 28px;
  height: 60px; padding: 0 10px 0 20px;
  border-radius: 100px;
  background: rgba(245, 242, 235, .55);
  border: 1px solid rgba(123, 121, 117, .14);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: background .5s var(--ease-std), border-color .5s, box-shadow .5s, color .5s, max-width .6s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(245, 242, 235, .82); box-shadow: 0 12px 40px -18px rgba(15, 20, 13, .25); max-width: 1080px; }
.nav.on-dark .nav-inner { background: rgba(15, 20, 13, .6); border-color: var(--line-dark); color: var(--cream); }
.nav.on-dark .nav-links a { color: rgba(245, 242, 235, .6); }
.nav.on-dark .nav-links a:hover { color: var(--cream); }
.nav.on-dark .btn-dark { background: var(--lime); color: var(--ink); }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 19px; letter-spacing: -.03em; }
.logo-mark {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--forest); color: var(--lime);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset;
}
.logo-mark.sm { width: 22px; height: 22px; border-radius: 7px; }
.logo.light { color: var(--cream); }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 14px; color: var(--grey); padding: 8px 14px; border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(123, 121, 117, .1); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
@media (max-width: 960px) { .nav-links { display: none; } }
@media (max-width: 600px) { .nav-inner { height: 54px; } }

/* ─────────────── entrance / reveal ─────────────── */
.js .load, .js .hero-title .w {
  opacity: 0; transform: translateY(24px); filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease-out), filter 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .hero-title .w { display: inline-block; transform: translateY(60%) rotate(2deg); }
.ready .load, .ready .hero-title .w { opacity: 1; transform: none; filter: none; }

.js .reveal {
  opacity: 0; transform: translateY(32px); filter: blur(6px);
  transition: opacity .9s var(--ease), transform 1.1s var(--ease-out), filter .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; filter: none; }

/* ─────────────── HERO ─────────────── */
.hero { position: relative; padding: 150px 0 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30, 59, 37, .13) 1px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 65% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 65% 40%, #000 20%, transparent 75%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.b1 { width: 620px; height: 620px; right: -120px; top: 40px; background: radial-gradient(circle, rgba(162, 238, 58, .22), transparent 65%); animation: drift 18s ease-in-out infinite alternate; }
.b2 { width: 520px; height: 520px; left: -200px; top: 320px; background: radial-gradient(circle, rgba(232, 221, 190, .9), transparent 65%); animation: drift 22s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate(-60px, 40px) scale(1.08); } }

.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .95fr; gap: 24px; align-items: center; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--forest);
  padding: 8px 16px 8px 13px; border-radius: 100px;
  background: rgba(255, 255, 255, .55); border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
}
.hero-title {
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: .98; letter-spacing: -.045em; font-weight: 500;
  margin: 0 0 28px;
}
.hero-title .line { display: block; white-space: nowrap; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-title em { color: var(--forest); font-size: 1.08em; letter-spacing: -.02em; }
.lead { font-size: clamp(17px, 1.35vw, 19px); color: #55544f; max-width: 540px; margin: 0 0 36px; line-height: 1.6; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.checks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; margin: 0; font-size: 14px; color: var(--grey); }
.checks li { display: flex; align-items: center; gap: 8px; }
.checks svg { width: 16px; height: 16px; fill: none; stroke: var(--emerald); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* hero visual */
.hero-visual { position: relative; aspect-ratio: 1; max-width: 640px; width: 100%; justify-self: end; }
@media (max-width: 1000px) { .hero-visual { justify-self: center; margin-top: 20px; } }
.globe-glow {
  position: absolute; inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 238, 58, .35), rgba(47, 122, 69, .12) 45%, transparent 70%);
  filter: blur(30px);
  animation: glow 6s ease-in-out infinite;
}
@keyframes glow { 50% { opacity: .55; transform: scale(1.06); } }
.globe-wrap { position: absolute; inset: 0; transition: transform 1.2s var(--ease-out); }
.globe { width: 100%; height: auto; animation: float 9s ease-in-out infinite; filter: drop-shadow(0 40px 60px rgba(30, 59, 37, .18)); }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(1.2deg); } }
.orbits { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbits path { fill: none; stroke: rgba(47, 122, 69, .28); stroke-width: 1; stroke-dasharray: 2 6; }

.fcard {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 11px;
  padding: 11px 16px 11px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 18px 40px -18px rgba(15, 20, 13, .28);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  transition: transform 1.2s var(--ease-out);
}
.fcard b { display: block; font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); }
.fcard small { display: block; font-size: 12.5px; color: var(--grey); margin-top: 1px; }
.fdot { width: 9px; height: 9px; border-radius: 50%; background: #3fbf5a; box-shadow: 0 0 0 4px rgba(63, 191, 90, .15), 0 0 12px rgba(162, 238, 58, .8); }
.fcard > * { position: relative; }
.fc-1 { top: 13%; left: 2%; animation: bob 7s ease-in-out infinite; }
.fc-2 { top: 17%; right: -2%; animation: bob 8s ease-in-out -2s infinite; }
.fc-3 { bottom: 24%; left: -3%; animation: bob 7.5s ease-in-out -4s infinite; }
.fc-4 { bottom: 15%; right: 0; animation: bob 9s ease-in-out -1s infinite; }
.fc-center { top: 46%; left: 50%; margin-left: -68px; padding: 10px 18px 10px 10px; gap: 10px; }
.fc-center b { font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: .01em; }
@keyframes bob { 50% { translate: 0 -8px; } }
@media (max-width: 640px) {
  .fcard { padding: 8px 12px 8px 10px; }
  .fcard small { display: none; }
  .fc-2 { right: 0; } .fc-3 { left: 0; }
}

/* ticker */
.ticker {
  position: relative; margin-top: 80px;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  overflow: hidden; padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker-track { display: flex; gap: 34px; width: max-content; animation: marquee 48s linear infinite; font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.ticker-track i { font-style: normal; color: var(--emerald); }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─────────────── section chrome ─────────────── */
section { position: relative; }
.sec-label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 26px;
}
.sec-label.center { justify-content: center; }
.sec-label .num { color: var(--emerald); }
.sec-label .dash { width: 28px; height: 1px; background: currentColor; opacity: .5; }
[data-theme="dark"] .sec-label { color: rgba(245, 242, 235, .5); }
[data-theme="dark"] .sec-label .num { color: var(--lime); }

h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02; letter-spacing: -.04em; font-weight: 500;
  margin: 0; max-width: 820px;
}
h2 em { color: var(--forest); font-size: 1.06em; }
[data-theme="dark"] h2 { color: var(--cream); }
[data-theme="dark"] h2 em { color: var(--lime); }
.sec-head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.sec-sub { font-size: 17px; line-height: 1.6; color: var(--grey); margin: 0; max-width: 440px; }
[data-theme="dark"] .sec-sub { color: rgba(245, 242, 235, .55); }
@media (max-width: 900px) { .sec-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; } }

/* ─────────────── 01 OVERVIEW ─────────────── */
.overview { padding: 150px 0 120px; }
.statement {
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.18; letter-spacing: -.03em; font-weight: 500;
  margin: 0; max-width: 1100px;
}
.statement em { color: var(--forest); }
.statement .sw { color: rgba(15, 20, 13, .14); transition: color .5s var(--ease-std); }
.statement em .sw { color: rgba(30, 59, 37, .16); }
.statement .sw.on { color: var(--ink); }
.statement em .sw.on { color: var(--forest); }

/* ─────────────── 02 PILLARS ─────────────── */
.pillars { padding: 60px 0 180px; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillar-grid { grid-template-columns: 1fr; } }

.pcard {
  --x: 50%; --y: 50%;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .3s, opacity .9s var(--ease), filter .9s var(--ease);
}
.pcard::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(420px circle at var(--x) var(--y), rgba(162, 238, 58, .14), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.pcard:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(30, 59, 37, .35); border-color: rgba(47, 122, 69, .22); }
.pcard:hover::before { opacity: 1; }
.pcard-art {
  position: relative; aspect-ratio: 1 / .86; overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.pcard-art img {
  width: 100%; height: 100%; object-fit: contain; padding: 6% 10%;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(closest-side, #000 72%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 72%, transparent 100%);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.pcard:hover .pcard-art img { transform: scale(1.09) translateY(-6px); }
.pcard-art.noimg img { display: none; }
.pcard-art.noimg::after {
  content: ""; position: absolute; inset: 22%; border-radius: 28%;
  background: radial-gradient(circle at 35% 30%, rgba(162, 238, 58, .5), rgba(47, 122, 69, .25) 55%, transparent 72%);
  filter: blur(6px); animation: glow 6s ease-in-out infinite;
}
.pcard-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard-top { display: flex; align-items: center; justify-content: space-between; }
.pnum { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--grey-2); }
.pcard h3 { font-size: 26px; font-weight: 500; letter-spacing: -.03em; margin: 2px 0 0; }
.pcard p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--grey); }

/* ─────────────── DARK SECTIONS ─────────────── */
.how {
  padding: 260px 0 0;
  color: var(--cream);
  background: linear-gradient(in oklab 180deg, var(--cream) 0, var(--ink) 300px, var(--ink) 100%);
}
.how::before {
  content: ""; position: absolute; inset: 300px 0 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(30, 59, 37, .55), transparent 70%);
}
.how .wrap, .gw .wrap { position: relative; }

.route-grid { display: grid; grid-template-columns: 340px 1fr; gap: 28px; align-items: stretch; }
@media (max-width: 1000px) { .route-grid { grid-template-columns: 1fr; } }

.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.steps li {
  position: relative; cursor: pointer;
  display: flex; gap: 16px; padding: 16px 18px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background .5s var(--ease-std), border-color .5s, opacity .5s;
  opacity: .42;
}
.steps li.active { opacity: 1; background: rgba(255, 255, 255, .04); border-color: var(--line-dark); }
.steps li.past { opacity: .7; }
.steps .sn { font-family: var(--mono); font-size: 11px; color: var(--lime); padding-top: 4px; }
.steps b { display: block; font-weight: 500; font-size: 16px; letter-spacing: -.01em; }
.steps p { margin: 3px 0 0; font-size: 13.5px; line-height: 1.55; color: rgba(245, 242, 235, .55); }

/* pinned scroll stage */
.how .sec-head { margin-bottom: 0; }
.how-pin { position: relative; height: 460vh; }
.how-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; align-items: center;
  padding-top: 70px;
}
.how-sticky .route-grid { width: 100%; align-items: center; }
.steps-wrap { position: relative; padding-left: 22px; }
.steps-rail { position: absolute; left: 0; top: 10px; bottom: 10px; width: 1px; background: var(--line-dark-2); }
.steps-rail span { position: absolute; inset: 0; background: linear-gradient(180deg, var(--emerald), var(--lime)); transform-origin: 0 0; transform: scaleY(0); box-shadow: 0 0 10px rgba(162, 238, 58, .5); }
.steps li.active { transform: translateX(6px); }
.steps li { transition: background .5s var(--ease-std), border-color .5s, opacity .5s, transform .6s var(--ease-out); }
.step-count { display: none; }
.new-circuit {
  height: 28px; padding: 0 12px; border-radius: 100px; cursor: pointer;
  background: rgba(162, 238, 58, .08); border: 1px solid rgba(162, 238, 58, .22); color: var(--lime);
  transition: background .2s;
}
.new-circuit:hover { background: rgba(162, 238, 58, .16); }
.route-stage { max-height: calc(100svh - 120px); }
.route-flow { fill: none; stroke: #e9ffc9; stroke-width: 1.4; stroke-linecap: round; stroke-dasharray: 1.5 22; animation: flow 1.6s linear infinite; transition: opacity .4s; opacity: 0; }
@keyframes flow { to { stroke-dashoffset: -47; } }

@media (max-width: 1000px) {
  .how-sticky { padding-top: 64px; align-items: center; }
  .steps li.active b { font-size: 18px; }
  .steps li.active p { font-size: 14.5px; }
  .how-sticky .route-grid { gap: 14px; }
  .steps-wrap { order: 2; padding-left: 0; }
  .steps-rail { display: none; }
  .steps li { display: none; opacity: 1; padding: 14px 16px; }
  .steps li.active { display: flex; transform: none; animation: stepIn .5s var(--ease-out); }
  .step-count { display: inline; }
  .route-stage { padding: 14px 12px 12px; }
}
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } }

.route-stage {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(30, 59, 37, .5), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding: 18px 20px 16px;
  display: flex; flex-direction: column;
}
.route-stage::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .35;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.stage-top { display: flex; gap: 10px; align-items: center; color: rgba(245, 242, 235, .75); position: relative; z-index: 1; }
#relaySvg { width: 100%; height: auto; flex: 1; position: relative; z-index: 1; margin: 6px 0; }
.footnote { position: relative; z-index: 1; margin: 0; font-size: 12px; color: rgba(245, 242, 235, .4); }

/* relay svg parts */
.mesh-line { stroke: rgba(245, 242, 235, .07); stroke-width: 1; }
.relay-node { fill: #1f2a1c; stroke: rgba(245, 242, 235, .25); stroke-width: 1; transition: fill .4s, stroke .4s; }
.relay-node.chosen { stroke: var(--lime); fill: #243a1e; }
.relay-node.hit { fill: var(--lime); }
.relay-halo { fill: var(--lime); opacity: 0; transition: opacity .5s; }
.relay-halo.on { opacity: .18; }
.route-path { fill: none; stroke: var(--lime); stroke-width: 1.6; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(162, 238, 58, .6)); }
.route-ghost { fill: none; stroke: rgba(162, 238, 58, .18); stroke-width: 6; stroke-linecap: round; }
.end-node { fill: var(--ink); stroke: rgba(245, 242, 235, .4); stroke-width: 1.2; }
.end-node.hit { stroke: var(--lime); fill: #1c2b19; }
.svg-label { font-family: var(--mono); font-size: 12px; fill: rgba(245, 242, 235, .75); letter-spacing: .04em; }
.svg-label.small { font-size: 10.5px; fill: rgba(245, 242, 235, .45); text-transform: uppercase; letter-spacing: .1em; }
.hop-label { font-family: var(--mono); font-size: 10.5px; fill: var(--lime); letter-spacing: .1em; text-transform: uppercase; transition: opacity .4s; }
.onion circle { fill: none; stroke: var(--lime); transform-box: fill-box; transform-origin: center; transition: opacity .6s var(--ease-std), transform .6s var(--ease-out); }
.onion circle.peeled { opacity: 0; transform: scale(2.2); }
.onion .core { fill: var(--lime); stroke: none; filter: drop-shadow(0 0 8px var(--lime)); }

/* ─────────────── 04 GATEWAY ─────────────── */
.gw { padding: 90px 0 280px; background: var(--ink); color: var(--cream); }
.gw::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 20% 60%, rgba(30, 59, 37, .45), transparent 70%);
}
.gw::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 240px; pointer-events: none;
  background: linear-gradient(in oklab 180deg, var(--ink), var(--cream));
}
.gw-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; }
@media (max-width: 1000px) { .gw-grid { grid-template-columns: 1fr; } }

.browser, .term {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .6);
}
.b-chrome, .t-head { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--line-dark); }
.lights { display: flex; gap: 6px; }
.lights i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.b-url {
  flex: 1; display: flex; align-items: center; gap: 8px;
  height: 34px; padding: 0 14px; border-radius: 100px;
  background: rgba(0, 0, 0, .3); border: 1px solid var(--line-dark);
  font-family: var(--mono); font-size: 13px; color: var(--cream);
}
.b-url svg { fill: none; stroke: var(--lime); stroke-width: 2; flex-shrink: 0; }
.caret { width: 1.5px; height: 15px; background: var(--lime); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.b-progress { height: 2px; background: transparent; }
.b-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--emerald), var(--lime)); box-shadow: 0 0 12px var(--lime); transition: width .6s var(--ease); }
.b-body { position: relative; min-height: 360px; padding: 34px; }
.b-status { display: flex; flex-direction: column; gap: 14px; font-family: var(--mono); font-size: 13px; color: rgba(245, 242, 235, .35); transition: opacity .5s; }
.bs-row { display: flex; align-items: center; gap: 12px; transition: color .4s; }
.bs-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(245, 242, 235, .3); transition: all .4s; }
.bs-row.on { color: var(--cream); }
.bs-row.on .bs-dot { background: var(--lime); border-color: var(--lime); box-shadow: 0 0 10px var(--lime); }
.b-site {
  position: absolute; inset: 20px; border-radius: 16px;
  background: linear-gradient(160deg, var(--cream), var(--sand));
  color: var(--ink); padding: 34px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transform: translateY(16px) scale(.98);
  transition: opacity .7s var(--ease), transform .9s var(--ease-out);
}
.b-site.show { opacity: 1; transform: none; }
.site-hero h4 { font-size: clamp(26px, 3vw, 38px); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; margin: 12px 0 10px; }
.site-hero h4 em { color: var(--forest); }
.site-hero p { margin: 0; color: var(--grey); font-size: 14.5px; max-width: 360px; }
.site-bars { display: flex; gap: 10px; }
.site-bars i { flex: 1; height: 60px; border-radius: 10px; background: rgba(30, 59, 37, .08); border: 1px solid rgba(30, 59, 37, .08); }
.site-bars i:first-child { background: var(--forest); }

.term { display: flex; flex-direction: column; }
.t-body {
  flex: 1; margin: 0; padding: 26px 24px; min-height: 280px;
  font-family: var(--mono); font-size: 13.5px; line-height: 1.9; color: rgba(245, 242, 235, .8);
  white-space: pre-wrap;
}
.t-body .p { color: var(--lime); }
.t-body .ok { color: #7fd66b; }
.t-body .mut { color: rgba(245, 242, 235, .4); }
.t-body .hl { color: var(--ink); background: var(--lime); padding: 1px 6px; border-radius: 4px; }
.t-foot { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.t-foot div { padding: 16px 18px; border-right: 1px solid var(--line-dark); }
.t-foot div:last-child { border-right: 0; }
.t-foot b { display: block; font-weight: 500; font-size: 14px; }
.t-foot small { font-size: 12px; color: rgba(245, 242, 235, .45); }
@media (max-width: 560px) { .t-foot { grid-template-columns: 1fr; } .t-foot div { border-right: 0; border-bottom: 1px solid var(--line-dark); } }

/* ─────────────── 05 ARCHITECTURE ─────────────── */
.arch { padding: 40px 0 110px; }
.arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 1000px) { .arch-grid { grid-template-columns: 1fr; gap: 50px; } }
.arch-copy h2 { margin-bottom: 22px; }
.feats { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-direction: column; }
.feats li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line-soft); }
.feats li:last-child { border-bottom: 1px solid var(--line-soft); }
.fi { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line-soft); }
.fi svg, .l-ico svg { width: 18px; height: 18px; fill: none; stroke: var(--forest); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feats b { display: block; font-weight: 500; font-size: 16px; letter-spacing: -.01em; }
.feats small { font-size: 14px; color: var(--grey); }

.stack { position: relative; display: flex; flex-direction: column; align-items: center; }
.layer {
  position: relative; width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 24px 26px; border-radius: var(--r-lg);
  background: var(--paper); border: 1px solid var(--line-soft);
  box-shadow: 0 20px 50px -30px rgba(15, 20, 13, .25);
  transition: transform .6s var(--ease-out);
}
.layer:hover { transform: translateY(-4px); }
.layer b { display: block; font-weight: 500; font-size: 18px; letter-spacing: -.02em; }
.layer small { font-family: var(--mono); font-size: 11.5px; color: var(--grey); letter-spacing: .03em; }
.l-top, .l-bot { width: 86%; }
.l-mid {
  padding: 30px 28px;
  background: linear-gradient(135deg, var(--forest), #16301c);
  border-color: rgba(162, 238, 58, .2);
  color: var(--cream);
  box-shadow: 0 30px 70px -30px rgba(30, 59, 37, .7), 0 0 0 6px rgba(162, 238, 58, .06);
}
.l-mid small { color: rgba(245, 242, 235, .6); }
.l-ico { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--r-md); background: var(--cream); border: 1px solid var(--line-soft); }
.l-ico.lime { background: var(--lime); border: 0; }
.l-ico.lime svg { fill: var(--forest); stroke: none; }
.mini-relays { margin-left: auto; display: flex; gap: 7px; }
.mini-relays i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); opacity: .25; animation: relayBlink 2.2s ease-in-out infinite; }
.mini-relays i:nth-child(2) { animation-delay: .25s; } .mini-relays i:nth-child(3) { animation-delay: .5s; }
.mini-relays i:nth-child(4) { animation-delay: .75s; } .mini-relays i:nth-child(5) { animation-delay: 1s; }
@keyframes relayBlink { 30% { opacity: 1; box-shadow: 0 0 10px var(--lime); } }
@media (max-width: 520px) { .mini-relays { display: none; } .l-top, .l-bot { width: 100%; } }

.link { position: relative; width: 1px; height: 56px; background: linear-gradient(180deg, var(--line), rgba(47, 122, 69, .5)); }
.link span { position: absolute; left: -3px; top: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px rgba(162, 238, 58, .9); animation: drop 2.2s var(--ease) infinite; }
.link:last-of-type span { animation-delay: 1.1s; }
@keyframes drop { 0% { top: -4px; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { top: 52px; opacity: 0; } }

/* ─────────────── CTA + FOOTER ─────────────── */
.cta {
  overflow: hidden; color: var(--cream); text-align: center;
  padding: 280px 0 0;
  background: linear-gradient(in oklab 180deg, var(--cream) 0, var(--ink) 300px);
}
.cta-glow { position: absolute; left: 50%; top: 420px; width: 900px; height: 600px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(162, 238, 58, .2), rgba(30, 59, 37, .3) 40%, transparent 70%); filter: blur(40px); pointer-events: none; }
.cta-globe { position: absolute; left: 50%; top: 520px; width: 1100px; max-width: none; transform: translateX(-50%); opacity: .22; filter: invert(1) hue-rotate(180deg) saturate(1.4) brightness(.9); mix-blend-mode: screen; pointer-events: none; animation: spinSlow 120s linear infinite; }
@keyframes spinSlow { to { transform: translateX(-50%) rotate(360deg); } }
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; padding-bottom: 180px; }
.cta h2 { font-size: clamp(48px, 8vw, 120px); line-height: .95; letter-spacing: -.05em; max-width: none; }
.cta p { font-size: 18px; color: rgba(245, 242, 235, .6); max-width: 520px; margin: 28px 0 40px; }
.cta .cta-row { justify-content: center; margin: 0; }

/* ─────────────── scroll progress ─────────────── */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
  background: linear-gradient(90deg, var(--emerald), var(--lime));
  transform-origin: 0 50%; transform: scaleX(0);
  box-shadow: 0 0 10px rgba(162, 238, 58, .6);
  pointer-events: none;
}

/* ─────────────── Robinhood mark ─────────────── */
.rh { width: 100%; height: 100%; fill: currentColor; display: block; }
.rh-chip {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px;
  display: grid; place-items: center; padding: 6px;
  background: var(--ink); color: #c0ff00;
  box-shadow: 0 0 0 3px rgba(192, 255, 0, .12);
}
.l-ico.rh-ico { background: var(--ink); border-color: var(--ink); color: #c0ff00; padding: 12px; }
.l-ico.rh-ico svg, .rh-chip svg, .af-ico.rh-mini svg { width: 100%; height: 100%; fill: currentColor; stroke: none; }

/* ─────────────── pillar links ─────────────── */
.pcard-link {
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--forest);
}
.pcard-link .arr { transition: transform .35s var(--ease-out); }
.pcard:hover .pcard-link .arr { transform: translateX(5px); }
.pcard-link::after { content: ""; position: absolute; inset: 0; z-index: 3; }

/* browser shield */
.shield { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(162, 238, 58, .1); border: 1px solid rgba(162, 238, 58, .25); }
.shield svg { width: 15px; height: 15px; fill: none; stroke: var(--lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────── 06 PRIVATE AI ─────────────── */
.ai { padding: 20px 0 150px; }
.ai-panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
  padding: 72px 64px;
  border-radius: 32px;
  background: radial-gradient(ellipse 80% 90% at 85% 10%, #21402a 0, var(--ink) 60%);
  color: var(--cream);
  box-shadow: 0 60px 120px -60px rgba(15, 20, 13, .7);
}
.ai-panel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.ai-aura {
  position: absolute; width: 620px; height: 620px; right: -140px; top: -180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 238, 58, .22), transparent 62%);
  filter: blur(20px); animation: glow 7s ease-in-out infinite; pointer-events: none;
}
.ai-copy, .chat { position: relative; z-index: 1; }
.ai-panel .sec-label { color: rgba(245, 242, 235, .5); }
.ai-panel .sec-label .num { color: var(--lime); }
.ai-panel h2 { color: var(--cream); margin-bottom: 20px; }
.ai-panel h2 em { color: var(--lime); }
.ai-panel .sec-sub { color: rgba(245, 242, 235, .6); }
.ai-feats { list-style: none; padding: 0; margin: 34px 0 38px; display: flex; flex-direction: column; gap: 18px; }
.ai-feats li { display: flex; gap: 14px; }
.ai-feats b { display: block; font-weight: 500; font-size: 15.5px; }
.ai-feats small { font-size: 14px; color: rgba(245, 242, 235, .5); }
.af-ico { width: 36px; height: 36px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line-dark); }
.af-ico svg { width: 17px; height: 17px; fill: none; stroke: var(--lime); stroke-width: 1.6; stroke-linecap: round; }
.af-ico.rh-mini { color: #c0ff00; padding: 9px; }
.af-ico.rh-mini svg { fill: currentColor; stroke: none; }
@media (max-width: 1000px) { .ai-panel { grid-template-columns: 1fr; padding: 48px 28px; gap: 40px; } }
@media (max-width: 560px) { .ai-panel { padding: 36px 18px; border-radius: 24px; } }

.chat {
  display: flex; flex-direction: column;
  height: 480px;
  border-radius: var(--r-lg);
  background: rgba(245, 242, 235, .04);
  border: 1px solid var(--line-dark-2);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .7);
  overflow: hidden;
}
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line-dark); }
.chat-head b { display: block; font-family: var(--mono); font-weight: 400; font-size: 13px; }
.chat-head small { font-size: 12px; color: rgba(245, 242, 235, .45); }
.chat-av { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--lime); color: var(--forest); }
.hops { display: flex; gap: 5px; align-items: center; padding: 7px 10px; border-radius: 100px; background: rgba(0, 0, 0, .25); border: 1px solid var(--line-dark); }
.hops i { width: 6px; height: 6px; border-radius: 50%; background: rgba(245, 242, 235, .2); transition: background .3s, box-shadow .3s; }
.hops i.on { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.chat-body { flex: 1; padding: 22px 18px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; justify-content: flex-end; }
.msg {
  max-width: 86%; padding: 13px 16px; border-radius: 16px;
  font-size: 14.5px; line-height: 1.55;
  opacity: 0; transform: translateY(10px) scale(.98);
  transition: opacity .5s var(--ease), transform .6s var(--ease-out);
}
.msg.in { opacity: 1; transform: none; }
.msg.user { align-self: flex-end; background: var(--cream); color: var(--ink); border-bottom-right-radius: 6px; }
.msg.bot { align-self: flex-start; background: rgba(255, 255, 255, .06); border: 1px solid var(--line-dark); border-bottom-left-radius: 6px; color: rgba(245, 242, 235, .9); }
.route-note { align-self: flex-start; display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: rgba(245, 242, 235, .45); opacity: 0; transition: opacity .4s; }
.route-note.in { opacity: 1; }
.route-note i { width: 5px; height: 5px; border-radius: 50%; background: rgba(245, 242, 235, .25); transition: background .3s, box-shadow .3s; }
.route-note i.on { background: var(--lime); box-shadow: 0 0 6px var(--lime); }
.chat-input { margin: 0 14px 14px; display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 8px 16px; border-radius: 100px; background: rgba(0, 0, 0, .3); border: 1px solid var(--line-dark); font-size: 14px; color: rgba(245, 242, 235, .35); }
.send { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); }
.send svg { width: 15px; height: 15px; fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 560px) { .chat { height: 440px; } .msg { font-size: 14px; } }

/* ─────────────── 07 FAQ ─────────────── */
.faq { padding: 30px 0 60px; }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-head h2 { margin-bottom: 20px; }
@media (max-width: 1000px) { .faq-grid { grid-template-columns: 1fr; gap: 36px; } .faq-head { position: static; } }
.faq-list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font: 500 clamp(18px, 1.6vw, 21px)/1.3 var(--sans); letter-spacing: -.02em; color: var(--ink);
  transition: color .2s;
}
.q:hover { color: var(--forest); }
.plus { position: relative; width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--line); transition: background .3s, border-color .3s, transform .5s var(--ease-out); }
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; margin: -.75px 0 0 -6px; background: currentColor; transition: transform .5s var(--ease-out); }
.plus::after { transform: rotate(90deg); }
.qa.open .plus { background: var(--forest); border-color: var(--forest); color: var(--lime); transform: rotate(180deg); }
.qa.open .plus::after { transform: rotate(0); }
.a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease); }
.a > div { overflow: hidden; }
.qa.open .a { grid-template-rows: 1fr; }
.a p { margin: 0; padding: 0 60px 28px 0; font-size: 16px; line-height: 1.65; color: var(--grey); }

/* ─────────────── FOOTER ─────────────── */
.foot { position: relative; border-top: 1px solid var(--line-dark); background: rgba(15, 20, 13, .75); backdrop-filter: blur(10px); text-align: left; }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; padding: 56px 0 48px; }
.foot-brand p { margin: 14px 0 0; font-size: 15px; color: rgba(245, 242, 235, .5); max-width: 280px; }
.foot-cols { display: flex; gap: 80px; }
.foot-cols div { display: flex; flex-direction: column; gap: 12px; }
.fh { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(245, 242, 235, .35); margin-bottom: 4px; }
.foot-cols a { font-size: 15px; color: rgba(245, 242, 235, .7); transition: color .2s; }
.foot-cols a:hover { color: var(--lime); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 30px; padding: 22px 0 34px; border-top: 1px solid var(--line-dark); font-size: 13px; color: rgba(245, 242, 235, .35); }
@media (max-width: 560px) { .foot-cols { gap: 48px; } }

/* ─────────────── reduced motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .js .load, .js .reveal, .js .hero-title .w { opacity: 1; transform: none; filter: none; }
  .ticker-track { animation: none; }
}

/* ─────────────── live network ─────────────── */
.net-pill { display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px; border-radius: 100px; font-family: var(--mono); font-size: 11px; color: var(--grey); border: 1px solid var(--line-soft); white-space: nowrap; }
.net-pill i { width: 7px; height: 7px; border-radius: 50%; background: #d2a83c; }
.net-pill.ok i { background: #3fbf5a; box-shadow: 0 0 0 3px rgba(63, 191, 90, .15); }
.nav.on-dark .net-pill { color: rgba(245, 242, 235, .6); border-color: var(--line-dark); }
.nav.on-dark .net-pill.ok i { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
@media (max-width: 760px) { .net-pill { display: none; } }
.live-rtt { color: var(--lime); }

.hood-launch { margin: -24px 0 40px; }
.hood-open {
  display: flex; align-items: center; gap: 12px; max-width: 620px;
  height: 64px; padding: 7px 7px 7px 18px; border-radius: 20px;
  border: 1px solid var(--line-dark-2); background: rgba(255, 255, 255, .04);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
  transition: border-color .3s, background .3s;
}
.hood-open:focus-within { border-color: rgba(162, 238, 58, .4); background: rgba(255, 255, 255, .06); }
.hood-open svg { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: var(--lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hood-open input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; color: var(--cream); font: 500 18px var(--sans); letter-spacing: -.01em; }
.hood-open input::placeholder { color: rgba(245, 242, 235, .3); }
.ho-suffix { font-family: var(--mono); font-size: 15px; color: rgba(245, 242, 235, .4); }
.hood-open .btn { height: 50px; border-radius: 14px; }
.ho-msg { margin: 12px 4px 0; font-size: 14px; color: rgba(245, 242, 235, .5); min-height: 22px; }
.ho-msg.bad { color: #ff9d80; }
.ho-msg code { background: rgba(162, 238, 58, .1); color: var(--lime); }
.hood-dir { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-top: 18px; }
.hood-dir > span { color: rgba(245, 242, 235, .4); text-transform: uppercase; letter-spacing: .08em; font-size: 10.5px; }
#hoodDirList { display: flex; flex-wrap: wrap; gap: 8px; }
#hoodDirList a { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 13px; border-radius: 100px; border: 1px solid var(--line-dark-2); font-family: var(--mono); font-size: 12.5px; color: var(--cream); transition: border-color .2s, background .2s; }
#hoodDirList a:hover { border-color: rgba(162, 238, 58, .4); background: rgba(162, 238, 58, .06); }
#hoodDirList i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 6px var(--lime); }
@media (max-width: 560px) { .hood-open { height: 58px; } .hood-open .btn { padding: 0 16px; } .ho-suffix { display: none; } }
