:root {
  --bg: #050706;
  --bg-soft: #0a0e0b;
  --panel: rgba(15, 20, 16, 0.78);
  --panel-strong: #0e130f;
  --text: #f5f7f5;
  --muted: #a9b3ab;
  --muted-2: #7f8b82;
  --line: rgba(255,255,255,.12);
  --green: #87f20d;
  --green-2: #66c800;
  --green-soft: rgba(135, 242, 13, .12);
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 6%, rgba(109, 205, 0, .16), transparent 26rem),
    radial-gradient(circle at 10% 28%, rgba(61, 111, 13, .08), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 1000;
  transform: translateY(-160%); padding: .75rem 1rem;
  background: var(--green); color: #071005; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: 7rem 0; position: relative; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading h2 { font-size: clamp(2rem, 4.3vw, 4rem); line-height: 1.04; letter-spacing: -.045em; margin: .35rem 0 1rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; max-width: 680px; }
.eyebrow, .mini-label { color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(5, 7, 6, .62); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent; transition: .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(5, 7, 6, .9); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { width: 250px; display: inline-flex; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 1.65rem; }
.site-nav a { color: #d6ddd7; text-decoration: none; font-size: .94rem; font-weight: 650; }
.site-nav a:hover { color: var(--green); }
.nav-cta { border: 1px solid rgba(135,242,13,.45); border-radius: 999px; padding: .62rem 1rem; background: rgba(135,242,13,.08); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #0d110e; border-radius: 12px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: white; margin: 4px 0; border-radius: 2px; }

.hero { min-height: 760px; padding: 10rem 0 5rem; display: grid; align-items: center; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,6,.92) 0%, rgba(5,7,6,.46) 48%, rgba(5,7,6,.15) 100%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 5rem; align-items: center; }
.hero-copy .eyebrow { color: #d8e2d9; display: flex; align-items: center; gap: .7rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.hero h1 { font-size: clamp(3.2rem, 6.4vw, 6.8rem); letter-spacing: -.065em; line-height: .92; margin: 1.4rem 0 1.5rem; max-width: 880px; }
.hero h1 span { color: var(--green); text-shadow: 0 0 44px rgba(135,242,13,.18); }
.hero-lead { color: #c2cbc4; font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 2.4rem; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: .5rem; min-height: 48px; padding: .78rem 1.15rem; border-radius: 12px; font-weight: 850; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #071005; box-shadow: 0 12px 34px rgba(135,242,13,.14); }
.button-secondary { background: rgba(255,255,255,.04); border-color: var(--line); color: white; }
.button.full { width: 100%; margin-top: 1.3rem; }
.button:disabled { opacity: .58; cursor: not-allowed; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 720px; }
.hero-proof div { border-top: 1px solid var(--line); padding-top: 1rem; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: .93rem; }
.hero-proof span { color: var(--muted-2); font-size: .82rem; margin-top: .25rem; }

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.hero-visual::after { content: ""; position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%; background: rgba(100, 195, 0, .12); filter: blur(80px); }
.orbit { position: absolute; border: 1px solid rgba(135,242,13,.16); border-radius: 50%; }
.orbit-a { width: 470px; height: 470px; transform: rotate(12deg); }
.orbit-b { width: 340px; height: 340px; border-color: rgba(255,255,255,.09); }
.system-card { position: relative; z-index: 2; width: min(100%, 470px); background: linear-gradient(180deg, rgba(20,27,21,.96), rgba(8,12,9,.96)); border: 1px solid rgba(135,242,13,.22); border-radius: 26px; box-shadow: var(--shadow); padding: 1.4rem; }
.card-topline { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .11em; }
.status { color: var(--green); }
.system-layers { margin: 1.5rem 0; }
.layer { display: flex; align-items: center; gap: 1rem; padding: 1.15rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.layer-two { border-color: rgba(135,242,13,.45); box-shadow: inset 0 0 35px rgba(135,242,13,.06); }
.layer-index { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--green-soft); color: var(--green); font-weight: 900; }
.layer strong, .layer small { display: block; }
.layer small { color: var(--muted-2); margin-top: .12rem; }
.connector { width: 1px; height: 18px; background: linear-gradient(var(--green), rgba(135,242,13,.08)); margin: 0 0 0 2.45rem; }
.system-note { color: var(--muted); margin: 0; font-size: .87rem; }
.floating-chip { position: absolute; z-index: 3; border: 1px solid rgba(135,242,13,.26); background: rgba(7,11,8,.84); backdrop-filter: blur(10px); color: #d8e5d9; padding: .55rem .75rem; border-radius: 999px; font-size: .75rem; box-shadow: 0 14px 28px rgba(0,0,0,.35); }
.chip-a { top: 16%; right: 3%; }
.chip-b { bottom: 20%; left: 0; }
.chip-c { bottom: 8%; right: 4%; }
.cityline { position: absolute; inset: auto -18vw -6rem 0; height: 170px; opacity: .16; background:
  linear-gradient(to top, rgba(135,242,13,.35), transparent 2px) bottom/100% 1px no-repeat,
  linear-gradient(90deg, transparent 0 5%, rgba(135,242,13,.35) 5% 8%, transparent 8% 12%, rgba(135,242,13,.28) 12% 20%, transparent 20% 22%, rgba(135,242,13,.30) 22% 25%, transparent 25% 31%, rgba(135,242,13,.25) 31% 42%, transparent 42% 46%, rgba(135,242,13,.34) 46% 49%, transparent 49% 56%, rgba(135,242,13,.24) 56% 66%, transparent 66% 69%, rgba(135,242,13,.34) 69% 74%, transparent 74% 79%, rgba(135,242,13,.24) 79% 91%, transparent 91%);
  clip-path: polygon(0 100%,0 62%,5% 62%,5% 41%,8% 41%,8% 73%,12% 73%,12% 54%,20% 54%,20% 80%,22% 80%,22% 24%,25% 24%,25% 66%,31% 66%,31% 49%,42% 49%,42% 74%,46% 74%,46% 31%,49% 31%,49% 79%,56% 79%,56% 57%,66% 57%,66% 76%,69% 76%,69% 35%,74% 35%,74% 71%,79% 71%,79% 47%,91% 47%,91% 65%,100% 65%,100% 100%);
}

.hook-band { border-block: 1px solid rgba(135,242,13,.16); background: linear-gradient(90deg, rgba(135,242,13,.06), rgba(255,255,255,.015)); padding: 3.2rem 0; }
.hook-grid { display: grid; grid-template-columns: 72px 1fr; gap: 1.4rem; align-items: start; }
.hook-icon { width: 56px; height: 56px; border: 2px solid var(--green); border-radius: 16px; display: grid; place-items: center; color: var(--green); font-size: 1.5rem; box-shadow: 0 0 30px rgba(135,242,13,.12); }
.hook-kicker { margin: 0 0 .6rem; color: var(--green); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.hook-grid h2 { margin: 0; max-width: 900px; font-size: clamp(1.65rem, 3.2vw, 3rem); line-height: 1.12; letter-spacing: -.035em; }
.hook-grid p:last-child { max-width: 880px; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { position: relative; min-height: 100%; background: linear-gradient(180deg, rgba(18,24,19,.88), rgba(8,11,9,.94)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.55rem; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.featured-service { border-color: rgba(135,242,13,.3); box-shadow: 0 20px 60px rgba(76, 129, 8, .08); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(135,242,13,.3); border-radius: 14px; color: var(--green); font-size: 1.4rem; margin-bottom: 1.5rem; background: var(--green-soft); }
.service-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted-2); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-meta span:last-child { color: var(--green); }
.service-card h3 { font-size: 1.65rem; letter-spacing: -.025em; margin: .75rem 0; }
.service-card > p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0; }
.feature-list li { color: #cad2cb; padding: .46rem 0 .46rem 1.45rem; position: relative; font-size: .94rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.text-link { display: inline-flex; gap: .4rem; color: white; text-decoration: none; font-weight: 800; margin-top: .7rem; }
.text-link span { color: var(--green); }
.text-link:hover { color: var(--green); }

.bundles-section { background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(135,242,13,.025), transparent); }
.bundle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.bundle-card { position: relative; border: 1px solid var(--line); border-radius: 28px; background: rgba(10,14,11,.9); padding: 1.8rem; overflow: hidden; }
.bundle-card.best { border-color: rgba(135,242,13,.6); box-shadow: 0 0 0 1px rgba(135,242,13,.12), 0 30px 80px rgba(73,130,7,.09); }
.bundle-card.best::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(135,242,13,.14), transparent 38%); pointer-events: none; }
.bundle-badge { display: inline-flex; background: var(--green); color: #071005; font-size: .68rem; font-weight: 900; letter-spacing: .09em; padding: .4rem .65rem; border-radius: 8px; position: relative; z-index: 1; }
.bundle-badge.muted { color: var(--green); border: 1px solid rgba(135,242,13,.25); background: var(--green-soft); }
.bundle-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-end; margin: 1.4rem 0 1rem; position: relative; z-index: 1; }
.bundle-head h3 { margin: .25rem 0 0; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.05; letter-spacing: -.04em; }
.bundle-price { text-align: right; white-space: nowrap; }
.bundle-price strong { display: block; color: var(--green); font-size: 2.4rem; line-height: 1; }
.bundle-price span { color: var(--muted-2); font-size: .8rem; }
.bundle-card > p { color: var(--muted); position: relative; z-index: 1; }
.saving-line { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; border-radius: 14px; background: rgba(255,255,255,.035); border: 1px solid var(--line); font-size: .86rem; }
.saving-line strong { color: var(--green); }
.feature-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

.comparison-section { overflow: hidden; }
.comparison-section::before { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: rgba(97,180,7,.08); filter: blur(110px); top: 10%; right: -300px; }
.benchmark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.benchmark-card { background: rgba(12,16,13,.86); border: 1px solid var(--line); border-radius: 20px; padding: 1.45rem; }
.benchmark-source { color: var(--green); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.benchmark-card strong { display: block; font-size: clamp(2.1rem, 4vw, 3.7rem); letter-spacing: -.05em; margin: .65rem 0 .3rem; }
.benchmark-card strong span { color: var(--muted-2); font-size: .95rem; margin-left: .25rem; letter-spacing: 0; }
.benchmark-card p { color: var(--muted); margin-bottom: 0; }
.value-panel { margin-top: 1.2rem; border: 1px solid rgba(135,242,13,.32); border-radius: 26px; background: linear-gradient(120deg, rgba(135,242,13,.08), rgba(7,10,8,.9) 48%); display: grid; grid-template-columns: 1.18fr .82fr; gap: 2rem; padding: 2rem; }
.value-copy h3 { font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.07; margin: .4rem 0 1rem; letter-spacing: -.04em; }
.value-copy p:last-child { color: var(--muted); }
.value-copy strong { color: white; }
.value-metrics { display: grid; gap: .7rem; }
.value-metrics div { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; align-items: center; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(0,0,0,.2); }
.value-metrics span { color: var(--muted); }
.value-metrics strong { color: var(--green); font-size: 1.4rem; }
.value-metrics small { grid-column: 1 / -1; color: var(--muted-2); }
.benchmark-foot { margin-top: 1.25rem; color: var(--muted-2); font-size: .82rem; max-width: 980px; }
.benchmark-foot a { color: #c8d4ca; }
.benchmark-foot a:hover { color: var(--green); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.why-card { border-top: 1px solid var(--line); padding: 1.4rem .3rem 0; }
.why-card > span { color: var(--green); font-size: .76rem; font-weight: 900; }
.why-card h3 { font-size: 1.25rem; margin: .5rem 0; }
.why-card p { color: var(--muted); font-size: .94rem; }

.process-section { background: #070a08; border-block: 1px solid rgba(255,255,255,.06); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.process-step { padding: 1.35rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); }
.process-step span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--green-soft); color: var(--green); font-weight: 900; }
.process-step h3 { margin: 1rem 0 .5rem; font-size: 1.15rem; }
.process-step p { color: var(--muted); font-size: .9rem; }

.enquiry-card { border: 1px solid rgba(135,242,13,.32); background: linear-gradient(135deg, rgba(135,242,13,.09), rgba(12,16,13,.96) 42%); border-radius: 28px; padding: clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; box-shadow: 0 30px 80px rgba(0,0,0,.26); }
.enquiry-card h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: .98; letter-spacing: -.05em; margin: .4rem 0 1rem; }
.enquiry-card > div > p:not(.eyebrow) { color: var(--muted); max-width: 720px; }
.enquiry-card code { color: #d7e2d9; background: rgba(255,255,255,.05); padding: .12rem .3rem; border-radius: 5px; }
.enquiry-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.form-status { color: var(--muted-2); font-size: .83rem; }
.enquiry-side { border-left: 1px solid var(--line); padding-left: 2rem; }
.enquiry-side ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.enquiry-side li { padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.07); color: #d2dbd4; }

.site-footer { border-top: 1px solid var(--line); padding: 4rem 0 1.6rem; background: #030504; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr 1fr; gap: 3rem; }
.footer-brand img { width: 260px; }
.footer-brand p, .footer-grid > div:last-child p { color: var(--muted); max-width: 460px; font-size: .9rem; }
.footer-grid h2 { font-size: .8rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > div:nth-child(2) a { display: block; color: #dce2dd; text-decoration: none; margin: .55rem 0; font-size: .9rem; }
.footer-grid > div:nth-child(2) a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.2rem; color: var(--muted-2); font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 82px 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; padding: 1rem; background: rgba(8,12,9,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding-top: 8rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero-visual { min-height: 480px; }
  .service-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .bundle-grid, .value-panel, .enquiry-card { grid-template-columns: 1fr; }
  .benchmark-grid { grid-template-columns: 1fr 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-side { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 1.2rem), var(--container)); }
  .section { padding: 5rem 0; }
  .brand { width: 210px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .orbit-a { width: 390px; height: 390px; }
  .orbit-b { width: 285px; height: 285px; }
  .hook-grid { grid-template-columns: 1fr; }
  .service-grid, .why-grid, .benchmark-grid, .process-grid { grid-template-columns: 1fr; }
  .bundle-head { align-items: flex-start; flex-direction: column; }
  .bundle-price { text-align: left; }
  .feature-list.two-col { grid-template-columns: 1fr; }
  .saving-line { flex-direction: column; }
  .value-panel { padding: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-chip { display: none; }
}
