﻿:root {
  --red: #e8003a;
  --red2: #c8002e;
  --teal: #00c9c8;
  --teal2: #00a8a8;
  --bg: #0d1117;
  --bg2: #111820;
  --card: #161d27;
  --border: #1e2835;
  --white: #ffffff;
  --light: #d4dde8;
  --gray: #7a8899;
  --dim: #3a4a5a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--light); font-family: 'DM Sans', Arial, sans-serif; overflow-x: hidden; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 66px; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; background: rgba(13,17,23,.94); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
.nav-logo { display: flex; align-items: center; gap: 11px; min-width: 0; }
.nav-logo-img { width: 38px; height: 38px; flex: 0 0 38px; display: flex; align-items: center; justify-content: center; background: var(--red); border-radius: 10px; box-shadow: 0 4px 14px rgba(232,0,58,.35); }
.nav-logo-img span { color: #fff; font-family: 'Syne', Arial, sans-serif; font-size: 20px; font-weight: 800; }
.nav-logo-name { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: 16px; font-weight: 700; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: var(--gray); font-size: 14px; font-weight: 600; padding: 7px 14px; border-radius: 9px; white-space: nowrap; transition: .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.nav-special { color: var(--white); border: 1px solid var(--border); border-radius: 20px; margin-left: 6px; }
.nav-links a.nav-special:hover { color: var(--red); border-color: var(--red); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,.04); cursor: pointer; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--gray); border-radius: 2px; transition: .25s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); }
.hero { min-height: 100vh; padding: 116px 48px 80px; display: flex; align-items: center; background: radial-gradient(ellipse 80% 80% at 60% 40%, rgba(0,201,200,.06), transparent 60%), radial-gradient(ellipse 60% 60% at 80% 80%, rgba(232,0,58,.05), transparent 60%), linear-gradient(180deg, #0d1117 0%, #111820 100%); }
.hero-grid { width: 100%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 22px; }
.hero-eyebrow:before { content: ''; width: 28px; height: 2px; background: var(--teal); }
.hero h1 { max-width: 650px; color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: clamp(42px, 5vw, 72px); font-weight: 800; line-height: 1.08; letter-spacing: -1.6px; margin-bottom: 22px; }
.h-teal { color: var(--teal); }
.h-red { color: var(--red); }
.hero-desc { max-width: 560px; color: var(--gray); font-size: 17px; line-height: 1.75; margin-bottom: 40px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary, .btn-secondary, .btn-red { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 28px; border-radius: 50px; font-family: 'Syne', Arial, sans-serif; font-size: 14px; font-weight: 800; transition: .2s ease; }
.btn-primary { background: var(--teal); color: #0d1117; box-shadow: 0 4px 20px rgba(0,201,200,.3); }
.btn-primary:hover { background: var(--teal2); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,.1); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 4px 20px rgba(232,0,58,.3); }
.btn-red:hover { background: var(--red2); transform: translateY(-1px); }
.hero-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hf-card { min-height: 144px; padding: 20px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; position: relative; overflow: hidden; transition: .25s ease; }
.hf-card:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: .25s ease; }
.hf-card.red:before { background: linear-gradient(90deg, transparent, var(--red), transparent); }
.hf-card:hover { border-color: var(--dim); transform: translateY(-2px); }
.hf-card:hover:before { opacity: 1; }
.hf-icon { color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; }
.hf-title { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.hf-desc { color: var(--gray); font-size: 13px; line-height: 1.55; }
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 96px 48px; }
.features-bg { background: var(--bg2); }
.section-label { display: flex; align-items: center; gap: 8px; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-label:before { content: ''; width: 20px; height: 2px; background: var(--teal); }
.section-title { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.t-red { color: var(--red); }
.t-teal { color: var(--teal); }
.section-sub { max-width: 680px; color: var(--gray); font-size: 16px; line-height: 1.7; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feat-card, .card, .col-card, .stat-box, .about-right { background: var(--card); border: 1px solid var(--border); border-radius: 18px; }
.feat-card { padding: 28px; }
.feat-icon-wrap { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: rgba(0,201,200,.1); border: 1px solid rgba(0,201,200,.2); color: var(--teal); font-size: 12px; font-weight: 900; margin-bottom: 18px; }
.feat-icon-wrap.red { background: rgba(232,0,58,.1); border-color: rgba(232,0,58,.2); color: var(--red); }
.feat-title { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.feat-desc, p, li, td { color: var(--gray); font-size: 14px; line-height: 1.7; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
.about-stat { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; }
.about-stat-num { color: var(--teal); font-family: 'Syne', Arial, sans-serif; font-size: 28px; font-weight: 800; }
.about-stat-lbl { color: var(--gray); font-size: 12px; }
.about-right { padding: 40px; }
.about-right h3, .card-title, .col-title, .step-title { color: var(--white); font-family: 'Syne', Arial, sans-serif; }
.cta-wrap { background: linear-gradient(135deg, rgba(0,201,200,.08), rgba(232,0,58,.06)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 96px 48px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-title { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: clamp(28px,4vw,42px); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.cta-sub { color: var(--gray); max-width: 520px; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--white); color: #0d1117; padding: 14px 22px; border-radius: 14px; font-weight: 700; min-width: 180px; }
.page-hero { padding: 120px 48px 64px; border-bottom: 1px solid var(--border); background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,201,200,.05), transparent 60%), linear-gradient(180deg,#0d1117,#111820); }
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.page-badge { display: inline-flex; background: rgba(232,0,58,.1); border: 1px solid rgba(232,0,58,.25); color: var(--red); font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.page-hero h1 { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: clamp(32px,5vw,52px); line-height: 1.12; margin-bottom: 16px; }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.page-meta span { color: var(--gray); font-size: 12px; }
.layout { max-width: 1100px; margin: 0 auto; padding: 48px; display: flex; gap: 36px; }
.sidebar { width: 220px; flex: 0 0 220px; }
.sidebar-sticky { position: sticky; top: 82px; }
.sidebar-title { color: var(--gray); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a { color: var(--gray); font-size: 13px; padding: 7px 12px; border-radius: 6px; border-left: 2px solid transparent; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--red); background: rgba(232,0,58,.06); border-left-color: var(--red); }
.content { flex: 1; min-width: 0; }
.section { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: 0; margin-bottom: 0; }
.section-head { display: flex; gap: 14px; margin-bottom: 20px; }
.s-num { color: var(--red); font-size: 10px; font-weight: 800; min-width: 24px; padding-top: 5px; }
.section h2 { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: 20px; }
strong { color: var(--light); }
.content a { color: var(--red); }
.card { padding: 20px 22px; margin: 16px 0; border-radius: 12px; }
ul.pl { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 14px 0; }
ul.pl li { display: flex; gap: 10px; }
ul.pl li:before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; margin-top: 9px; flex: 0 0 5px; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
th, td { padding: 11px 16px; border-bottom: 1px solid rgba(30,40,53,.5); text-align: left; }
th { color: var(--gray); background: var(--card); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.col-card { padding: 16px 18px; border-radius: 12px; }
.stat-row { display: flex; gap: 12px; margin: 16px 0; flex-wrap: wrap; }
.stat-box { min-width: 130px; flex: 1; padding: 18px 20px; border-radius: 12px; }
.stat-box .num { color: var(--red); font-family: 'Syne', Arial, sans-serif; font-size: 30px; font-weight: 800; }
footer { padding: 60px 48px 36px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc, .footer-col-links a, .footer-copy, .footer-duns { color: var(--gray); font-size: 13px; }
.footer-col-title { color: var(--white); font-family: 'Syne', Arial, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
@media (max-width: 980px) { nav { padding: 0 20px; } .nav-hamburger { display: flex; } .nav-links { position: absolute; top: 66px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 6px; padding: 12px; background: rgba(13,17,23,.98); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.35); } .nav-links.mobile-open { display: flex; } .nav-links a { width: 100%; padding: 12px 14px; } .nav-links a.nav-special { margin-left: 0; text-align: center; } .hero { padding: 100px 24px 60px; } .hero-grid, .about-grid, .cta-inner { grid-template-columns: 1fr; gap: 44px; } .features-grid { grid-template-columns: 1fr; } .layout { flex-direction: column; padding: 24px 20px; } .sidebar { width: 100%; flex-basis: auto; } .sidebar-sticky { position: static; } .two-col { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } footer { padding: 40px 20px 28px; } }
@media (max-width: 560px) { .nav-logo-name { font-size: 14px; } .hero-feature-grid, .about-stats, .footer-top { grid-template-columns: 1fr; } .hero h1 { font-size: 40px; } .hero-btns { flex-direction: column; } .hero-btns a { width: 100%; } .page-hero { padding: 100px 20px 48px; } }