:root {
  --bg: #090a0f;
  --bg-soft: #11131c;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f7fb;
  --muted: #b8bccb;
  --muted-dark: #616676;
  --line: rgba(255, 255, 255, 0.14);
  --red: #ff2d55;
  --red-dark: #e21b43;
  --pink: #ff4e7a;
  --orange: #ff7a1a;
  --cyan: #25f4ee;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.33);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 20px 0; position: relative; }
.section-pad.compact { padding-top: 78px; }
.muted { background: #f6f7fb; color: #11131c; }
.muted .eyebrow { color: var(--red-dark); }
.muted .section-heading p, .muted .value-copy p { color: #5f6472; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 99; padding: 10px 14px; background: var(--white); color: #000; border-radius: 10px; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(9, 10, 15, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 186px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,.82); font-weight: 650; font-size: 14px; }
.nav-menu a:not(.nav-cta):hover { color: var(--white); }
.nav-cta { padding: 11px 18px; border: 1px solid transparent; border-radius: 999px; background: linear-gradient(135deg, var(--red), var(--orange)); color: white; box-shadow: 0 14px 36px rgba(255, 45, 85, .32); transition: transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(255, 45, 85, .40); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }

.hero { min-height: calc(100vh - 78px); display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 18% 16%, rgba(255,45,85,.28), transparent 28%), radial-gradient(circle at 88% 20%, rgba(37,244,238,.17), transparent 24%), linear-gradient(145deg, #090a0f 0%, #11131c 55%, #08090d 100%); }
.hero:after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), transparent 76%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 58px; align-items: center; }
.eyebrow { color: #ff8ba3; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; font-size: 12px; margin-bottom: 16px; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-size: clamp(48px, 7vw, 86px); max-width: 880px; }
h2 { font-size: clamp(36px, 5vw, 58px); }
h3 { font-size: 22px; }
.hero-lead { color: var(--muted); font-size: clamp(18px, 2vw, 21px); max-width: 780px; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--orange)); color: white; box-shadow: 0 14px 36px rgba(255, 45, 85, .32); }
.btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: white; }
.btn-discord { background: linear-gradient(135deg, #6674ff, #5865f2); border-color: rgba(255,255,255,.16); color: white; box-shadow: 0 16px 38px rgba(88,101,242,.38); gap: 10px; }
.btn-discord:hover { background: linear-gradient(135deg, #7380ff, #5f6cf3); border-color: rgba(255,255,255,.26); box-shadow: 0 20px 42px rgba(88,101,242,.48); }
.btn-icon { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,255,255,.16); flex: 0 0 24px; }
.btn-icon svg { width: 16px; height: 16px; display: block; fill: currentColor; }
.muted .btn-secondary { color: #11131c; border-color: rgba(17,19,28,.18); }
.btn-light { background: white; color: #11131c; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.05); padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 750; }
.hero-panel { min-height: 660px; position: relative; }
.dashboard-card { background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07)); border: 1px solid rgba(255,255,255,.16); border-radius: 34px; box-shadow: var(--shadow); backdrop-filter: blur(22px); }
.main-card { padding: 28px; position: absolute; top: 60px; right: 0; left: 22px; min-height: 390px; }
.card-head { display: flex; align-items: center; gap: 10px; font-weight: 850; color: rgba(255,255,255,.9); }
.live-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 8px rgba(255,45,85,.14); }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.metric-grid div { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.09); }
.metric-grid strong { display: block; font-size: 28px; line-height: 1; margin-bottom: 7px; }
.metric-grid span { color: var(--muted); font-size: 14px; }
.growth-path { display: flex; align-items: center; gap: 7px; margin-top: 34px; overflow-x: auto; padding-bottom: 4px; }
.path-step { white-space: nowrap; border-radius: 999px; padding: 10px 12px; font-size: 12px; font-weight: 900; background: rgba(255,255,255,.08); color: rgba(255,255,255,.62); }
.path-step.active { background: rgba(255,45,85,.22); color: white; }
.path-line { min-width: 22px; height: 2px; background: rgba(255,255,255,.18); }
.floating-card { position: absolute; max-width: 230px; padding: 18px; border-radius: 24px; background: rgba(255,255,255,.88); color: #12131c; box-shadow: var(--shadow); }
.floating-card .icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; background: #f2f3f8; margin-bottom: 10px; }
.floating-card strong { display: block; line-height: 1.2; }
.floating-card small { color: #666b78; display: block; margin-top: 6px; }
.floating-card.one { padding: 28px;  left: 22px; bottom: 0px; }
.floating-card.two { padding: 28px; right: 0px; bottom: 0; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(55px); opacity: .52; pointer-events: none; }
.hero-glow-one { width: 260px; height: 260px; background: var(--red); left: 5%; bottom: 12%; }
.hero-glow-two { width: 220px; height: 220px; background: var(--cyan); right: 7%; top: 16%; }

.section-heading { text-align: center; max-width: 830px; margin: 0 auto 50px; }
.section-heading p { color: var(--muted); font-size: 18px; margin-top: 18px; }
.align-left { text-align: left; margin-left: 0; }
.lifecycle { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.lifecycle article { min-height: 240px; padding: 26px; border-radius: 26px; background: var(--panel); border: 1px solid var(--line); position: relative; overflow: hidden; }
.lifecycle article:before { content: ""; position: absolute; inset: auto -40px -70px auto; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,45,85,.18); }
.lifecycle span { color: var(--red); font-weight: 950; letter-spacing: .1em; font-size: 12px; }
.lifecycle h3 { margin-top: 18px; }
.lifecycle p { color: var(--muted); margin-top: 12px; font-size: 14.5px; }

.value-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 46px; align-items: center; }
.value-copy p { color: var(--muted-dark); margin-top: 18px; font-size: 18px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar { background: white; border: 1px solid #e7e9f0; border-radius: 24px; padding: 22px; box-shadow: 0 18px 50px rgba(14,19,34,.08); }
.pillar span { display: inline-flex; color: var(--red-dark); font-weight: 950; margin-bottom: 8px; }
.pillar p { color: #5f6472; font-size: 15px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 26px; min-height: 260px; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.055)); border: 1px solid var(--line); border-radius: 28px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(255,45,85,.45); background: rgba(255,255,255,.12); }
.service-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; background: rgba(255,255,255,.09); margin-bottom: 22px; font-size: 24px; }
.service-card p { color: var(--muted); margin-top: 14px; font-size: 15.5px; }

.dark-band { background: linear-gradient(135deg, #ff2d55, #1b1022 52%, #090a0f); overflow: hidden; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.split-copy p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 18px; margin: 22px 0 28px; }
.revenue-stack { display: grid; gap: 16px; }
.revenue-stack div { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 26px; padding: 24px; backdrop-filter: blur(18px); }
.revenue-stack strong { font-size: 22px; display: block; margin-bottom: 9px; }
.revenue-stack span { color: rgba(255,255,255,.76); }

.compliance-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.checklist { display: grid; gap: 16px; }
.checklist div { border-radius: 26px; padding: 24px; background: var(--panel); border: 1px solid var(--line); }
.checklist strong { font-size: 21px; }
.checklist p { color: var(--muted); margin-top: 8px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { background-color: white; color: #11131c; border: 1px solid #e5e8f0; border-radius: 30px; padding: 26px; box-shadow: 0 18px 60px rgba(14,19,34,.08); position: relative; overflow: hidden; transition: transform .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.price-card:before { content: ""; position: absolute; inset: 0; background: #11131c; opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.price-card:hover { color: white; border-color: #11131c; transform: translateY(-8px); }
.price-card:hover:before { opacity: 1; }
.price-card > * { position: relative; z-index: 1; }
.price-card:hover p, .price-card:hover li { color: rgba(255,255,255,.74); }
.price-tag { display: inline-flex; padding: 8px 12px; border-radius: 999px; background-color: #ffe9ef; color: var(--red-dark); font-size: 12px; font-weight: 950; margin-bottom: 22px; text-transform: uppercase; letter-spacing: .12em; }
.price-card:hover .price-tag { background-color: rgba(255,45,85,.18); color: #ff9aae; }
.price-card p { color: #646a78; margin-top: 12px; min-height: 74px; transition: color .3s ease; }
ul { margin: 22px 0 0; padding: 0; list-style: none; }
li { margin: 10px 0; color: #4d5361; transition: color .3s ease; }
li:before { content: "✓"; color: var(--red); font-weight: 950; margin-right: 9px; }

.community-card { border-radius: 34px; padding: 34px; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.055)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.community-card p { color: var(--muted); margin-top: 12px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag-cloud span { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.07); border-radius: 999px; padding: 9px 12px; font-weight: 800; font-size: 13px; color: rgba(255,255,255,.84); }

.faq-section { background: #0d0f17; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.faq-list { display: grid; gap: 12px; }
details { background: rgba(255,255,255,.075); border: 1px solid var(--line); border-radius: 22px; padding: 20px 22px; }
summary { cursor: pointer; font-size: 18px; font-weight: 900; }
details p { color: var(--muted); margin-top: 12px; }

.contact { background: radial-gradient(circle at 18% 10%, rgba(37,244,238,.12), transparent 28%), radial-gradient(circle at 88% 70%, rgba(255,45,85,.22), transparent 28%); }
.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: start; padding: 44px; border-radius: 36px; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.06)); box-shadow: var(--shadow); }
.contact-card p:not(.eyebrow) { color: var(--muted); margin-top: 18px; font-size: 18px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.text-link { color: white; font-weight: 850; border-bottom: 1px solid rgba(255,255,255,.42); }
.text-link:hover { color: var(--cyan); border-color: var(--cyan); }
.contact-form { display: grid; gap: 16px; padding: 28px; border-radius: 30px; background: rgba(255,255,255,.085); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(18px); }
.contact-form fieldset { border: 0; padding: 0; margin: 0; }
.contact-form legend { margin-bottom: 10px; color: rgba(255,255,255,.84); font-weight: 850; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: rgba(255,255,255,.84); font-weight: 850; }
.contact-form label span, .contact-form legend span { color: #ff9aae; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(4,5,10,.58); color: white; font: inherit; padding: 14px 16px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form textarea { resize: vertical; min-height: 132px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.38); }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(37,244,238,.72); box-shadow: 0 0 0 4px rgba(37,244,238,.12); background: rgba(4,5,10,.72); }
.contact-form input.invalid, .contact-form textarea.invalid { border-color: rgba(255,45,85,.92); box-shadow: 0 0 0 4px rgba(255,45,85,.12); }
.full { width: 100%; cursor: pointer; }
button.btn { font: inherit; }
button.btn:disabled { cursor: not-allowed; opacity: .68; transform: none; box-shadow: none; }
.form-note { color: rgba(255,255,255,.68); font-size: 13px; }
.form-note.success { color: #7fffd9; }
.form-note.error { color: #ff9aae; }
code { background: rgba(255,255,255,.10); padding: 2px 5px; border-radius: 6px; }

.site-footer { padding: 38px 0; background: #07080c; border-top: 1px solid rgba(255,255,255,.09); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-grid img { width: 170px; }
.footer-grid p { color: rgba(255,255,255,.55); margin-top: 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.7); font-weight: 750; }
.footer-links a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .hero-grid, .split, .split.reverse, .value-grid, .compliance-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-panel { min-height: 0; display: grid; gap: 14px; }
  .main-card { position: relative; top: auto; right: auto; left: auto; min-height: 0; }
  .floating-card { position: relative; left: auto !important; right: auto !important; bottom: auto !important; top: auto !important; margin-top: 0; max-width: none; }
  .lifecycle { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 72px 0; }
  .nav { height: 68px; }
  .brand img { width: 160px; }
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: 68px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: rgba(12, 13, 20, .98); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 14px; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 13px 12px; border-radius: 14px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  h2 { font-size: clamp(32px, 10vw, 46px); }
  .hero { min-height: auto; }
  .hero-grid { gap: 28px; }
  .main-card { padding: 22px; }
  .metric-grid { grid-template-columns: 1fr; }
  .lifecycle, .service-grid, .pillars, .pricing-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover { transform: none; }
}
