:root {
  --ink: #f7fbf9;
  --muted: #aab8b2;
  --soft: #dce7e2;
  --deep: #07100f;
  --panel: rgba(11, 24, 22, 0.78);
  --panel-strong: rgba(14, 32, 29, 0.92);
  --line: rgba(220, 231, 226, 0.16);
  --teal: #27e0c3;
  --mint: #92ffd8;
  --gold: #ffd84d;
  --bolt: #ffef74;
  --coral: #ff7a6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 216, 77, 0.12), transparent 24rem),
    radial-gradient(circle at 78% 8%, rgba(39, 224, 195, 0.1), transparent 28rem),
    linear-gradient(180deg, #07100f 0%, #0a1514 38%, #0d1210 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 15, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 216, 77, 0.46);
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.24), rgba(39, 224, 195, 0.13));
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255, 216, 77, 0.18);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  fill: var(--bolt);
  filter: drop-shadow(0 0 8px rgba(255, 216, 77, 0.45));
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(247, 251, 249, 0.75);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a,
.header-action {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.header-action {
  border: 1px solid rgba(146, 255, 216, 0.34);
  border-radius: 8px;
  padding: 11px 16px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-action:hover {
  background: rgba(39, 224, 195, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(18px, 6vw, 76px) 56px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 15, 0.96) 0%, rgba(7, 16, 15, 0.78) 38%, rgba(7, 16, 15, 0.3) 70%),
    linear-gradient(180deg, rgba(7, 16, 15, 0.15) 0%, #07100f 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.title-bolt {
  display: grid;
  place-items: center;
  width: clamp(58px, 8vw, 96px);
  height: clamp(58px, 8vw, 96px);
  border: 1px solid rgba(255, 216, 77, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 239, 116, 0.26), transparent 64%),
    rgba(7, 16, 15, 0.48);
  box-shadow:
    0 0 48px rgba(255, 216, 77, 0.24),
    inset 0 0 22px rgba(255, 216, 77, 0.08);
}

.title-bolt svg {
  width: 58%;
  height: 58%;
  fill: var(--bolt);
  filter: drop-shadow(0 0 14px rgba(255, 216, 77, 0.68));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 7.2rem;
  line-height: 0.92;
  font-weight: 800;
  white-space: nowrap;
  overflow-wrap: normal;
}

.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(247, 251, 249, 0.88);
  font-size: 1.35rem;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 800;
  line-height: 1;
}

.button.primary {
  color: #07100f;
  background: linear-gradient(135deg, var(--bolt), var(--mint));
  box-shadow: 0 16px 34px rgba(255, 216, 77, 0.22);
}

.button.secondary {
  border: 1px solid rgba(247, 251, 249, 0.25);
  background: rgba(247, 251, 249, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 48px 0 0;
}

.hero-proof div {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 16, 15, 0.58);
  backdrop-filter: blur(18px);
}

.hero-proof dt {
  color: var(--mint);
  font-family: Manrope, Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 216, 77, 0.05), rgba(39, 224, 195, 0.05)),
    rgba(220, 231, 226, 0.035);
}

.intro-strip p {
  margin: 0;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
  text-align: center;
}

.intro-strip p::before {
  content: "";
  width: 12px;
  height: 18px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--bolt), var(--mint));
  clip-path: polygon(58% 0, 0 58%, 42% 58%, 28% 100%, 100% 42%, 58% 42%);
  filter: drop-shadow(0 0 8px rgba(255, 216, 77, 0.45));
}

.intro-strip p:last-child {
  border-right: 0;
}

.section {
  padding: clamp(78px, 10vw, 130px) clamp(18px, 6vw, 76px);
}

.section-copy,
.section-heading {
  max-width: 860px;
}

.section-copy h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: 4.15rem;
  line-height: 1.02;
}

.section-copy p:not(.eyebrow),
.pricing-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.pain-grid,
.trust-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.pain-grid article,
.trust-grid article,
.price-card,
.feature-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 251, 249, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.pain-grid article {
  min-height: 260px;
  padding: 24px;
}

.pain-grid span {
  color: var(--bolt);
  font-weight: 800;
}

.pain-grid h3,
.trust-grid h3,
.feature-list h3,
.price-card h3 {
  margin: 26px 0 0;
  font-size: 1.15rem;
}

.pain-grid p,
.trust-grid p,
.feature-list p,
.price-card li,
.outcome-row span {
  color: var(--muted);
  line-height: 1.58;
}

.platform-section {
  background:
    linear-gradient(180deg, rgba(39, 224, 195, 0.07), transparent 42%),
    rgba(247, 251, 249, 0.025);
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  margin-top: 54px;
}

.product-panel {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(146, 255, 216, 0.24);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(39, 224, 195, 0.12), rgba(255, 122, 107, 0.06)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 22px var(--teal);
}

.lead-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  border-radius: 8px;
  padding: 22px;
  background: rgba(7, 16, 15, 0.72);
  border: 1px solid var(--line);
}

.mini-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.lead-card strong {
  color: var(--mint);
  font-size: 2.2rem;
}

.pipeline {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.pipeline div {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-height: 44px;
  overflow: hidden;
  border-radius: 8px;
  padding: 12px;
  background: rgba(247, 251, 249, 0.06);
  font-size: 0.9rem;
}

.pipeline div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(39, 224, 195, 0.28), transparent);
}

.pipeline span,
.pipeline b {
  position: relative;
  z-index: 1;
}

.match-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.match-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.match-list span {
  color: var(--muted);
}

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

.feature-list article {
  min-height: 238px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(39, 224, 195, 0.12);
  color: var(--mint);
  font-weight: 900;
}

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

.trust-grid article {
  min-height: 232px;
  padding: 24px;
}

.trust-grid h3 {
  margin-top: 0;
  color: var(--soft);
}

.outcomes-section {
  padding-top: 0;
}

.outcome-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.outcome-row div {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(7, 16, 15, 0.46);
}

.outcome-row div:last-child {
  border-right: 0;
}

.outcome-row strong {
  display: block;
  margin-bottom: 16px;
  color: var(--mint);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.3rem;
}

.pricing-section {
  background: rgba(247, 251, 249, 0.035);
}

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

.price-card {
  min-height: 420px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(146, 255, 216, 0.5);
  background:
    linear-gradient(145deg, rgba(39, 224, 195, 0.16), rgba(232, 196, 106, 0.08)),
    rgba(247, 251, 249, 0.055);
}

.plan-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 18px;
  font-size: 1.85rem;
}

.price {
  margin: 16px 0 0;
  color: var(--mint);
  font-family: Manrope, Inter, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--bolt);
}

.final-cta {
  padding: clamp(84px, 12vw, 150px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(39, 224, 195, 0.12), rgba(255, 122, 107, 0.08)),
    #081211;
  text-align: center;
}

.final-cta h2 {
  max-width: 960px;
  margin: 0 auto;
}

.final-cta .button {
  margin-top: 32px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: rgba(247, 251, 249, 0.035);
}

.contact-copy {
  max-width: 780px;
}

.contact-copy h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.08;
}

.contact-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding: 28px clamp(18px, 6vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer address {
  max-width: 380px;
  color: var(--soft);
  font-style: normal;
  line-height: 1.65;
  text-align: right;
}

.site-footer a {
  color: var(--mint);
}

.form-modal[hidden] {
  display: none;
}

.form-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.form-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 7, 0.78);
  backdrop-filter: blur(14px);
}

.form-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(146, 255, 216, 0.28);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(145deg, rgba(39, 224, 195, 0.12), rgba(232, 196, 106, 0.06)),
    #0b1816;
  box-shadow: var(--shadow);
}

.form-dialog h2 {
  margin: 0 32px 22px 0;
  font-size: 2rem;
  line-height: 1.08;
}

.form-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(247, 251, 249, 0.08);
  font-size: 1.5rem;
  cursor: pointer;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form label:nth-last-child(2),
.lead-form button {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(220, 231, 226, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(7, 16, 15, 0.74);
  font: inherit;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(146, 255, 216, 0.72);
  box-shadow: 0 0 0 3px rgba(39, 224, 195, 0.13);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 16, 15, 0.96) 0%, rgba(7, 16, 15, 0.76) 100%),
      linear-gradient(180deg, rgba(7, 16, 15, 0.1), #07100f 100%);
  }

  .intro-strip,
  .pain-grid,
  .trust-grid,
  .outcome-row,
  .pricing-grid,
  .platform-layout {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 5.2rem;
  }

  .hero-lede {
    font-size: 1.18rem;
  }

  .section-copy h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: 3.15rem;
  }

  .product-panel {
    position: static;
  }

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

@media (max-width: 680px) {
  .site-header {
    height: 68px;
  }

  .header-action {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-proof,
  .intro-strip,
  .pain-grid,
  .trust-grid,
  .outcome-row,
  .pricing-grid,
  .platform-layout,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .intro-strip p,
  .outcome-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip p:last-child,
  .outcome-row div:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 3.35rem;
  }

  .section-copy h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .hero-proof dt,
  .price {
    font-size: 1.8rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer address {
    text-align: left;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    font-size: 2rem;
  }
}
