:root {
  --bg: #06100d;
  --bg-deep: #030907;
  --surface: #0a1813;
  --surface-2: #0e211a;
  --text: #f4fbf7;
  --muted: #9fb3aa;
  --green: #1ed38a;
  --green-bright: #55f4c1;
  --green-soft: #b7ffe5;
  --red: #ef3340;
  --black: #0b0d0c;
  --line: rgba(190, 255, 224, 0.14);
  --line-strong: rgba(190, 255, 224, 0.24);
  --radius: 24px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(30, 211, 138, 0.11), transparent 29rem),
    radial-gradient(circle at 5% 42%, rgba(239, 51, 64, 0.05), transparent 24rem),
    var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  z-index: -1;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: white; color: black; padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.purchase-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .6rem 1.25rem;
  background: linear-gradient(90deg, #0d2a20, #123c2c 45%, #0e261e);
  border-bottom: 1px solid rgba(111,255,198,.2);
  font-size: .82rem;
  letter-spacing: .02em;
}
.purchase-bar p { margin: 0; color: #d6eee3; }
.purchase-bar a { color: var(--green-bright); text-decoration: none; font-weight: 800; white-space: nowrap; }
.purchase-bar__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 0 rgba(85,244,193,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(85,244,193,0); } 100% { box-shadow: 0 0 0 0 rgba(85,244,193,0); } }

.site-header {
  width: min(1240px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30;
}
.wordmark { text-decoration: none; font-family: "Space Grotesk", sans-serif; font-size: 1.32rem; font-weight: 700; letter-spacing: -.04em; }
.wordmark__cyber { color: #fff; }
.wordmark__libya { color: var(--green-bright); }
.wordmark__dot { color: #fff; font-weight: 600; }
.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav > a { color: #bdd0c7; text-decoration: none; font-size: .86rem; font-weight: 700; transition: color .2s; }
.site-nav > a:hover { color: #fff; }
.site-nav .nav-cta { color: #07100d; background: var(--green-bright); padding: .7rem 1rem; border-radius: 10px; }
.site-nav .nav-cta:hover { color: #07100d; background: #8bffda; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.04); padding: 11px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 4px 0; transition: .2s; }

.section-shell { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.hero { min-height: calc(100vh - 128px); display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 5rem; padding-top: 4rem; padding-bottom: 7rem; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem; color: var(--green-bright); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 1px; background: currentColor; box-shadow: 7px 0 currentColor; }
.hero h1, .section-heading h2, .advantage-copy h2, .domain-fit-card h2, .final-cta h2 { margin: 0; font-family: "Space Grotesk", sans-serif; letter-spacing: -.055em; line-height: .99; }
.hero h1 { max-width: 760px; font-size: clamp(3.4rem, 6.5vw, 6.5rem); font-weight: 700; }
.gradient-text { display: block; background: linear-gradient(90deg, #fff 2%, var(--green-bright) 48%, #78d9b8 94%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { max-width: 690px; margin: 1.8rem 0 0; color: #b6c9c0; font-size: 1.08rem; }
.hero__lead strong { color: white; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 52px; padding: .8rem 1.2rem; border: 1px solid transparent; border-radius: 12px; text-decoration: none; font-size: .9rem; font-weight: 800; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #04100b; background: linear-gradient(135deg, var(--green-bright), #20d68b); box-shadow: 0 12px 32px rgba(30,211,138,.18); }
.button--primary:hover { background: linear-gradient(135deg, #8bffda, #42eaa7); }
.button--secondary { color: #e8f5ef; background: rgba(255,255,255,.025); border-color: var(--line-strong); }
.button--secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(190,255,224,.42); }
.button--large { min-height: 58px; padding-inline: 1.5rem; }
.hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.7rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero__proof div { display: grid; grid-template-columns: auto 1fr; column-gap: .6rem; align-items: center; }
.proof-icon { grid-row: span 2; width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid rgba(85,244,193,.34); background: rgba(85,244,193,.08); color: var(--green-bright); border-radius: 8px; font-size: .72rem; }
.hero__proof strong { color: #ecf8f2; font-size: .83rem; }
.hero__proof small { color: #779087; font-size: .7rem; }

.hero__visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(85,244,193,.12); border-radius: 50%; }
.visual-orbit--one { width: 540px; height: 540px; animation: spin 38s linear infinite; }
.visual-orbit--one::before, .visual-orbit--two::before { content: ""; position: absolute; top: 9%; left: 20%; width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 16px var(--green-bright); }
.visual-orbit--two { width: 430px; height: 430px; border-style: dashed; animation: spin 28s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.cyber-card { position: relative; width: min(100%, 555px); border: 1px solid rgba(147,255,210,.2); border-radius: 26px; overflow: hidden; background: linear-gradient(145deg, rgba(14,34,27,.94), rgba(4,14,11,.92)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(12px); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.cyber-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.035) 42%, transparent 65%); transform: translateX(-100%); animation: shine 6s infinite; pointer-events: none; }
@keyframes shine { 0%, 60% { transform: translateX(-100%); } 85%,100% { transform: translateX(100%); } }
.cyber-card__top, .cyber-card__bottom { min-height: 48px; display: flex; align-items: center; gap: .65rem; padding: 0 1rem; border-bottom: 1px solid var(--line); color: #8ba299; font-family: "Space Grotesk", sans-serif; font-size: .65rem; letter-spacing: .12em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 12px var(--green-bright); }
.status-code { margin-left: auto; }
.cyber-card__bottom { justify-content: space-between; border: 0; border-top: 1px solid var(--line); letter-spacing: .05em; }
.map-field { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; }
.map-field::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 48%, rgba(30,211,138,.12), transparent 46%); }
.network-map { width: 100%; opacity: .74; }
.country-form { fill: rgba(30,211,138,.04); stroke: rgba(85,244,193,.28); stroke-width: 2; stroke-dasharray: 5 7; }
.nodes circle { fill: var(--green-bright); }
.scan-lines path { stroke: rgba(255,255,255,.035); stroke-width: 1; }
.domain-display { position: absolute; text-align: center; padding: 1.3rem 1.6rem; border: 1px solid rgba(85,244,193,.24); border-radius: 18px; background: rgba(3,13,10,.72); box-shadow: 0 20px 60px rgba(0,0,0,.35); backdrop-filter: blur(10px); }
.domain-display__label { display: block; margin-bottom: .45rem; color: #749287; font-size: .57rem; font-weight: 800; letter-spacing: .2em; }
.domain-display > div { font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -.06em; }
.domain-display > div span:first-child { color: white; }
.domain-display > div span:nth-child(2) { color: var(--green-bright); }
.domain-display > div small { color: white; font-size: .45em; }
.domain-display__state { margin-top: .75rem; display: inline-flex; align-items: center; gap: .4rem; color: var(--green-soft); font-size: .54rem; font-weight: 800; letter-spacing: .13em; }
.domain-display__state i { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }

.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.signal-strip__track { width: max-content; min-height: 72px; display: flex; align-items: center; gap: 2rem; color: #8aa298; font-family: "Space Grotesk", sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; animation: ticker 35s linear infinite; }
.signal-strip__track i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 8rem 0; }
.section-heading { max-width: 730px; margin-bottom: 3.2rem; }
.section-heading h2, .advantage-copy h2, .domain-fit-card h2, .final-cta h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.section-heading > p { color: var(--muted); max-width: 650px; margin: 1.3rem 0 0; font-size: 1.02rem; }
.possibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.possibility-card { position: relative; min-height: 355px; padding: 1.5rem; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.027), rgba(255,255,255,.012)); overflow: hidden; transition: transform .25s, border-color .25s, background .25s; }
.possibility-card::after { content: ""; position: absolute; right: -65px; bottom: -85px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(30,211,138,.1), transparent 66%); }
.possibility-card:hover { transform: translateY(-7px); border-color: rgba(85,244,193,.35); background: linear-gradient(180deg, rgba(85,244,193,.05), rgba(255,255,255,.012)); }
.card-number { margin-left: auto; color: #50665c; font-family: "Space Grotesk", sans-serif; font-size: .72rem; }
.card-icon { width: 58px; height: 58px; margin: 2.2rem 0 2rem; border: 1px solid rgba(85,244,193,.23); border-radius: 17px; background: rgba(85,244,193,.05); position: relative; }
.shield-icon::before { content: ""; position: absolute; width: 22px; height: 27px; top: 14px; left: 17px; border: 2px solid var(--green-bright); border-radius: 12px 12px 15px 15px; clip-path: polygon(50% 0, 100% 20%, 86% 78%, 50% 100%, 14% 78%, 0 20%); }
.radar-icon::before { content: ""; position: absolute; inset: 14px; border: 1px solid var(--green-bright); border-radius: 50%; box-shadow: inset 0 0 0 7px rgba(85,244,193,.05); }
.radar-icon::after { content: ""; position: absolute; width: 18px; height: 1px; left: 29px; top: 29px; background: var(--green-bright); transform-origin: left; transform: rotate(-38deg); }
.nodes-icon::before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; left: 24px; top: 11px; background: var(--green-bright); box-shadow: -14px 26px 0 var(--green-bright), 14px 26px 0 var(--green-bright); }
.nodes-icon::after { content: ""; position: absolute; width: 30px; height: 25px; left: 14px; top: 17px; border-left: 1px solid var(--green-bright); border-right: 1px solid var(--green-bright); border-bottom: 1px solid var(--green-bright); transform: perspective(20px) rotateX(20deg); }
.broadcast-icon::before { content: ""; position: absolute; inset: 13px; border: 1px solid var(--green-bright); border-radius: 50%; box-shadow: inset 0 0 0 7px rgba(85,244,193,.05); }
.broadcast-icon::after { content: ""; position: absolute; width: 7px; height: 7px; top: 25px; left: 25px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 14px var(--green-bright); }
.possibility-card h3 { margin: 0 0 .8rem; font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; }
.possibility-card p { margin: 0; color: #94aaa0; font-size: .87rem; line-height: 1.72; }
.card-tag { margin-top: auto; color: var(--green-bright); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.section--contrast { background: #eaf4ef; color: #0b1712; }
.advantage-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7rem; align-items: start; }
.eyebrow--dark { color: #08744c; }
.advantage-copy { position: sticky; top: 2rem; }
.advantage-copy p { color: #52645c; max-width: 510px; margin: 1.5rem 0; }
.text-link { display: inline-flex; gap: .5rem; color: #08744c; text-decoration: none; border-bottom: 1px solid rgba(8,116,76,.24); padding-bottom: .2rem; font-weight: 800; }
.advantage-list { border-top: 1px solid rgba(11,23,18,.16); }
.advantage-item { display: grid; grid-template-columns: 55px 1fr; gap: 1.3rem; padding: 2rem 0; border-bottom: 1px solid rgba(11,23,18,.16); }
.advantage-index { color: #078254; font-family: "Space Grotesk", sans-serif; font-size: .72rem; font-weight: 700; }
.advantage-item h3 { margin: 0 0 .45rem; font-family: "Space Grotesk", sans-serif; font-size: 1.35rem; }
.advantage-item p { margin: 0; color: #5b6d65; font-size: .9rem; }

.domain-fit-card { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 3rem; align-items: center; padding: 4rem; border: 1px solid rgba(85,244,193,.18); border-radius: 32px; background: linear-gradient(135deg, rgba(30,211,138,.08), rgba(255,255,255,.018) 55%, rgba(239,51,64,.025)); overflow: hidden; }
.domain-fit-card::before { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -210px; border: 1px solid rgba(85,244,193,.12); border-radius: 50%; box-shadow: 0 0 0 60px rgba(85,244,193,.025), 0 0 0 120px rgba(85,244,193,.014); }
.domain-fit-card h2 { color: var(--green-bright); }
.domain-fit-card__copy p { max-width: 700px; color: #a8bcb2; }
.domain-fit-card__metrics { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-strong); border-radius: 20px; overflow: hidden; background: rgba(4,15,11,.56); }
.domain-fit-card__metrics div { padding: 1.7rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.domain-fit-card__metrics div:last-child { border: 0; }
.domain-fit-card__metrics strong { display: block; color: white; font-family: "Space Grotesk", sans-serif; font-size: 1.7rem; }
.domain-fit-card__metrics span { color: #7e968b; font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }

.final-cta { position: relative; margin-top: 2rem; margin-bottom: 7rem; padding: 7rem 2rem; text-align: center; border: 1px solid var(--line); border-radius: 34px; overflow: hidden; background: linear-gradient(160deg, #0a2119, #06100d 68%); }
.final-cta__glow { position: absolute; width: 600px; height: 600px; left: calc(50% - 300px); top: -400px; border-radius: 50%; background: var(--green); filter: blur(100px); opacity: .16; }
.final-cta__kicker { position: relative; color: var(--green-bright); font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.final-cta h2 { position: relative; }
.final-cta h2 span { color: var(--green-bright); }
.final-cta > p:not(.final-cta__kicker) { position: relative; max-width: 680px; margin: 1.4rem auto 2rem; color: #9eb3a9; }
.final-cta .button { position: relative; }

.site-footer { width: min(1240px, calc(100% - 40px)); min-height: 130px; margin: auto; display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; border-top: 1px solid var(--line); }
.wordmark--footer { font-size: 1.15rem; }
.site-footer p { max-width: 650px; margin: 0; color: #71897f; font-size: .72rem; text-align: center; }
.site-footer > a:last-child { color: #9eb3a9; text-decoration: none; font-size: .75rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding-top: 5rem; }
  .hero__copy { max-width: 850px; }
  .hero__visual { min-height: 600px; }
  .possibility-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .advantage-copy { position: static; }
  .domain-fit-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .purchase-bar { min-height: 56px; flex-wrap: wrap; gap: .1rem .8rem; text-align: center; }
  .purchase-bar__pulse { display: none; }
  .site-header { width: min(100% - 28px, 1240px); height: 72px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 66px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .6rem; border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(4,14,11,.97); box-shadow: 0 20px 60px rgba(0,0,0,.45); }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: .95rem 1rem; }
  .site-nav .nav-cta { margin-top: .4rem; text-align: center; }
  .section-shell { width: min(100% - 28px, 1240px); }
  .hero { min-height: auto; padding-top: 4rem; padding-bottom: 5rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero__lead { font-size: .98rem; }
  .hero__actions { flex-direction: column; }
  .button { width: 100%; }
  .hero__proof { grid-template-columns: 1fr; }
  .hero__visual { min-height: 460px; }
  .visual-orbit--one { width: 420px; height: 420px; }
  .visual-orbit--two { width: 330px; height: 330px; }
  .cyber-card { transform: none; }
  .map-field { min-height: 390px; }
  .cyber-card__bottom { font-size: .53rem; }
  .signal-strip__track { min-height: 58px; }
  .section { padding: 5.5rem 0; }
  .section-heading h2, .advantage-copy h2, .domain-fit-card h2, .final-cta h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .possibility-grid { grid-template-columns: 1fr; }
  .possibility-card { min-height: 310px; }
  .advantage-item { grid-template-columns: 42px 1fr; }
  .domain-fit-card { padding: 2rem 1.35rem; }
  .domain-fit-card__metrics { grid-template-columns: 1fr; }
  .domain-fit-card__metrics div { border-right: 0; border-bottom: 1px solid var(--line); }
  .final-cta { padding: 5rem 1.2rem; }
  .site-footer { padding: 2.5rem 0; grid-template-columns: 1fr; text-align: center; }
  .site-footer p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
