:root {
  --bg: #07090a;
  --panel: #0d1311;
  --panel-2: #0a0f0c;
  --accent: #2be06a;
  --accent-glow: #5cffa0;
  --cyan: #19e3e3;
  --text: #cfe0d6;
  --muted: #5f7268;
  --line: #1b2620;
  --err: #ff5c5c;
  --sans: 'Inter', -apple-system, 'Segoe UI', Roboto, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; position: relative; overflow-x: hidden; }
/* nokta-grid + scanline doku */
body::before { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background:
    linear-gradient(rgba(43,224,106,.04) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(90deg, rgba(43,224,106,.04) 1px, transparent 1px) 0 0 / 34px 100%; }
body::after { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .35;
  background: linear-gradient(rgba(43,224,106,.025) 1px, transparent 1px) 0 0 / 100% 3px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--mono); letter-spacing: -.4px; line-height: 1.12; font-weight: 700; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }

/* buttons — terminal */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: 6px; cursor: pointer; border: 1px solid var(--line); transition: .16s; white-space: nowrap; background: transparent; color: var(--text); }
.btn-primary { background: var(--accent); color: #04140b; border-color: var(--accent); box-shadow: 0 0 22px rgba(43,224,106,.28); }
.btn-primary:hover { background: var(--accent-glow); transform: translateY(-1px); box-shadow: 0 0 34px rgba(43,224,106,.5); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 1px rgba(43,224,106,.25), 0 0 18px rgba(43,224,106,.12); }
.btn .arr { transition: transform .16s; }
.btn-primary:hover .arr { transform: translateX(3px); }

/* nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(7,9,10,.78); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 24px; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-weight: 800; font-size: 18px; letter-spacing: 1px; color: var(--text); }
.logo .mk { color: var(--accent); text-shadow: 0 0 14px rgba(43,224,106,.6); }
.nav-links { margin-left: auto; display: flex; gap: 26px; font-family: var(--mono); font-size: 13.5px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; gap: 10px; }
.nav .btn { padding: 9px 17px; font-size: 13px; }

/* hero */
.hero { border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(800px 420px at 82% -12%, rgba(43,224,106,.10), transparent 62%); }
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 88px 0 92px; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,224,106,.08); color: var(--accent);
  font-family: var(--mono); font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: 5px; border: 1px solid rgba(43,224,106,.25); }
.hero h1 { font-size: clamp(34px, 4.7vw, 56px); font-weight: 800; color: #eaf6ee; margin: 18px 0 0; letter-spacing: -1px; }
.hero h1 .accent { color: var(--accent); text-shadow: 0 0 26px rgba(43,224,106,.4); }
.hero .lede { font-size: 17.5px; color: var(--muted); max-width: 500px; margin: 20px 0 28px; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--accent); }

/* hero terminal window */
.terminal { background: linear-gradient(180deg, #0b1310, var(--panel)); border: 1px solid #20382a; border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(43,224,106,.06), 0 30px 80px rgba(0,0,0,.6), 0 0 70px rgba(43,224,106,.06);
  overflow: hidden; max-width: 440px; margin-left: auto; font-family: var(--mono); }
.term-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #0a100d; border-bottom: 1px solid var(--line); }
.term-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #28332d; }
.term-bar .dot.r { background: #ff5c5c; } .term-bar .dot.y { background: #ffb83d; } .term-bar .dot.g { background: var(--accent); }
.term-bar .ttl { margin-left: 8px; font-size: 11.5px; color: var(--muted); letter-spacing: .5px; }
.term-body { padding: 18px 16px; font-size: 13px; line-height: 1.9; min-height: 252px; }
.term-body .ln { display: block; opacity: 0; transform: translateY(4px); animation: termIn .4s forwards; }
.term-body .ln:nth-child(1) { animation-delay: .15s; }
.term-body .ln:nth-child(2) { animation-delay: .8s; }
.term-body .ln:nth-child(3) { animation-delay: 1.5s; }
.term-body .ln:nth-child(4) { animation-delay: 2.2s; }
.term-body .ln:nth-child(5) { animation-delay: 3s; }
.term-body .ln:nth-child(6) { animation-delay: 3.7s; }
.term-body .p { color: var(--accent); }
.term-body .c { color: var(--cyan); }
.term-body .d { color: var(--muted); }
.term-body .ok { color: var(--accent); }
.term-body .cursor { display: inline-block; width: 8px; height: 15px; background: var(--accent); margin-left: 3px; vertical-align: -2px; animation: blink 1.05s steps(1) infinite; box-shadow: 0 0 10px rgba(43,224,106,.7); }
@keyframes termIn { to { opacity: 1; transform: none; } }
@keyframes blink { 50% { opacity: 0; } }

/* generic section */
.section { padding: 84px 0; position: relative; z-index: 1; }
.section.alt { background: rgba(13,19,17,.5); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.sec-head .kicker { color: var(--accent); font-family: var(--mono); font-weight: 700; font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; }
.sec-head .kicker::before { content: '// '; opacity: .6; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 37px); color: #eaf6ee; margin: 12px 0 10px; }
.sec-head p { color: var(--muted); font-size: 16px; }

/* features */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 26px 22px; transition: .18s; position: relative; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width .25s; box-shadow: 0 0 12px rgba(43,224,106,.6); }
.card:hover { transform: translateY(-3px); border-color: #2a4133; box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.card:hover::before { width: 100%; }
.icon-tile { width: 46px; height: 46px; border-radius: 9px; background: rgba(43,224,106,.08); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; border: 1px solid rgba(43,224,106,.18); }
.card h3 { font-size: 16.5px; color: #eaf6ee; margin-bottom: 7px; }
.card p { color: var(--muted); font-size: 14px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { text-align: center; padding: 0 12px; position: relative; }
.step .num { width: 48px; height: 48px; border-radius: 10px; background: rgba(43,224,106,.08); color: var(--accent); font-family: var(--mono); font-weight: 700; font-size: 18px; display: grid; place-items: center; margin: 0 auto 16px; border: 1px solid rgba(43,224,106,.25); box-shadow: 0 0 22px rgba(43,224,106,.12); }
.step h3 { font-size: 16.5px; color: #eaf6ee; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* about / disclaimer */
.about-card { background: var(--panel); border: 1px solid var(--line); border-left: 2px solid var(--accent); border-radius: 8px; padding: 36px; max-width: 940px; margin: 0 auto; box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.about-card h2 { font-size: 25px; color: #eaf6ee; margin-bottom: 14px; }
.about-card p { color: #aebfb4; font-size: 15.5px; margin-bottom: 14px; }
.about-card strong { color: var(--text); }
.isnt { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.isnt .box { border: 1px solid var(--line); border-radius: 8px; padding: 20px; background: var(--panel-2); }
.isnt h4 { font-family: var(--mono); font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.isnt .yes h4 { color: var(--accent); }
.isnt .no h4 { color: var(--err); }
.isnt ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.isnt li { font-size: 14px; color: #aebfb4; display: flex; gap: 9px; align-items: flex-start; }
.isnt li::before { content: ''; width: 7px; height: 7px; border-radius: 2px; margin-top: 7px; flex: none; }
.isnt .yes li::before { background: var(--accent); }
.isnt .no li::before { background: var(--err); }

/* faq */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.qa { border: 1px solid var(--line); border-radius: 8px; padding: 20px 22px; background: var(--panel); }
.qa h4 { font-family: var(--mono); font-size: 15.5px; color: #eaf6ee; margin-bottom: 7px; }
.qa h4::before { content: '> '; color: var(--accent); }
.qa p { color: var(--muted); font-size: 14px; }

/* cta band */
.cta-band { background: linear-gradient(120deg, #0c1611, #0a120e); border: 1px solid #23402f; border-radius: 12px; padding: 52px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 0 60px rgba(43,224,106,.08); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 220px at 50% -20%, rgba(43,224,106,.14), transparent 70%); }
.cta-band h2 { font-size: clamp(24px, 3vw, 33px); margin-bottom: 10px; color: #eaf6ee; position: relative; }
.cta-band p { color: var(--muted); margin-bottom: 26px; font-size: 16px; position: relative; }
.cta-band .btn { background: var(--accent); color: #04140b; border-color: var(--accent); position: relative; box-shadow: 0 0 24px rgba(43,224,106,.35); }
.cta-band .btn:hover { background: var(--accent-glow); }

/* footer */
.footer { background: var(--panel-2); color: var(--muted); padding: 54px 0 30px; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.foot-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer .logo { color: var(--text); margin-bottom: 12px; }
.foot-blurb { max-width: 320px; font-size: 13.5px; color: var(--muted); }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 12px; }
.foot-col a { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 9px; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: #46564c; }

/* legal pages (privacy / terms / acceptable-use share these) */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 90px; position: relative; z-index: 1; }
.legal .crumb { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.legal .crumb a:hover { color: var(--accent); }
.legal h1 { font-size: clamp(28px, 4vw, 40px); color: #eaf6ee; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; font-family: var(--mono); }
.legal .notice { background: rgba(255,184,61,.07); border: 1px solid rgba(255,184,61,.25); color: #ffce7a; border-radius: 8px; padding: 14px 16px; font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-size: 20px; color: #eaf6ee; margin: 32px 0 10px; }
.legal h3 { font-size: 16px; color: var(--text); margin: 20px 0 6px; }
.legal p, .legal li { color: #aebfb4; font-size: 15px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--accent); }
.legal strong { color: var(--text); }

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .terminal { margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .isnt { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .about-card, .cta-band { padding: 26px; }
  .hero-in { padding: 60px 0 64px; }
  .foot-cols { gap: 32px; }
}
