:root {
  --ink: #eef3ff;
  --muted: #9aa7c2;
  --navy: #070b16;
  --navy-soft: #0b1121;
  --panel: #0f172a;
  --line: rgba(178, 196, 232, .15);
  --blue: #4468ff;
  --cyan: #26c8ea;
  --lime: #b9f269;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
a { outline-offset: 4px; }

.site-header {
  height: 88px;
  max-width: 1400px;
  margin: auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 670; letter-spacing: -.035em; }
.brand b { color: #aab6ce; font-weight: 420; }
.north-mark {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
}
.north-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(185, 216, 247, .22));
}
.north-mark-compact { width: 36px; height: 36px; }
.north-mark-compact img { width: 100%; height: 100%; }
.site-header nav { display: flex; gap: 34px; color: #a5b0c7; font-size: 13px; }
.site-header nav a, .footer-links a { transition: color .2s ease; }
.site-header nav a:hover, .footer-links a:hover { color: #fff; }
.header-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 12px;
  font-weight: 680;
  background: rgba(255,255,255,.035);
}
.header-button span, .button span, .solution-card > a span, .text-link span { color: var(--cyan); }

.hero {
  max-width: 1400px;
  min-height: 745px;
  margin: auto;
  padding: 76px 64px 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  gap: 50px;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -300px;
  top: -140px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,104,255,.14), transparent 68%);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aab6ce;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.hero h1 {
  max-width: 790px;
  margin: 28px 0 26px;
  font-size: clamp(56px, 5.7vw, 86px);
  line-height: .98;
  letter-spacing: -.064em;
  font-weight: 740;
}
h1 em, h2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, #fff 4%, #8da4ff 48%, #41d9ef);
  background-clip: text;
}
.hero-lead { max-width: 680px; color: var(--muted); font-size: 18px; line-height: 1.68; }
.hero-actions { display: flex; gap: 13px; margin: 34px 0 38px; }
.button {
  min-height: 53px;
  padding: 0 21px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 720;
  transition: transform .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(115deg, #3f60f2, #347fef 56%, #16a9cb); box-shadow: 0 13px 40px rgba(49, 92, 232, .24); }
.button-primary span { color: white; }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.button-secondary:hover { border-color: rgba(38,200,234,.4); }
.hero-offers { display: flex; gap: 0; border-top: 1px solid var(--line); max-width: 660px; }
.hero-offers div { padding: 21px 26px 0 0; }
.hero-offers div + div { border-left: 1px solid var(--line); padding-left: 26px; }
.hero-offers small { display: block; color: #717e99; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.hero-offers strong { color: #dfe6f8; font-size: 12px; font-weight: 620; }

.starfield-visual {
  height: 570px;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.starfield-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 48%, rgba(54, 94, 220, .2), transparent 28%),
    radial-gradient(circle at 65% 38%, rgba(120, 82, 210, .13), transparent 38%),
    linear-gradient(145deg, rgba(6, 11, 29, .08), rgba(7, 12, 30, .48));
  mask-image: radial-gradient(circle, #000 58%, transparent 76%);
}
.nebula {
  position: absolute;
  width: 460px;
  height: 260px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-24deg);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(38, 200, 234, .28), transparent 38%),
    radial-gradient(ellipse at 65% 48%, rgba(91, 92, 225, .34), transparent 52%);
  filter: blur(34px);
  opacity: .82;
  z-index: 1;
}
.stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  mask-image: radial-gradient(circle, #000 58%, transparent 76%);
}
.stars-near {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(113,220,244,.95) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(190,201,255,.8) 0 1.4px, transparent 2px);
  background-size: 83px 97px, 127px 113px, 181px 163px;
  background-position: 11px 7px, 47px 32px, 83px 19px;
  filter: drop-shadow(0 0 4px rgba(173,217,255,.75));
}
.stars-far {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.45) 0 .7px, transparent 1.2px),
    radial-gradient(circle, rgba(135,161,255,.55) 0 .8px, transparent 1.3px);
  background-size: 37px 43px, 59px 67px;
  background-position: 4px 12px, 23px 5px;
  opacity: .75;
}
.galaxy-glow {
  position: absolute;
  z-index: 2;
  width: 76px;
  height: 76px;
  left: 53%;
  top: 44%;
  border-radius: 50%;
  background: #eaf9ff;
  box-shadow: 0 0 12px #fff, 0 0 36px rgba(70, 205, 238, .85), 0 0 95px rgba(68, 104, 255, .58);
}
.galaxy-glow::after {
  content: "";
  position: absolute;
  inset: 31px;
  border-radius: 50%;
  background: #fff;
}
.shooting-star {
  position: absolute;
  z-index: 2;
  width: 150px;
  height: 1px;
  top: 29%;
  right: 12%;
  transform: rotate(-31deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), #dffaff);
  filter: drop-shadow(0 0 5px rgba(140,225,255,.9));
}
.shooting-star::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
.visual-note {
  position: absolute;
  z-index: 5;
  min-width: 180px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(9,15,29,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.visual-note > span { color: var(--cyan); font: 700 9px "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.visual-note small { display: block; color: #64718c; font-size: 7px; letter-spacing: .16em; margin-bottom: 4px; }
.visual-note strong { font-size: 11px; font-weight: 650; }
.note-glpi { top: 128px; right: 0; }
.note-site { bottom: 108px; left: 0; }

.proof-strip {
  min-height: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #7f8ba3;
  font-size: 9px;
  font-weight: 690;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.proof-strip i { width: 4px; height: 4px; background: var(--blue); border-radius: 50%; }

.section { max-width: 1400px; margin: auto; padding: 115px 64px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.section-heading > p { max-width: 455px; color: var(--muted); line-height: 1.75; font-size: 15px; }
.section h2, .final-cta h2, .site-offer h2 {
  margin-top: 21px;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 710;
}
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 68px; }
.solution-card {
  min-height: 600px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(68,104,255,.11), rgba(255,255,255,.025));
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.solution-card::before { content: ""; position: absolute; width: 300px; height: 300px; right: -150px; top: -150px; border: 1px solid rgba(83,115,235,.2); border-radius: 50%; }
.solution-card-light { color: #07101d; background: linear-gradient(145deg, #dbe6ff, #b9d8ee 55%, #8fe5eb); }
.solution-card-light::before { border-color: rgba(5,16,31,.12); }
.card-index { font: 650 9px "SFMono-Regular", Consolas, "Liberation Mono", monospace; color: #71809e; letter-spacing: .14em; }
.solution-card-light .card-index { color: #41556b; }
.card-mark { margin: 44px 0 30px; }
.solution-card-light .site-window { margin: 46px 0 31px; }
.site-window { width: 74px; height: 58px; border: 2px solid #07101d; border-radius: 7px; padding: 9px; display: flex; gap: 4px; position: relative; }
.site-window span { width: 4px; height: 4px; border: 1px solid #07101d; border-radius: 50%; }
.site-window i { position: absolute; left: 9px; right: 9px; bottom: 10px; height: 21px; border-top: 2px solid #07101d; border-bottom: 7px solid rgba(7,16,29,.24); }
.solution-card h3 { font-size: clamp(32px, 3vw, 46px); line-height: 1.05; letter-spacing: -.045em; margin-bottom: 20px; }
.solution-card > p { color: var(--muted); font-size: 15px; line-height: 1.72; max-width: 565px; }
.solution-card-light > p { color: #31475a; }
.solution-card ul { list-style: none; padding: 26px 0; margin: 0; display: grid; gap: 12px; }
.solution-card li { color: #b3bdd2; font-size: 12px; }
.solution-card-light li { color: #263b4d; }
.solution-card li::before { content: "—"; color: var(--cyan); margin-right: 10px; }
.solution-card-light li::before { color: #173b5e; }
.solution-card > a { margin-top: auto; padding-top: 21px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 720; display: flex; justify-content: space-between; }
.solution-card-light > a { border-color: rgba(7,16,29,.15); }
.solution-card-light > a span { color: #07101d; }

.glpi-detail { display: grid; grid-template-columns: .82fr 1.18fr; gap: 95px; align-items: center; }
.detail-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 27px 0; }
.text-link { display: inline-flex; gap: 14px; border-bottom: 1px solid rgba(38,200,234,.35); padding-bottom: 6px; font-size: 12px; font-weight: 720; }
.feature-board { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.feature-board article { min-height: 220px; padding: 30px; background: #0b1120; }
.feature-board b { color: var(--cyan); font: 650 10px "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.feature-board h3 { font-size: 18px; margin: 47px 0 12px; }
.feature-board p { color: #8794ae; font-size: 12px; line-height: 1.65; }

.security { display: grid; grid-template-columns: .88fr 1.12fr; gap: 95px; align-items: center; border-top: 1px solid var(--line); }
.security-visual { min-height: 500px; border: 1px solid var(--line); border-radius: 22px; background: radial-gradient(circle, rgba(68,104,255,.17), transparent 48%), #0a1020; display: grid; place-items: center; position: relative; overflow: hidden; }
.security-visual::before, .security-visual::after { content: ""; position: absolute; width: 350px; height: 350px; border: 1px solid rgba(70,102,226,.15); border-radius: 50%; }
.security-visual::after { width: 460px; height: 460px; border-style: dashed; }
.security-visual .north-mark { z-index: 2; }
.security-visual > p { position: absolute; bottom: 42px; color: #65718c; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.security-status { position: absolute; top: 30px; right: 30px; border: 1px solid var(--line); border-radius: 20px; padding: 8px 10px; color: #aeb8cc; background: rgba(7,11,22,.72); font-size: 9px; }
.security-status i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #52ddaa; box-shadow: 0 0 10px #52ddaa; margin-right: 7px; }
.security-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; font-size: 15px; margin: 25px 0 31px; }
.security-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.security-list article { display: flex; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.025); }
.security-list article > span { color: var(--cyan); font-size: 11px; }
.security-list h3 { font-size: 13px; margin-bottom: 7px; }
.security-list p { color: #7f8ca6; font-size: 10px; line-height: 1.5; }

.site-offer {
  max-width: 1272px;
  margin: 25px auto 90px;
  padding: 70px;
  border-radius: 22px;
  color: #07101d;
  background: linear-gradient(110deg, #dce6ff, #a9d9ec 55%, #87e4e5);
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: 25px 60px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.site-offer::after { content: "N"; position: absolute; right: -20px; top: -90px; font-size: 300px; font-weight: 850; line-height: 1; color: rgba(7,16,29,.05); }
.site-offer-label { grid-column: 1 / -1; color: #426071; font: 700 9px "SFMono-Regular", Consolas, "Liberation Mono", monospace; letter-spacing: .16em; }
.eyebrow-dark { color: #40576b; }
.eyebrow-dark > span { background: #0d304e; }
.site-offer h2 { margin: 19px 0 19px; color: #07101d; }
.site-offer-copy > p:last-child { max-width: 650px; color: #314a5d; font-size: 14px; line-height: 1.7; }
.site-price { position: relative; z-index: 2; }
.site-price small { display: block; color: #3b5668; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.site-price strong { font-size: 64px; letter-spacing: -.07em; line-height: 1; }
.site-price sup { font-size: 18px; top: -1.7em; position: relative; margin-right: 4px; }
.site-price span { font-size: 12px; color: #41596a; margin-left: 5px; }
.button-dark { width: fit-content; color: white; background: #07101d; position: relative; z-index: 2; }
.button-dark span { color: var(--cyan); }

.plans { border-top: 1px solid var(--line); }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 65px auto 0; max-width: 1000px; }
.plan-card { min-height: 570px; padding: 38px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); display: flex; flex-direction: column; position: relative; }
.plan-card-featured { border-color: rgba(55,120,238,.45); background: radial-gradient(circle at 100% 0, rgba(38,200,234,.12), transparent 35%), linear-gradient(145deg, rgba(68,104,255,.12), rgba(255,255,255,.02)); }
.plan-type { color: #72809d; font: 650 9px "SFMono-Regular", Consolas, "Liberation Mono", monospace; letter-spacing: .15em; }
.free-tag { position: absolute; top: 28px; right: 28px; padding: 7px 10px; border: 1px solid rgba(38,200,234,.3); border-radius: 20px; color: #70def0; font-size: 8px; font-weight: 750; letter-spacing: .12em; }
.plan-card h3 { font-size: 28px; margin: 35px 0 10px; letter-spacing: -.03em; }
.plan-card > p { color: #8e9ab2; font-size: 12px; line-height: 1.6; }
.price { min-height: 110px; margin-top: 26px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.price small { display: block; color: #6f7c95; font-size: 9px; margin-bottom: 5px; }
.price strong { font-size: 39px; letter-spacing: -.05em; }
.price span { color: #79869e; font-size: 11px; margin-left: 4px; }
.plan-card ul { list-style: none; padding: 25px 0; margin: 0; display: grid; gap: 13px; flex: 1; }
.plan-card li { color: #aab4c9; font-size: 12px; }
.plan-card li i { color: var(--cyan); font-style: normal; margin-right: 9px; }

.process { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; border-top: 1px solid var(--line); }
.process ol { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process li { min-height: 170px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; gap: 20px; }
.process li b { color: var(--cyan); font: 650 9px "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.process li h3 { font-size: 14px; margin-bottom: 10px; }
.process li p { color: #7f8ca5; font-size: 11px; line-height: 1.6; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; padding: 24px 3px; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 13px; font-weight: 660; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--cyan); font-size: 18px; font-weight: 300; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { color: #8794ad; font-size: 12px; line-height: 1.7; padding: 0 35px 23px 3px; }

.final-cta {
  max-width: 1272px;
  margin: 30px auto 90px;
  padding: 85px 30px;
  border: 1px solid rgba(68,104,255,.35);
  border-radius: 22px;
  text-align: center;
  background: radial-gradient(circle at 50% 8%, rgba(68,104,255,.2), transparent 47%), #0a1020;
}
.final-cta .north-mark { margin: 0 auto 28px; width: 82px; height: 82px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta > p:not(.eyebrow) { color: var(--muted); font-size: 14px; margin: 22px auto 29px; }

footer {
  max-width: 1272px;
  margin: auto;
  padding: 48px 0 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: start;
  color: #78859e;
}
footer > p { font-size: 10px; line-height: 1.7; }
.footer-links { display: flex; gap: 23px; font-size: 10px; }
footer small { grid-column: 1 / -1; margin-top: 28px; color: #535f75; font-size: 9px; }

@media (max-width: 1080px) {
  .site-header { padding: 0 28px; }
  .site-header nav { display: none; }
  .hero { padding: 70px 28px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .starfield-visual { max-width: 650px; width: 100%; margin: auto; }
  .section { padding: 92px 28px; }
  .glpi-detail, .security { gap: 45px; }
  .site-offer, .final-cta, footer { margin-left: 28px; margin-right: 28px; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 20px; }
  .header-button { display: none; }
  .brand { font-size: 17px; }
  .hero { min-height: auto; padding: 56px 20px 62px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-offers { display: block; }
  .hero-offers div + div { border-left: 0; padding-left: 0; }
  .starfield-visual { height: 440px; transform: scale(.84); margin: -20px -45px; width: calc(100% + 90px); }
  .proof-strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; padding: 0 22px; }
  .section { padding: 78px 20px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 25px; }
  .section h2, .site-offer h2, .final-cta h2 { font-size: 39px; }
  .solution-grid, .glpi-detail, .security, .plans-grid, .process, .faq { grid-template-columns: 1fr; }
  .solution-grid { margin-top: 44px; }
  .solution-card { min-height: 560px; padding: 30px 24px; }
  .feature-board { grid-template-columns: 1fr; }
  .feature-board article { min-height: 185px; }
  .security-visual { min-height: 410px; }
  .security-list { grid-template-columns: 1fr; }
  .site-offer { margin: 10px 12px 70px; padding: 50px 24px; grid-template-columns: 1fr; gap: 30px; }
  .site-offer-label { grid-column: auto; }
  .site-price strong { font-size: 58px; }
  .plan-card { min-height: 550px; padding: 30px 24px; }
  .process { gap: 45px; }
  .process ol { grid-template-columns: 1fr; }
  .faq { gap: 45px; }
  .final-cta { margin: 10px 12px 70px; padding: 68px 20px; }
  footer { margin: 0 20px; grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .site-header nav a, .footer-links a { transition: none; }
}
