:root {
  --bg: #05080d;
  --bg-soft: #0a1018;
  --panel: #0e1621;
  --panel-strong: #121e2c;
  --line: #223246;
  --line-bright: #31506d;
  --text: #f4f7fb;
  --muted: #a3afbf;
  --accent: #32d7ff;
  --accent-strong: #1598ff;
  --accent-soft: rgba(50, 215, 255, 0.1);
  --warning: #f8c96d;
  --warning-soft: rgba(248, 201, 109, 0.09);
  --success: #62e5b4;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 2%, rgba(21, 152, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(50, 215, 255, 0.07), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a:hover {
  color: var(--accent);
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #001018;
  background: var(--accent);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(49, 80, 109, 0.55);
  background: rgba(5, 8, 13, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: block;
  position: relative;
  width: clamp(170px, 18vw, 220px);
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #0b121a;
  border: 1px solid rgba(50, 215, 255, 0.24);
  border-radius: 11px;
  box-shadow: 0 0 28px rgba(50, 215, 255, 0.12);
}

.brand-logo {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 155%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links .nav-cta {
  padding: 0.62rem 0.9rem;
  color: #001018;
  background: var(--accent);
  border-radius: 10px;
}

.nav-links .nav-cta:hover {
  color: #001018;
  background: #73e5ff;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: 6.5rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.75rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(50, 215, 255, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--success);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.hero-logo-heading {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.hero-logo-frame,
.page-logo-frame,
.footer-logo-frame {
  display: block;
  position: relative;
  overflow: hidden;
  background: #0b121a;
  border: 1px solid rgba(50, 215, 255, 0.24);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32), 0 0 38px rgba(50, 215, 255, 0.08);
}

.hero-logo-frame {
  width: min(100%, 680px);
  aspect-ratio: 16 / 7;
}

.hero-logo-image,
.page-logo-image,
.footer-logo-image {
  position: absolute;
  top: 47%;
  left: 50%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: saturate(1.08) contrast(1.03);
}

.hero-logo-image {
  width: 108%;
}

.page-logo-frame {
  width: min(100%, 420px);
  aspect-ratio: 16 / 6;
  margin: 0 0 1.35rem;
  border-radius: 14px;
}

.page-logo-image {
  width: 128%;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #ffffff 12%, var(--accent) 72%, #a3b8ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 760px;
  margin: 0 0 2rem;
  color: #c7d0dc;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--line-bright);
  border-radius: 11px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.button-primary {
  color: #001018;
  background: linear-gradient(135deg, var(--accent), #78eaff);
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(50, 215, 255, 0.18);
}

.button-primary:hover {
  color: #001018;
}

.button-quiet {
  color: #c9d3df;
  background: rgba(255, 255, 255, 0.025);
}

.hero-panel,
.card,
.product-card,
.pricing-card,
.form-card,
.callout {
  background: linear-gradient(150deg, rgba(18, 30, 44, 0.96), rgba(10, 16, 24, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.35rem;
}

.system-window {
  overflow: hidden;
  background: #07101a;
  border: 1px solid #29415a;
  border-radius: 14px;
}

.window-bar {
  padding: 0.75rem 1rem;
  color: var(--muted);
  background: #0b1520;
  border-bottom: 1px solid #213449;
  font-size: 0.82rem;
}

.window-body {
  padding: 1.35rem;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(49, 80, 109, 0.55);
}

.metric:last-child {
  border-bottom: 0;
}

.metric strong {
  color: var(--text);
}

.status {
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading p,
.muted,
.card p,
.product-card p,
.pricing-card p {
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.pricing-card {
  padding: 1.45rem;
}

.card-number {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-list,
.plain-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.65rem;
  color: #c8d2de;
  border-bottom: 1px solid rgba(49, 80, 109, 0.35);
}

.feature-list li:last-child,
.check-list li:last-child {
  border-bottom: 0;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 0.2rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(50, 215, 255, 0.45);
}

.plain-list {
  display: grid;
  gap: 0.75rem;
  color: #c8d2de;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 3rem;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  background: rgba(50, 215, 255, 0.08);
  border-radius: 50%;
  filter: blur(8px);
}

.label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.55rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.product-grid {
  align-items: stretch;
}

.product-offer-card {
  min-height: 100%;
}

.pricing-card.featured {
  border-color: rgba(50, 215, 255, 0.58);
  box-shadow: 0 24px 70px rgba(21, 152, 255, 0.16);
}

.price {
  margin: 0.5rem 0 1.2rem;
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.pricing-card .button {
  margin-top: auto;
}

.product-disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  color: #d7c293;
  border-top: 1px solid rgba(248, 201, 109, 0.24);
  font-size: 0.82rem;
}

.callout {
  padding: 1.25rem 1.35rem;
  color: #dce5ef;
  border-left: 4px solid var(--accent);
}

.callout-warning {
  background: linear-gradient(150deg, rgba(63, 49, 22, 0.55), rgba(14, 17, 21, 0.96));
  border-color: rgba(248, 201, 109, 0.35);
  border-left-color: var(--warning);
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.page-hero {
  padding: 6rem 0 3.5rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb span {
  color: var(--accent);
}

.cta-band {
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(115deg, rgba(21, 152, 255, 0.16), rgba(50, 215, 255, 0.05)),
    var(--panel);
  border: 1px solid rgba(50, 215, 255, 0.3);
  border-radius: var(--radius);
}

.cta-band h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.form-card {
  max-width: 760px;
  padding: clamp(1.25rem, 4vw, 2.2rem);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #d9e2ec;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: var(--text);
  background: #07101a;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(50, 215, 255, 0.3);
  border-color: var(--accent);
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-actions {
  margin-top: 1.2rem;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #c8d2de;
  line-height: 1.45;
}

.checkbox-line input {
  width: auto;
  min-width: 18px;
  height: 18px;
  margin-top: 0.17rem;
  accent-color: var(--accent);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 2.7rem;
  font-size: 1.7rem;
}

.legal-copy p,
.legal-copy li {
  color: #bec9d6;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  color: var(--muted);
  background: rgba(3, 6, 10, 0.72);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(130px, 0.5fr));
  gap: 2rem;
}

.footer-title {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 800;
}

.footer-brand-block {
  min-width: 0;
}

.footer-logo-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.8rem;
}

.footer-logo-frame {
  width: min(100%, 280px);
  aspect-ratio: 16 / 6;
  border-radius: 12px;
}

.footer-logo-image {
  width: 128%;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.fine-print {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(49, 80, 109, 0.4);
  font-size: 0.8rem;
}

.free-checklist-page {
  background:
    radial-gradient(circle at 82% 4%, rgba(21, 152, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 14% 36%, rgba(50, 215, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, #05070b 0%, #07101a 48%, #05070b 100%);
}

.free-checklist-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(49, 80, 109, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 80, 109, 0.28) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 14%, black, transparent 72%);
}

.free-checklist-hero {
  min-height: min(820px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  padding: 6.25rem 0 3.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 50, 70, 0.72);
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.79) 48%, rgba(5, 7, 11, 0.52) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.1) 46%, rgba(5, 7, 11, 0.82) 100%),
    url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1800&q=75") center / cover;
}

.free-checklist-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

.free-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
}

.free-logo-frame {
  width: min(100%, 380px);
  margin-bottom: 1.1rem;
}

.free-checklist-hero h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 7.4vw, 5.9rem);
}

.free-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.free-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  color: #dce6f1;
  background: rgba(7, 16, 26, 0.68);
  border: 1px solid rgba(50, 215, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  font-weight: 750;
}

.free-snapshot-section {
  padding-top: 2.2rem;
}

.free-snapshot-grid,
.free-capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.checklist-preview-panel,
.dashboard-preview-panel {
  padding: 1.45rem;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(18, 30, 44, 0.96), rgba(10, 16, 24, 0.96));
  border: 1px solid rgba(50, 215, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist-preview-panel {
  position: relative;
}

.checklist-preview-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  pointer-events: none;
  border: 1px solid rgba(248, 201, 109, 0.18);
  border-radius: calc(var(--radius) - 6px);
}

.checklist-preview-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.checklist-preview-top strong {
  color: var(--warning);
  font-size: 1.04rem;
}

.free-capture-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  align-items: start;
  gap: 3rem;
}

.free-capture-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(14, 22, 33, 0.68);
  border: 1px solid rgba(49, 80, 109, 0.7);
  border-radius: 14px;
}

.mini-stat span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #001018;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-stat strong {
  color: var(--text);
}

.free-capture-form {
  position: sticky;
  top: 98px;
}

.free-capture-form h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
}

.free-form-secondary {
  width: 100%;
  margin-top: 0.9rem;
}

.free-ladder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.free-ladder-card {
  min-height: 220px;
  border-color: rgba(50, 215, 255, 0.24);
}

.free-ladder-card.featured {
  border-color: rgba(248, 201, 109, 0.45);
  box-shadow: 0 24px 70px rgba(248, 201, 109, 0.09);
}

.free-final-cta {
  background:
    linear-gradient(115deg, rgba(248, 201, 109, 0.15), rgba(50, 215, 255, 0.07)),
    var(--panel);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .free-snapshot-grid,
  .free-capture-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .free-ladder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 4.5rem;
  }

  .free-capture-form {
    position: static;
  }

  .nav {
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .nav {
    display: grid;
  }

  .brand {
    width: min(220px, 72vw);
  }

  .nav-links {
    justify-content: flex-start;
    gap: 0.7rem 1rem;
  }

  .nav-links .nav-cta {
    padding: 0;
    color: var(--accent);
    background: transparent;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .free-ladder-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
  }

  .free-checklist-hero {
    min-height: auto;
    padding: 4.5rem 0 2.5rem;
  }

  .hero-logo-frame {
    aspect-ratio: 16 / 8;
  }

  .free-checklist-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
