:root {
  --bg: #090909;
  --panel: #121316;
  --panel-2: #181a20;
  --text: #ffffff;
  --muted: #a3a7b3;
  --line: rgba(255, 255, 255, 0.1);
  --green: #00ffb2;
  --green-2: #63ffd2;
  --green-dark: #047857;
  --radius: 24px;
  --shadow: 0 24px 90px rgba(0, 255, 178, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 12%, #000 0, transparent 58%);
  opacity: 0.55;
  z-index: -2;
}

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

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

button,
input {
  font: inherit;
}

.page-glow {
  position: fixed;
  top: -20vh;
  left: 50%;
  width: 70vw;
  height: 70vw;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 255, 178, 0.2), transparent 60%);
  filter: blur(18px);
  pointer-events: none;
  z-index: -3;
}

.floating-cta {
  border: 1px solid rgba(0, 255, 178, 0.36);
  border-radius: 999px;
  background: rgba(0, 255, 178, 0.13);
  color: #fff;
  box-shadow: inset 0 0 22px rgba(0, 255, 178, 0.16);
  font-size: 0.84rem;
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 0 34px rgba(0, 255, 178, 0.42);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

main > section:not(.hero) {
  text-align: center;
}

main > section:not(.hero) .section-kicker,
main > section:not(.hero) .eyebrow {
  margin-inline: auto;
}

main > section:not(.hero) h2,
main > section:not(.hero) .section-lead,
main > section:not(.hero) p {
  margin-inline: auto;
}

.hero {
  display: grid;
  min-height: auto;
  align-items: start;
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 70px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
  max-width: 100%;
}

.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 3.55vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(1.82rem, 3.8vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-subtitle,
.pain-copy > p,
.final-copy p,
.process-card p,
.benefit-grid p,
.faq p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(0.94rem, 1.3vw, 1.03rem);
}

.section-lead {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 16px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 18px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #00bd84 55%, var(--green-dark));
  color: #fff;
  box-shadow: 0 0 34px rgba(0, 255, 178, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  font-weight: 850;
  font-size: 0.9rem;
  line-height: 1.1;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.primary-btn:hover,
.floating-cta:hover,
.text-link:hover {
  filter: brightness(1.12);
}

.primary-btn:hover {
  box-shadow: 0 0 54px rgba(0, 255, 178, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.micro-proof {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.hero-visual {
  position: relative;
  width: min(860px, 100%);
  justify-self: center;
  border: 1px solid rgba(0, 255, 178, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.35), transparent 40%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
  filter: hue-rotate(-48deg) saturate(1.12);
}

.hero-metric {
  position: absolute;
  z-index: 2;
  width: 148px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 19, 22, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.hero-metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.76rem;
}

.metric-one {
  top: 18px;
  right: 18px;
}

.metric-two {
  left: 18px;
  bottom: 18px;
}

.split {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.pain-copy {
  max-width: 560px;
  margin-inline: auto;
}

.pain-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.pain-grid article,
.process-card,
.benefit-grid article,
.testimonial,
.video-slot,
.lead-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(24, 26, 32, 0.86), rgba(18, 19, 22, 0.86));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.pain-grid article {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.pain-grid span,
.process-card span {
  color: var(--green-2);
  font-weight: 850;
}

.process-grid,
.benefit-grid,
.proof-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.process-card,
.benefit-grid article {
  min-height: 210px;
  padding: 26px;
  text-align: center;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.process-card:hover,
.benefit-grid article:hover,
.testimonial:hover,
.video-slot:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 178, 0.34);
  background: linear-gradient(180deg, rgba(25, 30, 42, 0.94), rgba(18, 19, 22, 0.9));
}

.process-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid rgba(0, 255, 178, 0.3);
  border-radius: 14px;
  background: rgba(0, 255, 178, 0.1);
  box-shadow: inset 0 0 24px rgba(0, 255, 178, 0.14);
}

.benefit-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.text-link {
  color: var(--green-2);
  font-weight: 800;
}

.meeting-panel,
.final-cta {
  border: 1px solid rgba(0, 255, 178, 0.2);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(0, 255, 178, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(24, 26, 32, 0.9), rgba(12, 13, 16, 0.92));
  box-shadow: var(--shadow);
}

.meeting-panel {
  display: grid;
  justify-items: center;
  gap: 30px;
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
}

.meeting-list {
  display: grid;
  gap: 12px;
}

.meeting-list span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: #ddfff4;
  text-align: center;
}

.video-slot,
.testimonial {
  min-height: 220px;
  padding: 26px;
}

.video-slot {
  display: grid;
  place-items: center;
  text-align: center;
}

.video-slot span {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 34px rgba(0, 255, 178, 0.44);
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.testimonial p {
  font-size: 1rem;
}

.testimonial span,
.form-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.logo-row span {
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #7f8594;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq details {
  padding: 20px 22px;
  text-align: center;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
}

.final-cta {
  display: grid;
  gap: 34px;
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-bottom: 42px;
  padding: clamp(26px, 5vw, 56px);
  overflow: hidden;
}

.final-copy h2 {
  margin-bottom: 18px;
}

.lead-form {
  display: grid;
  gap: 16px;
  align-self: stretch;
  padding: clamp(20px, 3vw, 30px);
  border-color: rgba(0, 255, 178, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 0%, rgba(0, 255, 178, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(20, 20, 23, 0.96), rgba(12, 13, 16, 0.98));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
}

.form-head {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.form-head strong {
  font-size: 1rem;
}

.form-head span {
  color: var(--muted);
  font-size: 0.84rem;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #ddfff4;
  font-size: 0.82rem;
  font-weight: 750;
}

.lead-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 0 16px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.lead-form input:focus {
  border-color: rgba(0, 255, 178, 0.62);
  box-shadow: 0 0 0 4px rgba(0, 255, 178, 0.12);
}

.form-btn {
  width: 100%;
  margin-top: 6px;
  border-radius: 18px;
  white-space: normal;
}

.form-btn:disabled {
  cursor: wait;
  filter: grayscale(0.25) brightness(0.78);
  opacity: 0.72;
  transform: none !important;
}

.form-status {
  min-height: 20px;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-status="success"] {
  color: var(--green-2);
}

.form-status[data-status="error"] {
  color: #ff8b8b;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 42px;
  }

  .benefit-head {
    flex-direction: row;
    align-items: center;
  }

  .split,
  .meeting-panel {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .final-cta {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
    align-items: center;
  }

  .final-cta {
    align-items: center;
  }

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

  .form-head,
  .form-btn,
  .form-note {
    grid-column: 1 / -1;
  }

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

  .proof-grid {
    grid-template-columns: 1.15fr 0.9fr 0.9fr;
  }

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

@media (min-width: 1040px) {
  .section-shell {
    padding: 112px 0;
  }

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

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

@media (max-width: 520px) {
  body {
    padding-bottom: 82px;
  }

  body::before {
    background-size: 48px 48px;
    opacity: 0.42;
  }

  .page-glow {
    top: -12vh;
    width: 120vw;
    height: 120vw;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.84rem;
    text-align: center;
  }

  .section-shell {
    width: calc(100% - 24px);
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 68px;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .eyebrow::before,
  .section-kicker::before {
    flex: 0 0 auto;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(1.95rem, 9.2vw, 2.9rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.6rem, 7.5vw, 2.35rem);
    line-height: 1.04;
  }

  h3 {
    font-size: 0.94rem;
  }

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 0.9rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-btn {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    overflow-wrap: anywhere;
  }

  .micro-proof {
    max-width: 100%;
    font-size: 0.8rem;
  }

  .hero-visual {
    border-radius: 20px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    object-position: 58% center;
  }

  .hero-metric {
    width: 118px;
    padding: 10px;
    border-radius: 15px;
  }

  .hero-metric strong {
    font-size: 1.35rem;
  }

  .hero-metric span {
    font-size: 0.68rem;
  }

  .metric-one {
    top: 10px;
    right: 10px;
  }

  .metric-two {
    left: 10px;
    bottom: 10px;
  }

  .pain-grid article,
  .process-card,
  .benefit-grid article,
  .testimonial,
  .video-slot,
  .faq details {
    border-radius: 20px;
  }

  .process-card,
  .benefit-grid article {
    min-height: auto;
    padding: 22px;
  }

  .process-card span {
    margin-bottom: 18px;
  }

  .meeting-panel,
  .final-cta {
    border-radius: 24px;
    padding: 22px;
  }

  .meeting-list span {
    padding: 14px 15px;
    border-radius: 15px;
  }

  .proof-grid {
    gap: 12px;
  }

  .video-slot,
  .testimonial {
    min-height: auto;
    padding: 22px;
  }

  .logo-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .lead-form input {
    min-height: 52px;
    border-radius: 14px;
  }

  .form-btn {
    min-height: 62px;
    border-radius: 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .section-shell {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.48rem, 7.2vw, 1.95rem);
  }

  .hero-visual img {
    aspect-ratio: 1 / 1;
  }

  .meeting-panel,
  .final-cta {
    padding: 12px;
  }

  .lead-form {
    padding: 14px;
  }

  .hero-metric {
    width: 106px;
  }

  .hero-metric strong {
    font-size: 1.18rem;
  }

  .hero-metric span {
    font-size: 0.62rem;
  }

  .floating-cta {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
