
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oxanium:wght@500;600;700&display=swap');

:root {
  --ink: #02070e;
  --ink-2: #050c15;
  --surface: #09131f;
  --surface-2: #0d1a29;
  --surface-3: #122238;
  --silver: #dce5ee;
  --silver-2: #93a6ba;
  --text: #f4f7fb;
  --muted: #9aabbd;
  --blue: #009cff;
  --blue-2: #006dff;
  --blue-3: #0047ff;
  --line: rgba(151, 181, 214, .16);
  --blue-line: rgba(0, 156, 255, .26);
  --shadow: 0 28px 90px rgba(0, 0, 0, .48);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 78% 4%, rgba(0, 118, 255, .19), transparent 27%),
    radial-gradient(circle at 10% 18%, rgba(0, 156, 255, .08), transparent 32%),
    linear-gradient(145deg, #07111e 0%, var(--ink) 47%, #071322 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  width: 130vw;
  height: 42vw;
  left: -18vw;
  bottom: -30vw;
  z-index: -1;
  border: 1px solid rgba(0, 156, 255, .46);
  border-radius: 50%;
  box-shadow: 0 -2px 22px rgba(0, 140, 255, .35), inset 0 2px 10px rgba(0, 140, 255, .12);
  transform: rotate(-4deg);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 7, 14, .79);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(150, 176, 205, .11);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand-logo { width: 232px; height: auto; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .34)) drop-shadow(0 0 13px rgba(0, 126, 255, .11)); }
.nav-links { display: flex; align-items: center; gap: 27px; color: var(--muted); font-size: .92rem; font-weight: 650; }
.nav-links a { transition: color .18s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 19px;
  background: linear-gradient(135deg, #10afff, #006dff 58%, #0047ff);
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 13px 38px rgba(0, 109, 255, .24);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 17px 44px rgba(0, 109, 255, .34); }
.btn.secondary { color: var(--silver); border-color: var(--line); background: rgba(255, 255, 255, .035); box-shadow: none; }
.btn.secondary:hover { border-color: var(--blue-line); background: rgba(0, 126, 255, .07); }

.hero { padding: 92px 0 76px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 64px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid var(--blue-line);
  border-radius: 999px;
  color: #b9e7ff;
  background: rgba(0, 126, 255, .08);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 13px var(--blue); }
h1, h2, h3 { text-wrap: balance; }
h1 { font-size: clamp(3rem, 6vw, 5.45rem); line-height: .98; letter-spacing: -.065em; max-width: 860px; margin-bottom: 25px; }
.gradient-text { background: linear-gradient(100deg, #f7fbff 4%, #aab9c8 39%, #36c5ff 68%, #006dff 100%); color: transparent; background-clip: text; -webkit-background-clip: text; }
.hero-copy { color: var(--muted); font-size: 1.14rem; max-width: 650px; margin-bottom: 33px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: .91rem; margin-top: 32px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row b { color: var(--blue); }

.brand-stage {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.brand-stage::before, .brand-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(92, 133, 176, .16);
  z-index: -1;
}
.brand-stage::before { width: 420px; height: 420px; box-shadow: 0 0 80px rgba(0, 109, 255, .11); }
.brand-stage::after { width: 310px; height: 310px; border-color: rgba(0, 156, 255, .23); }
.hero-mark { width: min(88%, 410px); filter: drop-shadow(0 28px 34px rgba(0,0,0,.55)) drop-shadow(0 0 30px rgba(0, 126, 255, .18)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.stage-label {
  position: absolute;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--silver-2);
  font-family: Oxanium, sans-serif;
  font-size: .78rem;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.stage-label::before, .stage-label::after { content: ""; width: 42px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue)); }
.stage-label::after { transform: rotate(180deg); }

section { padding: 86px 0; }
.section-heading { max-width: 860px; margin: 0 auto 42px; text-align: center; }
.section-kicker { color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.section-heading h2 { font-size: clamp(2.15rem, 4.5vw, 3.55rem); line-height: 1.03; letter-spacing: -.05em; margin-bottom: 15px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }

.layer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.layer-card {
  position: relative;
  min-height: 235px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.layer-card:hover { transform: translateY(-4px); border-color: var(--blue-line); background: linear-gradient(145deg, rgba(0,126,255,.08), rgba(255,255,255,.018)); }
.layer-number { font-family: Oxanium, sans-serif; color: rgba(0, 156, 255, .38); font-weight: 700; font-size: 3.4rem; line-height: 1; position: absolute; right: 20px; top: 18px; }
.layer-icon { width: 42px; height: 42px; margin-bottom: 22px; border-radius: 13px; display: grid; place-items: center; background: rgba(0, 126, 255, .08); border: 1px solid rgba(0, 156, 255, .17); color: var(--blue); font-family: Oxanium, sans-serif; font-weight: 700; }
.layer-card h3 { font-size: 1.15rem; margin-bottom: 9px; }
.layer-card p { color: var(--muted); font-size: .94rem; }
.card-link { display: inline-block; margin-top: 18px; color: #8dd8ff; font-size: .91rem; font-weight: 800; }

.method-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,126,255,.13), transparent 37%),
    linear-gradient(140deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}
.method-copy h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.03; letter-spacing: -.05em; margin: 9px 0 16px; }
.method-copy p { color: var(--muted); }
.method-list { display: grid; gap: 14px; }
.method-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: rgba(3, 11, 20, .46); }
.method-item .num { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(135deg, #1a293b, #0b1421); border: 1px solid var(--blue-line); color: var(--blue); font-family: Oxanium, sans-serif; font-weight: 700; }
.method-item h3 { font-size: 1rem; margin: 2px 0 4px; }
.method-item p { color: var(--muted); font-size: .9rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.price-card { position: relative; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016)); }
.price-card.featured { border-color: rgba(0,156,255,.4); box-shadow: 0 24px 72px rgba(0,83,200,.18); }
.badge { display: inline-block; margin-bottom: 20px; padding: 6px 9px; border-radius: 8px; color: #beeaff; background: rgba(0,126,255,.11); border: 1px solid rgba(0,156,255,.22); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.price-card h3 { font-size: 1.24rem; margin-bottom: 8px; }
.price-card > p { color: var(--muted); font-size: .94rem; }
.price { margin: 18px 0 7px; font-size: 2.15rem; line-height: 1; letter-spacing: -.045em; font-weight: 850; }
.price-list { list-style: none; display: grid; gap: 10px; margin: 23px 0; color: var(--muted); font-size: .92rem; }
.price-list li { display: flex; gap: 9px; }
.price-list li::before { content: "✓"; color: var(--blue); font-weight: 900; }

.local-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.info-panel { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.info-panel h3 { font-size: 1.25rem; margin-bottom: 12px; }
.info-panel p { color: var(--muted); }
.info-list { display: grid; gap: 11px; margin-top: 20px; color: var(--muted); }
.info-list div { display: flex; gap: 10px; }
.info-list span { color: var(--blue); font-weight: 900; }

.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; padding: 38px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); box-shadow: var(--shadow); }
.contact-copy h2 { font-size: clamp(2.05rem, 4vw, 3.2rem); line-height: 1.04; letter-spacing: -.05em; margin: 10px 0 16px; }
.contact-copy p { color: var(--muted); }
.direct-email { display: inline-block; margin-top: 22px; color: #8dd8ff; font-weight: 800; }
form { display: grid; gap: 14px; }
label { color: var(--silver-2); font-size: .88rem; font-weight: 750; }
input, textarea, select { width: 100%; margin-top: 7px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: var(--text); background: #09131f; }
select { color-scheme: dark; }
option { color: var(--text); background: #09131f; }
input:focus, textarea:focus, select:focus { border-color: rgba(0,156,255,.55); box-shadow: 0 0 0 3px rgba(0,126,255,.08); }
textarea { min-height: 130px; resize: vertical; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-note { text-align: center; color: var(--muted); font-size: .84rem; }
.form-status { display: none; padding: 11px 13px; border-radius: 11px; font-size: .88rem; font-weight: 700; }
.form-status.success { display: block; color: #c8ebff; border: 1px solid rgba(0,156,255,.25); background: rgba(0,126,255,.09); }
.form-status.error { display: block; color: #ffd1d1; border: 1px solid rgba(239,68,68,.26); background: rgba(239,68,68,.09); }

.page-hero { padding: 78px 0 48px; text-align: center; }
.page-hero .mini-mark { width: 118px; margin: 0 auto 24px; filter: drop-shadow(0 0 24px rgba(0,126,255,.2)); }
.page-hero h1 { margin-inline: auto; max-width: 900px; }
.page-hero p { color: var(--muted); max-width: 720px; margin: 0 auto 26px; font-size: 1.06rem; }
.content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 27px; align-items: start; }
.content-card { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.content-card h2 { font-size: 1.55rem; margin-bottom: 13px; }
.content-card h3 { margin: 25px 0 9px; }
.content-card p, .content-card li { color: var(--muted); }
.content-card ul { padding-left: 19px; display: grid; gap: 9px; }
.side-card { position: sticky; top: 106px; }
.side-card .btn { width: 100%; margin-top: 20px; }

.doc-wrap { max-width: 920px; margin-inline: auto; padding: 72px 0; }
.doc { padding: 39px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.doc h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.doc h2 { font-size: 1.28rem; margin: 29px 0 8px; }
.doc p, .doc li { color: var(--muted); margin-bottom: 11px; }
.doc ul { padding-left: 20px; }
.updated { color: var(--blue) !important; font-weight: 800; margin: 10px 0 25px !important; }

.site-footer { padding: 31px 0; border-top: 1px solid rgba(150,176,205,.1); color: var(--muted); font-size: .88rem; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--blue); }

@media (max-width: 980px) {
  .hero-grid, .method-shell, .contact-shell, .content-grid { grid-template-columns: 1fr; }
  .brand-stage { min-height: 390px; }
  .layer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .local-shell { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav > .btn { display: none; }
  .brand-logo { width: 196px; }
  .hero { padding-top: 60px; }
  .hero-grid { gap: 34px; }
  .brand-stage { min-height: 310px; }
  .hero-mark { max-width: 230px; }
  .layer-grid { grid-template-columns: 1fr; }
  section { padding: 66px 0; }
  .method-shell, .contact-shell, .doc, .content-card { padding: 23px; }
  .hero-actions .btn { width: 100%; }
  .stage-label { font-size: .66rem; letter-spacing: .13em; }
  .stage-label::before, .stage-label::after { width: 22px; }
}
