:root {
  color-scheme: dark;
  --bg: #020b15;
  --panel: #031929;
  --panel-2: #06233a;
  --text: #f4fbff;
  --muted: #c5d8e8;
  --green: #61d6ff;
  --green-2: #377cff;
  --blue: #4b8bff;
  --line: rgba(94,163,255,.42);
  --shadow: 0 24px 70px rgba(0, 35, 90, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(40, 203, 255, .18), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(55, 124, 255, .20), transparent 34%),
    linear-gradient(180deg, #041b2b 0%, var(--bg) 540px, #01070e 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(3, 9, 21, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 232px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(75,139,255,.24));
}

nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--text);
}

.nav-cta,
.primary-button,
.secondary-button,
.submit-button {
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, #73d9ff, #3178ff);
  color: #fff;
  box-shadow: 0 0 22px rgba(55, 124, 255, .34);
}

.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: .18;
  filter: saturate(1.06) contrast(1.1);
}

.hero-shade {
  background:
    radial-gradient(circle at 14% 18%, rgba(52, 151, 255, .15), transparent 30%),
    linear-gradient(90deg, rgba(1,7,14,.96) 0%, rgba(1,13,24,.92) 44%, rgba(1,14,25,.84) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "form visual"
    "copy visual";
  grid-template-columns: minmax(420px, .86fr) minmax(520px, 1.14fr);
  gap: 28px 56px;
  align-items: start;
  max-width: 1240px;
  min-height: 960px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.hero-copy {
  grid-area: copy;
  max-width: 650px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(68px, 9vw, 128px);
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 400;
  line-height: .95;
  text-transform: none;
  text-shadow: 0 10px 30px rgba(0,0,0,.42);
}

.hero-copy h1 span,
.lead strong {
  color: var(--blue);
  font-weight: inherit;
}

h2 {
  margin-bottom: 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.lead {
  max-width: 600px;
  color: #e6eded;
  font-size: 26px;
  font-weight: 700;
}

.ad-rule {
  width: 66px;
  height: 3px;
  margin: 24px 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #77dfff, #3d7eff);
  box-shadow: 0 0 18px rgba(75,139,255,.45);
}

.hero-stats {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.hero-stats article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 16px 20px;
  border: 1px solid rgba(121, 171, 255, .58);
  border-radius: 8px;
  background: rgba(3, 25, 41, .72);
  box-shadow: inset 0 0 28px rgba(58, 139, 255, .07);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  color: #74d8ff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 20px rgba(75,139,255,.26);
}

.hero-stats small,
.hero-stats em {
  display: block;
  color: #f4fbff;
  font-size: 16px;
  font-style: normal;
  line-height: 1.15;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: .95;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0;
  border: 1px solid rgba(121, 171, 255, .52);
  border-radius: 8px;
  background: rgba(3, 25, 41, .72);
  overflow: hidden;
}

.proof-row span {
  flex: 1 1 50%;
  min-width: 160px;
  padding: 16px 18px;
  border-right: 1px solid rgba(121, 171, 255, .38);
  color: #eef5f3;
  font-weight: 700;
}

.proof-row span:nth-child(2),
.proof-row span:last-child {
  border-right: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
}

.primary-button {
  background: linear-gradient(135deg, #75dfff, #397dff 72%);
  color: #fff;
  box-shadow: 0 0 32px rgba(55,124,255,.38);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(3, 25, 41, .78);
  color: var(--text);
}

.hero-visual {
  grid-area: visual;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-auto-rows: 210px;
  gap: 12px;
  padding-top: 6px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(83, 148, 255, .86);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
}

.hero-visual-main {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.hero-visual-wide {
  grid-column: 1 / -1;
}

.lead-card {
  grid-area: form;
  padding: 28px;
  border: 1px solid rgba(121, 171, 255, .58);
  border-radius: 8px;
  background: rgba(3, 20, 35, .94);
  box-shadow: var(--shadow);
  scroll-margin-top: 88px;
}

.lead-card h2 {
  font-size: 42px;
}

.form-intro,
.privacy-note,
.form-status {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #eaf1ef;
  font-size: 13px;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 6px;
  background: #f7faf8;
  color: #081014;
  font: inherit;
  font-size: 15px;
  padding: 12px;
}

textarea {
  min-height: 94px;
  resize: vertical;
}

.consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.consent input {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  margin: 0;
  border-radius: 4px;
  transform: translateY(1px);
}

.submit-button {
  width: 100%;
  min-height: 62px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #020814;
  font-size: 18px;
}

.privacy-note,
.form-status {
  margin: 12px 0 0;
  font-size: 12px;
}

.form-status.success {
  color: var(--green);
  font-weight: 800;
}

.form-status.error {
  color: #ffb4a8;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(121, 171, 255, .42);
  border-radius: 8px;
  background: rgba(3, 25, 41, .78);
  transform: translateY(-34px);
  overflow: hidden;
}

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 22px;
  color: #fff;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 24px 96px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.split p {
  color: var(--muted);
  font-size: 19px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  container-type: inline-size;
}

.metric-grid article {
  min-width: 0;
  min-height: 218px;
  padding: 24px;
  border: 1px solid rgba(25,215,255,.42);
  border-radius: 8px;
  background: var(--panel);
  container-type: inline-size;
  overflow: hidden;
}

.metric-grid span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(20px, 14cqi, 56px);
  line-height: .92;
}

.metric-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 44px;
}

.seo-copy {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(121, 171, 255, .42);
  border-radius: 8px;
  background: rgba(3, 25, 41, .62);
}

.seo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.faq-section {
  padding-top: 44px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(121, 171, 255, .42);
  border-radius: 8px;
  background: rgba(3, 25, 41, .72);
}

.faq-grid h3 {
  color: #fff;
  font-size: 20px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 285px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(10) {
  grid-column: span 2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
}

.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #020814;
  font-weight: 900;
}

.steps p {
  color: var(--muted);
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1240px;
  margin: 28px auto 96px;
  padding: 42px;
  border: 1px solid rgba(25,215,255,.42);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(25,215,255,.18), rgba(18,108,255,.06) 46%),
    var(--panel);
}

.bottom-cta h2 {
  margin-bottom: 12px;
}

.bottom-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "form"
      "copy"
      "visual";
    min-height: 0;
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .hero-visual {
    grid-auto-rows: 190px;
  }

  .trust-strip,
  .metric-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin: 0 24px;
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(10) {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .topbar {
    padding: 12px 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    padding: 36px 16px 58px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .lead {
    font-size: 22px;
  }

  .hero-stats article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    min-height: 92px;
    padding: 14px;
  }

  .stat-icon {
    width: 52px;
    height: 52px;
    border-width: 2px;
    font-size: 21px;
  }

  .hero-stats strong {
    font-size: 38px;
  }

  .proof-row {
    display: grid;
  }

  .proof-row span {
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(121, 171, 255, .32);
  }

  .proof-row span:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .hero-visual-main,
  .hero-visual-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .lead-card {
    padding: 20px;
  }

  .form-grid,
  .trust-strip,
  .metric-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(10) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bottom-cta {
    display: grid;
    margin: 0 16px 68px;
    padding: 28px 20px;
  }

  footer {
    display: grid;
    padding: 24px 16px;
  }

  .sticky-mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #020814;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
  }
}
