:root {
  --bg: #030706;
  --panel: rgba(7, 14, 12, .78);
  --panel-solid: #07100d;
  --ink: #f6fff1;
  --muted: #b9d4bb;
  --red: #ff3131;
  --green: #75ff22;
  --lime: #b9ff3f;
  --amber: #ffd166;
  --cyan: #39f7ff;
  --line: rgba(117, 255, 34, .22);
  --line-red: rgba(255, 49, 49, .26);
  --shadow: 0 28px 90px rgba(0, 0, 0, .55);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 49, 49, .28), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(117, 255, 34, .22), transparent 26rem),
    linear-gradient(180deg, #090302 0%, var(--bg) 44%, #06110a 100%);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(117, 255, 34, .18);
  background: rgba(3, 7, 6, .86);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1220px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(117, 255, 34, .35), 0 0 24px rgba(255, 49, 49, .2);
}
.brand-word { display: grid; line-height: 1; }
.brand-word strong { font-size: 1.05rem; }
.brand-word span { margin-top: 6px; color: var(--muted); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  color: #d9f0d2;
  font-size: .91rem;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  border-color: rgba(117, 255, 34, .42);
  background: rgba(117, 255, 34, .1);
}
.site-nav a:hover { transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
body.menu-open .nav-toggle span { opacity: 0; }
body.menu-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(117, 255, 34, .56);
  border-radius: 999px;
  padding: 12px 18px;
  color: #061006;
  background: linear-gradient(135deg, var(--lime), var(--green));
  font-weight: 900;
  box-shadow: 0 18px 54px rgba(117, 255, 34, .22);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.button.secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}
.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 22px 60px rgba(117, 255, 34, .34);
}

main { min-height: 70vh; }
.hero {
  width: min(1260px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 22px;
  align-items: stretch;
}
.hero-copy,
.hero-media {
  min-height: 660px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-copy {
  position: relative;
  padding: clamp(28px, 4vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 49, 49, .14), transparent 34%),
    linear-gradient(225deg, rgba(117, 255, 34, .12), transparent 40%),
    rgba(6, 11, 9, .92);
}
.hero-copy::after {
  content: "RED / GREEN";
  position: absolute;
  right: -30px;
  bottom: -34px;
  color: rgba(117, 255, 34, .075);
  font-size: clamp(3.8rem, 9vw, 8.6rem);
  font-weight: 950;
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(57, 247, 255, .28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d9feff;
  background: rgba(57, 247, 255, .08);
  font-size: .84rem;
  font-weight: 800;
}
.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin: 24px 0 18px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: .9;
  letter-spacing: 0;
}
.split-text {
  background: linear-gradient(90deg, #fff, #ff4a3d 34%, #f7ffe6 52%, var(--green));
  -webkit-background-clip: text;
  color: transparent;
}
.lead {
  max-width: 720px;
  color: #d8edcf;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.scan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}
.scan-card {
  min-height: 126px;
  border: 1px solid rgba(117, 255, 34, .22);
  border-left-color: rgba(255, 49, 49, .35);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
}
.scan-card b { display: block; margin-bottom: 9px; color: var(--lime); font-size: 1.16rem; }
.scan-card span { color: #c7dec2; line-height: 1.48; }
.hero-media { position: relative; background: #030706; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(3, 7, 6, .74);
  backdrop-filter: blur(16px);
}
.hero-badge b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--green));
  color: #fff;
}
.hero-badge span { color: #e1f6d9; line-height: 1.5; }

.ticker {
  margin-top: 30px;
  overflow: hidden;
  border-top: 1px solid rgba(117, 255, 34, .22);
  border-bottom: 1px solid rgba(255, 49, 49, .22);
  background: #020403;
}
.ticker-track { display: flex; width: max-content; animation: drift 30s linear infinite; }
.ticker-track span {
  padding: 20px 30px;
  white-space: nowrap;
  color: #dfffbd;
  font-weight: 950;
  text-transform: uppercase;
}
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 84px auto;
}
.section-header {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.kicker {
  display: block;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}
.section-header p,
.card p,
.feature-copy p,
.legal-page p,
.page-intro p { color: #c8dfc2; line-height: 1.72; }

.matrix {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .055);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card.red { border-color: var(--line-red); }
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 255, 63, .5);
  background: rgba(255, 255, 255, .08);
}
.card h3 { margin-bottom: 10px; color: #fff; }
.card .num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #061006;
  background: radial-gradient(circle at 30% 24%, #fff, var(--lime) 52%, #28a700);
  font-weight: 950;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}
.feature-split.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); }
.feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}
.feature-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-copy { padding: clamp(16px, 3vw, 36px); }
.checks { display: grid; gap: 12px; margin-top: 24px; }
.check {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(117, 255, 34, .2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .05);
}
.check b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #f5ffe9;
  color: #0a1309;
  font-size: 1.3rem;
}
.check span { color: #c8dfc2; line-height: 1.55; }

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .56fr);
  gap: 24px;
  align-items: center;
}
.page-intro {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 49, 49, .12), transparent 40%),
    linear-gradient(225deg, rgba(117, 255, 34, .1), transparent 38%),
    rgba(255, 255, 255, .045);
}
.page-intro h1 { font-size: clamp(2.7rem, 6vw, 5.55rem); }
.page-art {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.page-art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.content-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 58px auto 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.content-grid.two { grid-template-columns: repeat(2, 1fr); }
.card ul,
.legal-page ul {
  margin: 0;
  padding-left: 20px;
  color: #c8dfc2;
  line-height: 1.75;
}
.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 46px auto 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, .055);
}
.legal-page h2 { margin-top: 34px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.notice {
  border-left: 4px solid var(--lime);
  padding: 16px 18px;
  color: #eaffdd;
  background: rgba(117, 255, 34, .08);
  line-height: 1.65;
}

.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
}
.faq-button {
  width: 100%;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-button::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #061006;
  background: var(--lime);
}
.faq-item.open .faq-button::after { content: "-"; }
.faq-answer { display: none; padding: 0 20px 20px; color: #c8dfc2; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 18px;
}
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #e4f8da; font-weight: 800; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(117, 255, 34, .25);
  border-radius: 8px;
  padding: 14px 15px;
  background: rgba(0, 0, 0, .3);
  color: var(--ink);
  font: inherit;
  outline: none;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(57, 247, 255, .12);
}

.site-footer {
  border-top: 1px solid rgba(117, 255, 34, .2);
  background: #030706;
}
.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}
.footer-logo { width: 210px; margin-bottom: 18px; }
.footer-shell p,
.footer-shell li { color: #bdd4b8; line-height: 1.65; }
.footer-shell ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-shell a { color: #dff8d6; transition: color .2s ease; }
.footer-shell a:hover { color: var(--lime); }
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(117, 255, 34, .14);
  color: #8fac89;
  font-size: .9rem;
}
.not-found {
  width: min(900px, calc(100% - 32px));
  margin: 70px auto 90px;
  text-align: center;
}
.not-found .code {
  color: rgba(117, 255, 34, .16);
  font-size: clamp(8rem, 24vw, 18rem);
  font-weight: 950;
  line-height: .8;
}

@media (max-width: 1060px) {
  .nav-cta { display: none; }
  .hero,
  .page-hero,
  .feature-split,
  .feature-split.reverse,
  .contact-panel { grid-template-columns: 1fr; }
  .hero-copy,
  .hero-media { min-height: auto; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .matrix,
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-shell { min-height: 66px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 7, 6, .98);
  }
  body.menu-open .site-nav { display: flex; }
  .site-nav a { border-radius: 8px; padding: 14px 16px; }
  .brand-word span { display: none; }
  .hero { margin-top: 16px; grid-template-columns: 1fr; }
  .hero-copy { padding: 26px 20px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.4rem); }
  .scan-grid,
  .section-header,
  .matrix,
  .content-grid,
  .content-grid.two,
  .footer-shell { grid-template-columns: 1fr; }
  .scan-card { min-height: auto; }
  .section { margin: 60px auto; }
  .feature-copy { padding: 20px 0 0; }
  .feature-split.reverse .feature-copy { order: 2; }
  .feature-split.reverse .feature-media { order: 1; }
  .check { grid-template-columns: 52px 1fr; }
  .check b { width: 52px; height: 52px; }
  .hero-badge { grid-template-columns: 1fr; }
  .hero-badge b { width: 42px; height: 42px; }
}
