:root {
  color-scheme: dark;
  --bg: #040506;
  --surface-strong: rgba(10, 14, 19, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f7fbff;
  --muted: rgba(247, 251, 255, 0.72);
  --muted-soft: rgba(247, 251, 255, 0.56);
  --accent: #7ec5ff;
  --accent-2: #74efc6;
  --accent-3: #ffc76d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.38);
  --radius-lg: 34px;
  --radius-md: 26px;
  --radius-sm: 18px;
  --gradient-strong: linear-gradient(120deg, #9ad8ff 0%, #85eed6 48%, #ffd69b 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  padding: 24px 0 80px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(126, 197, 255, 0.11), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(116, 239, 198, 0.08), transparent 30%),
    radial-gradient(circle at 48% 100%, rgba(255, 199, 109, 0.06), transparent 28%),
    var(--bg);
}

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

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.55rem, 4vw + 1.35rem, 5rem);
  line-height: 0.98;
}

h1 span {
  display: block;
  margin-top: 10px;
  background: var(--gradient-strong);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 9s ease infinite;
  font-size: 0.86em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.95rem, 2vw + 1.15rem, 3.25rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

ul {
  list-style: none;
}

.bg-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.16;
  animation: orb-float 20s ease-in-out infinite;
}

.orb-blue {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: rgba(126, 197, 255, 0.26);
}

.orb-teal {
  width: 360px;
  height: 360px;
  top: 140px;
  right: -140px;
  background: rgba(116, 239, 198, 0.2);
  animation-delay: 3s;
}

.orb-gold {
  width: 300px;
  height: 300px;
  bottom: -140px;
  left: 38%;
  background: rgba(255, 199, 109, 0.16);
  animation-delay: 6s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.08;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  max-width: 1180px;
  margin: 0 auto 42px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(6, 8, 10, 0.82);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.logo-title {
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.logo-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-soft);
  transition: color 0.25s ease;
}

.header-link:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn.primary {
  color: #061019;
  background: linear-gradient(120deg, #f7fbff 0%, #d8faf1 100%);
  box-shadow: 0 18px 46px rgba(126, 197, 255, 0.24);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(126, 197, 255, 0.32);
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.82rem;
}

.glass {
  background: linear-gradient(150deg, rgba(10, 14, 19, 0.95), rgba(10, 14, 19, 0.74));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  padding: 16px 0 0;
  margin-bottom: 28px;
}

.hero-shell {
  padding: 42px 42px 36px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
}

.pill,
.eyebrow,
.case-type,
.proof-disclaimer {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pill {
  width: fit-content;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-support {
  max-width: 700px;
  color: rgba(247, 251, 255, 0.9);
  font-size: clamp(1rem, 0.9vw + 0.82rem, 1.25rem);
  line-height: 1.45;
}

.subhead {
  max-width: 720px;
  font-size: 0.98rem;
}

.hero-facts,
.hero-actions,
.cta-actions,
.cta-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  gap: 12px 22px;
}

.fact {
  position: relative;
  padding-left: 14px;
  color: var(--muted-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.fact::before,
.case-points li::before,
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.fact::before {
  top: 0.48rem;
}

.microcopy,
.proof-disclaimer,
.section-note,
.policy-meta {
  font-size: 0.9rem;
  color: var(--muted-soft);
}

.section {
  position: relative;
  isolation: isolate;
  margin-bottom: 82px;
}

.section-header {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 26px;
}

.section-header.narrow {
  max-width: 720px;
}

.eyebrow {
  color: rgba(247, 251, 255, 0.56);
  font-size: 0.72rem;
}

.section.band,
.section.spotlight,
.cta-content {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.section.band,
.section.spotlight {
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.section.band {
  background: rgba(255, 255, 255, 0.016);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.section.band::after {
  content: "";
  position: absolute;
  inset: -35% 15% auto -22%;
  height: 80%;
  z-index: -1;
  opacity: 0.22;
  background: radial-gradient(circle, rgba(126, 197, 255, 0.1), transparent 70%);
}

.section.spotlight {
  background: rgba(255, 255, 255, 0.012);
}

.section.spotlight::before {
  content: "";
  position: absolute;
  inset: -24% auto auto -10%;
  width: 60%;
  height: 70%;
  z-index: -1;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(116, 239, 198, 0.08), transparent 72%);
}

.case-section .section-header {
  margin-bottom: 30px;
}

.case-study-list,
.signal-grid,
.objection-grid,
.mini-process,
.faq-list {
  display: grid;
  gap: 18px;
}

.case-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(220px, 0.56fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(9, 13, 18, 0.9);
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.case-icon-wrap {
  display: flex;
  justify-content: center;
}

.case-icon,
.signal-icon,
.card-icon,
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.case-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(126, 197, 255, 0.2), rgba(116, 239, 198, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 1.55rem;
}

.case-type {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  color: rgba(247, 251, 255, 0.56);
}

.case-copy h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.case-copy p {
  max-width: 640px;
}

.case-points {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.case-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 251, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.5;
}

.case-points li::before {
  top: 0.52rem;
}

.case-metric {
  justify-self: end;
  text-align: right;
  display: grid;
  gap: 8px;
  max-width: 220px;
}

.case-metric strong {
  font-size: clamp(2.15rem, 3vw, 3.55rem);
  line-height: 0.92;
  color: var(--text);
}

.metric-blue .case-metric strong {
  color: #8fd5ff;
}

.metric-teal .case-metric strong {
  color: #84efcf;
}

.metric-gold .case-metric strong {
  color: #ffd089;
}

.case-metric span {
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
}

.proof-disclaimer {
  margin-top: 14px;
}

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

.signal-card,
.card,
.mini-step,
.faq-item {
  padding: 22px;
  display: grid;
  gap: 10px;
  border-radius: var(--radius-md);
  background: rgba(9, 13, 18, 0.92);
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.signal-icon,
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 251, 255, 0.88);
  font-size: 1rem;
}

.signal-card h3,
.card h3,
.mini-step h3,
.faq-item h3 {
  color: var(--text);
  margin-bottom: 2px;
}

.statement {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.statement p {
  color: rgba(247, 251, 255, 0.88);
}

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

.card {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.52);
}

.tailored-banner {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  color: rgba(247, 251, 255, 0.9);
  font-weight: 600;
}

.section-note {
  margin-top: 14px;
}

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

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

.step-badge {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #0a1016;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(247, 251, 255, 0.84);
}

.cta-content {
  display: grid;
  gap: 22px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface-strong), var(--surface-strong)) padding-box,
    linear-gradient(120deg, rgba(126, 197, 255, 0.6), rgba(116, 239, 198, 0.45), rgba(255, 199, 109, 0.58))
      border-box;
  box-shadow: var(--shadow);
}

.cta-proof span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-size: 0.84rem;
}

.footer {
  max-width: 1180px;
  margin: 66px auto 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 10px;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links a,
.inline-link {
  text-decoration: underline;
  text-decoration-color: rgba(247, 251, 255, 0.34);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.inline-link:hover {
  text-decoration-color: rgba(126, 197, 255, 0.7);
}

.card.muted,
.policy-card {
  background: rgba(9, 13, 18, 0.92);
}

.list {
  display: grid;
  gap: 12px;
  font-size: 0.98rem;
}

.list li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 251, 255, 0.82);
  line-height: 1.65;
}

.list li::before {
  top: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes orb-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -16px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 980px) {
  .signal-grid,
  .objection-grid,
  .mini-process,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .case-row {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .case-metric {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 16px;
  }

  main {
    padding: 0 18px 72px;
  }

  .site-header {
    margin: 0 18px 34px;
    padding: 14px;
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .section.band,
  .section.spotlight,
  .cta-content,
  .hero-shell {
    padding: 24px;
  }

  .footer {
    margin: 56px 18px 0;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  p,
  .subhead {
    font-size: 0.98rem;
  }

  .site-header {
    top: 10px;
  }

  .logo-sub {
    letter-spacing: 0.14em;
    font-size: 0.67rem;
  }

  .header-actions {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .btn,
  .btn.small {
    width: 100%;
    padding: 14px 18px;
  }

  .hero-shell {
    padding: 28px 18px 24px;
  }

  .section,
  .hero,
  .cta {
    margin-bottom: 70px;
  }

  .fact,
  .cta-proof span {
    width: 100%;
  }

  .signal-card,
  .card,
  .mini-step,
  .case-row {
    padding: 18px;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-icon-wrap {
    justify-content: flex-start;
  }

  .case-metric {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
