:root {
  --bg: #0c0c10;
  --bg-2: #131318;
  --bg-3: #1a1a21;
  --fg: #f0f0f5;
  --fg-muted: #8a8a9a;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --accent-dim-2: rgba(0, 229, 160, 0.06);
  --red: #ff4f4f;
  --border: rgba(255,255,255,0.07);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

::selection { background: var(--accent); color: #000; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 64px;
  background: rgba(12,12,16,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-status { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); font-family: var(--font-head); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* HERO */
.hero { padding: 140px 40px 80px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; margin-bottom: 20px; background: var(--accent-dim); padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(0,229,160,0.2); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-headline { font-family: var(--font-head); font-size: clamp(36px, 4vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { padding: 0 28px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-value { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--accent); letter-spacing: -0.5px; }
.stat-label { display: block; font-size: 12px; color: var(--fg-muted); margin-top: 2px; font-family: var(--font-head); }
.stat-divider { width: 1px; height: 40px; background: var(--border); margin: 0 28px; }

/* PROXY MONITOR */
.hero-visual { position: relative; }
.proxy-monitor { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,160,0.08); }
.monitor-header { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; background: var(--bg-3); border-bottom: 1px solid var(--border); }
.monitor-title { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: var(--fg-muted); }
.monitor-badge { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); background: var(--accent-dim); padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.monitor-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.scrub-entry { display: grid; grid-template-columns: 70px 44px 1fr 80px; gap: 8px; align-items: center; padding: 8px 12px; background: var(--bg-3); border-radius: 6px; font-family: 'Courier New', monospace; font-size: 11px; }
.scrub-pass { background: rgba(0,229,160,0.05); }
.entry-time { color: var(--fg-muted); }
.entry-type { font-weight: 700; font-size: 9px; letter-spacing: 0.08em; padding: 2px 6px; border-radius: 3px; text-align: center; background: rgba(0,229,160,0.15); color: var(--accent); }
.entry-pattern { color: var(--fg); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.entry-action { text-align: right; color: var(--accent); font-weight: 700; font-size: 10px; letter-spacing: 0.06em; }
.entry-action.pass { color: var(--accent); }
.scrub-entry.scrub-pass .entry-type { background: rgba(0,229,160,0.08); color: var(--accent); }
.scrub-entry.scrub-pass .entry-pattern { color: var(--fg-muted); }
.monitor-footer { padding: 10px 16px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 11px; color: var(--fg-muted); font-family: var(--font-head); }
.compliance-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-family: var(--font-head); font-weight: 600; color: var(--fg-muted); }

/* GUARANTEE */
.guarantee { padding: 100px 40px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.guarantee-inner { max-width: 1200px; margin: 0 auto; }
.guarantee-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.guarantee-headline { font-family: var(--font-head); font-size: clamp(30px, 3.5vw, 46px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.guarantee-body { font-size: 16px; color: var(--fg-muted); line-height: 1.75; max-width: 640px; margin-bottom: 60px; }
.guarantee-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar { }
.pillar-icon { margin-bottom: 16px; }
.pillar h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* FRAMEWORKS */
.frameworks { padding: 100px 40px; }
.frameworks-inner { max-width: 1200px; margin: 0 auto; }
.frameworks-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.frameworks-headline { font-family: var(--font-head); font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: #fff; margin-bottom: 16px; }
.frameworks-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.7; max-width: 580px; margin-bottom: 56px; }
.framework-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.framework-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; transition: border-color 0.2s; }
.framework-card:hover { border-color: rgba(0,229,160,0.3); }
.framework-icon { margin-bottom: 14px; }
.framework-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.framework-controls { font-size: 12px; color: var(--fg-muted); line-height: 1.6; }

/* ARCHITECTURE */
.architecture { padding: 100px 40px; background: var(--bg-2); border-top: 1px solid var(--border); }
.arch-inner { max-width: 1200px; margin: 0 auto; }
.arch-header { margin-bottom: 64px; }
.arch-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.arch-headline { font-family: var(--font-head); font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: #fff; }
.arch-layers { display: flex; flex-direction: column; gap: 0; }
.arch-layer { display: grid; grid-template-columns: 60px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--border); }
.layer-num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--accent); opacity: 0.25; line-height: 1; }
.layer-content h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.layer-content p { font-size: 14px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 20px; max-width: 700px; }
.layer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.layer-tags span { font-family: var(--font-head); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; background: var(--accent-dim-2); color: var(--accent); border: 1px solid rgba(0,229,160,0.1); letter-spacing: 0.04em; }
.arch-connector { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 8px 0; }
.connector-line { width: 1px; height: 24px; background: var(--accent); opacity: 0.3; }
.connector-label { font-family: var(--font-head); font-size: 10px; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; opacity: 0.5; }
.arch-capabilities { display: flex; align-items: center; gap: 32px; padding-top: 32px; flex-wrap: wrap; }
.cap { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); font-family: var(--font-head); font-weight: 500; }

/* CLOSING */
.closing { padding: 100px 40px; position: relative; overflow: hidden; }
.closing-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.closing-badge { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; margin-bottom: 20px; }
.closing-headline { font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.closing-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.7; max-width: 560px; margin-bottom: 48px; }
.cta-contacts { display: flex; align-items: center; gap: 0; }
.cta-contact { padding-right: 40px; }
.cta-contact:last-child { padding-right: 0; }
.contact-label { display: block; font-size: 11px; color: var(--fg-muted); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-val { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: #fff; }
.cta-divider { width: 1px; height: 40px; background: var(--border); margin-right: 40px; }
.backdrop-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(0,229,160,0.06); }
.ring-1 { width: 600px; height: 600px; bottom: -200px; right: -100px; }
.ring-2 { width: 400px; height: 400px; bottom: -100px; right: 50px; }
.ring-3 { width: 200px; height: 200px; bottom: 0; right: 100px; }

/* FOOTER */
.site-footer { padding: 60px 40px 30px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 80px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--fg-muted); margin-top: 12px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.col-head { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--fg-muted); text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .guarantee-pillars { grid-template-columns: 1fr; gap: 32px; }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .arch-layer { grid-template-columns: 1fr; gap: 12px; }
  .layer-num { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 110px; }
}
@media (max-width: 600px) {
  .site-nav, .hero, .guarantee, .frameworks, .architecture, .closing, .site-footer { padding-left: 20px; padding-right: 20px; }
  .framework-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .cta-contacts { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-divider { display: none; }
  .cta-contact { padding-right: 0; }
  .arch-capabilities { flex-direction: column; align-items: flex-start; }
}