:root {
  --black: #05070a;
  --graphite: #111827;
  --blue: #2563ff;
  --violet: #7c3aed;
  --green: #00f5a0;
  --white: #f4f7fa;
  --steel: #9ca3af;
  --champagne: #c8a96a;
  --line: rgba(244, 247, 250, 0.12);
  --panel: rgba(17, 24, 39, 0.72);
  --panel-strong: rgba(17, 24, 39, 0.92);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(124, 58, 237, 0.18), transparent 34rem),
    var(--black);
  font-family: Inter, Manrope, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(244, 247, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 250, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--green);
  border-radius: 999px;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 28px), 1180px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px);
}

.brand,
.nav-cta,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.72rem;
  padding-inline: 0.35rem 0.8rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 245, 160, 0.45);
  border-radius: 10px;
  color: var(--green);
  background: linear-gradient(145deg, rgba(37, 99, 255, 0.22), rgba(124, 58, 237, 0.14));
  box-shadow: 0 0 24px rgba(0, 245, 160, 0.16);
}

.main-nav {
  justify-content: center;
  gap: clamp(0.45rem, 2vw, 1.4rem);
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 180ms ease;
}

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

.nav-cta {
  justify-content: center;
  min-height: 38px;
  padding-inline: 1rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 99, 255, 0.28);
}

.hero {
  position: relative;
  min-height: 98svh;
  display: grid;
  place-items: center;
  padding: 8.2rem 1rem 4rem;
  isolation: isolate;
  overflow: hidden;
}

.vanta-layer,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.vanta-layer {
  background:
    radial-gradient(circle at 50% 56%, rgba(37, 99, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 62% 42%, rgba(124, 58, 237, 0.15), transparent 22rem),
    var(--black);
}

.vanta-layer::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.32;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(37, 99, 255, 0.22) 43%, transparent 44% 100%),
    linear-gradient(245deg, transparent 0 48%, rgba(124, 58, 237, 0.2) 49%, transparent 50% 100%),
    radial-gradient(circle at 30% 40%, rgba(0, 245, 160, 0.12), transparent 9rem);
  background-size: 320px 320px, 420px 420px, 100% 100%;
  animation: topologyFallback 18s linear infinite;
}

.vanta-layer[data-vanta-ready="true"]::before {
  opacity: 0;
}

@keyframes topologyFallback {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-120px, 80px, 0);
  }
}

html,
body,
body.edixus-exact-landing {
  background-color: #05070a !important;
}

body.edixus-exact-landing {
  margin: 0 !important;
  overflow-x: hidden;
}

body.edixus-exact-landing .hero {
  margin-top: 0 !important;
}

body.edixus-exact-landing .site-header {
  top: 16px;
}

body.edixus-exact-landing .brand {
  min-width: 154px;
  padding-inline: 0.58rem 0.9rem;
}

body.edixus-exact-landing .brand-logo {
  width: clamp(124px, 10vw, 154px);
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

@media (max-width: 720px) {
  body.edixus-exact-landing .site-header {
    top: 10px;
  }

  body.edixus-exact-landing .brand {
    min-width: auto;
  }

  body.edixus-exact-landing .brand-logo {
    width: 126px;
    max-height: 28px;
  }
}

.hero-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 65%, rgba(37, 99, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 54%, rgba(124, 58, 237, 0.22), transparent 20rem),
    linear-gradient(to bottom, rgba(5, 7, 10, 0.7), rgba(5, 7, 10, 0.88) 70%, var(--black));
}

.hero-grid {
  z-index: -2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(37, 99, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.14) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 68%);
}

.hero-content {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  max-width: calc(100vw - 2rem);
  padding: 0.72rem 1rem;
  border: 1px solid rgba(0, 245, 160, 0.28);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.66);
  box-shadow: 0 0 38px rgba(0, 245, 160, 0.1);
  backdrop-filter: blur(16px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  color: var(--white);
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  font-weight: 700;
}

h1 span,
.final-panel h2 span {
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet) 70%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 780px;
  margin-top: 1.5rem;
  color: var(--steel);
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.hero-proof {
  margin-top: 0.95rem;
  color: var(--white);
}

.hero-proof strong {
  color: var(--green);
  font-weight: 700;
}

.hero-action {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.98rem 1.55rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 42px rgba(37, 99, 255, 0.34);
}

.button-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 62px rgba(37, 99, 255, 0.45), 0 0 45px rgba(124, 58, 237, 0.28);
}

.microcopy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  margin: 0;
  color: var(--steel);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.microcopy span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 1rem;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 20% 10%, rgba(37, 99, 255, 0.08), transparent 26rem);
}

.section-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 0.8rem;
}

.section h2 {
  max-width: 940px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
}

.section-heading p,
.founder-copy p,
.final-panel p,
.pricing-subtitle,
.pass-copy p {
  color: var(--steel);
  font-size: clamp(1rem, 1.8vw, 1.13rem);
}

.pain-grid,
.pillar-grid,
.difference-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pain-card,
.pillar-card,
.difference-grid article,
.trust-grid article,
.asset-board article,
.fit-panel,
.state-panel,
.pricing-card,
.membership-pass,
.final-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 247, 250, 0.055), transparent),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.pain-card,
.pillar-card,
.difference-grid article,
.trust-grid article {
  min-height: 164px;
  padding: 1.25rem;
  border-radius: 18px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pain-card:hover,
.pillar-card:hover,
.difference-grid article:hover,
.asset-board article:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 255, 0.38);
  box-shadow: 0 26px 82px rgba(37, 99, 255, 0.16);
}

.pain-card svg,
.pillar-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 1.2rem;
  color: var(--blue);
}

.pain-card:nth-child(3n + 2) svg,
.pillar-card:nth-child(3n + 2) svg {
  color: var(--violet);
}

.pain-card:nth-child(3n) svg,
.pillar-card:nth-child(3n) svg {
  color: var(--green);
}

.pain-card p,
.pillar-card p,
.difference-grid p,
.trust-grid article,
.asset-board p,
.timeline p {
  margin: 0;
  color: var(--steel);
}

.pain-card p {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
}

.state-panel {
  min-height: 360px;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.state-panel span,
.difference-grid span,
.asset-board span,
.timeline span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--champagne);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-panel.after {
  border-color: rgba(0, 245, 160, 0.24);
  box-shadow: 0 28px 80px rgba(0, 245, 160, 0.08);
}

.state-panel ul,
.fit-panel ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.state-panel li,
.fit-panel li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--steel);
}

.state-panel li::before,
.fit-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(37, 99, 255, 0.65);
}

.state-panel.after li::before,
.fit-panel.yes li::before {
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 245, 160, 0.7);
}

.fit-panel.no li::before {
  background: var(--steel);
  box-shadow: none;
}

.flow-arrow {
  display: grid;
  place-items: center;
  width: 56px;
  color: var(--green);
}

.flow-arrow svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 18px rgba(0, 245, 160, 0.55));
}

.pillar-card h3,
.asset-board h3,
.timeline h3,
.fit-panel h3 {
  margin-bottom: 0.62rem;
  color: var(--white);
  font-size: 1.18rem;
}

.asset-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 255, 0.1), rgba(124, 58, 237, 0.08)),
    rgba(17, 24, 39, 0.34);
}

.asset-board article {
  position: relative;
  min-height: 190px;
  padding: 1.25rem;
  border-radius: 16px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.asset-board article::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 66px;
  height: 42px;
  border: 1px solid rgba(37, 99, 255, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(0, 245, 160, 0.32) 0 28%, transparent 28% 100%),
    linear-gradient(rgba(244, 247, 250, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 11px;
  opacity: 0.6;
}

.membership-pass,
.pricing-card,
.final-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel-strong), var(--panel-strong)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 255, 0.72), rgba(124, 58, 237, 0.72), rgba(0, 245, 160, 0.24)) border-box;
  box-shadow: var(--shadow), 0 0 90px rgba(37, 99, 255, 0.12);
}

.membership-pass::before,
.pricing-card::before,
.final-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 32%;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.membership-pass {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 32px;
}

.pass-copy h2 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

.pass-list,
.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.pass-list p,
.pricing-benefits p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  margin: 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(244, 247, 250, 0.1);
  border-radius: 14px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.32);
}

.pass-list svg,
.pricing-benefits svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--green);
}

.fit-grid,
.founder-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.fit-panel {
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
}

.fit-panel.yes {
  border-color: rgba(0, 245, 160, 0.22);
}

.fit-panel.no {
  opacity: 0.86;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--green));
  opacity: 0.55;
}

.timeline li {
  position: relative;
  padding: 5.4rem 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.58);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 28px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(0, 245, 160, 0.72);
}

.difference-grid article {
  min-height: 205px;
}

.difference-grid strong {
  display: block;
  margin-top: 0.9rem;
  color: var(--white);
  font-size: 1.05rem;
}

.founder {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(5, 7, 10, 0.82));
}

.founder-grid {
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.founder-portrait {
  position: relative;
  min-height: 570px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 24%, rgba(200, 169, 106, 0.12), transparent 14rem),
    radial-gradient(circle at 40% 58%, rgba(37, 99, 255, 0.28), transparent 22rem),
    linear-gradient(145deg, rgba(17, 24, 39, 0.92), rgba(5, 7, 10, 0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 247, 250, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(transparent 92%, rgba(0, 245, 160, 0.18) 92%),
    linear-gradient(90deg, transparent 92%, rgba(37, 99, 255, 0.18) 92%);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 76%);
}

.portrait-frame {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  z-index: 1;
  border-radius: 26px;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  filter: saturate(1.04) contrast(1.03);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 16%, transparent 32%, rgba(5, 7, 10, 0.08) 68%),
    linear-gradient(180deg, transparent 56%, rgba(5, 7, 10, 0.72));
}

.portrait-frame svg {
  width: 160px;
  height: 160px;
  color: rgba(244, 247, 250, 0.16);
}

.portrait-frame span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.founder-copy blockquote {
  margin: 2rem 0 1rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--green);
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.signature {
  color: var(--champagne) !important;
  font-family: "JetBrains Mono", monospace;
}

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

.trust-grid article {
  min-height: 150px;
  color: var(--white);
}

.pricing-card {
  width: min(100%, 740px);
  margin-inline: auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 32px;
  text-align: center;
}

.pricing-card h2 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

.price {
  margin: 1.4rem 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: var(--steel);
  font-family: Inter, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.founder-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: -0.45rem auto 1.3rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(0, 245, 160, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 245, 160, 0.08);
  font-weight: 800;
}

.founder-lock svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.price-roadmap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.6rem;
  text-align: left;
}

.price-roadmap article {
  padding: 1rem;
  border: 1px solid rgba(244, 247, 250, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.05), transparent),
    rgba(5, 7, 10, 0.32);
}

.price-roadmap span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--champagne);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-roadmap strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.price-roadmap p {
  margin: 0.45rem 0 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.pricing-benefits {
  margin: 1.6rem 0 2rem;
  text-align: left;
}

.pricing .button {
  width: min(100%, 420px);
}

.faq-grid {
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.6);
  overflow: hidden;
}

summary {
  position: relative;
  cursor: pointer;
  padding: 1.12rem 3.4rem 1.12rem 1.2rem;
  color: var(--white);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(0, 245, 160, 0.1);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--steel);
}

.final-cta {
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.final-panel {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.8rem);
  border-radius: 36px;
  text-align: center;
}

.final-panel h2 {
  margin-inline: auto;
  font-size: clamp(2.2rem, 6vw, 5rem);
}

.final-panel p {
  max-width: 760px;
  margin: 1.3rem auto 1.8rem;
}

.final-panel .microcopy {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto 0;
  color: var(--steel);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 4.2rem) 1rem 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--steel);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-brand span {
  color: var(--green);
}

.footer-orbit {
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 245, 160, 0.8);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.2rem);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--steel);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social .social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.social-icon-youtube {
  fill: #ff2525;
}

.social-icon-youtube .social-icon-cutout {
  fill: #05070a;
}

.social-icon-instagram {
  fill: none;
  stroke: #ff2d7a;
  stroke-width: 2;
}

.social-icon-instagram .social-icon-dot {
  fill: #ff2d7a;
  stroke: none;
}

.site-footer > p {
  width: min(100%, 720px);
  margin: 0;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(244, 247, 250, 0.08);
  color: var(--steel);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.reveal-delay-4 {
  transition-delay: 360ms;
}

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

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

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

  .main-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .two-column,
  .membership-pass,
  .fit-grid,
  .founder-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .pillar-grid,
  .asset-board,
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 27px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .timeline li {
    padding: 1.1rem 1rem 1.1rem 4.25rem;
  }

  .timeline li::before {
    left: 18px;
    top: 1.35rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 18px), 1180px);
    padding: 0.55rem;
  }

  .brand {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    min-height: 34px;
    padding-inline: 0.78rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .eyebrow {
    justify-content: center;
    width: 100%;
    border-radius: 18px;
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .hero-copy {
    margin-top: 1.1rem;
  }

  .button {
    width: 100%;
    max-width: 360px;
  }

  .microcopy {
    align-items: flex-start;
    max-width: 330px;
    line-height: 1.5;
  }

  .pain-grid,
  .pillar-grid,
  .asset-board,
  .difference-grid,
  .trust-grid,
  .pass-list,
  .price-roadmap,
  .pricing-benefits {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    width: 100%;
    height: 42px;
    transform: rotate(90deg);
  }

  .state-panel {
    min-height: auto;
  }

  .founder-portrait {
    min-height: 420px;
  }

  .site-footer {
    gap: 1.1rem;
  }
}

/* UI direction refresh */
:root {
  --black: #05070a;
  --graphite: #0d121a;
  --blue: #2f6bff;
  --violet: #8b5cf6;
  --green: #00f5a0;
  --white: #f7fafc;
  --steel: #aeb7c4;
  --champagne: #d6b16d;
  --ember: #ff4d6d;
  --line: rgba(247, 250, 252, 0.13);
  --panel: rgba(13, 18, 26, 0.76);
  --panel-strong: rgba(8, 11, 16, 0.94);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

body {
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 177, 109, 0.1), transparent 22rem),
    radial-gradient(circle at 12% 8%, rgba(47, 107, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #05070a 0%, #080b10 42%, #05070a 100%);
}

body::before {
  opacity: 0.14;
  background-size: 64px 64px;
}

.site-header {
  top: 16px;
  padding: 0.62rem;
  border-color: rgba(247, 250, 252, 0.1);
  background: rgba(5, 7, 10, 0.82);
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.92);
  border-color: rgba(0, 245, 160, 0.2);
}

.brand {
  letter-spacing: 0.05em;
}

.brand-mark {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 245, 160, 0.12), transparent),
    #0f1722;
}

.nav-cta,
.button-primary {
  color: #03100b;
  background: linear-gradient(135deg, var(--green), #7fffd4);
  box-shadow: 0 16px 42px rgba(0, 245, 160, 0.22);
}

.nav-cta:hover,
.button-primary:hover {
  box-shadow: 0 20px 60px rgba(0, 245, 160, 0.32);
}

.hero {
  min-height: 92svh;
  place-items: end center;
  padding: 5.5rem 1rem 3.4rem;
}

.vanta-layer {
  background:
    radial-gradient(circle at 70% 42%, rgba(0, 245, 160, 0.1), transparent 18rem),
    radial-gradient(circle at 22% 18%, rgba(47, 107, 255, 0.22), transparent 27rem),
    #05070a;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.58) 48%, rgba(5, 7, 10, 0.9)),
    linear-gradient(to bottom, rgba(5, 7, 10, 0.24), rgba(5, 7, 10, 0.9) 82%, var(--black));
}

.hero-grid {
  opacity: 0.18;
  background-size: 92px 92px;
}

.hero-content {
  width: min(100%, var(--max));
  align-items: stretch;
  text-align: left;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4.2rem);
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  border-radius: 8px;
  color: var(--champagne);
  background: rgba(214, 177, 109, 0.08);
  border-color: rgba(214, 177, 109, 0.28);
  box-shadow: none;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 4.15vw, 3.75rem);
  line-height: 0.98;
  text-wrap: balance;
}

h1 span,
.final-panel h2 span {
  background: linear-gradient(135deg, var(--green), #f7fafc 46%, var(--champagne));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 640px;
  color: #c3ccd8;
  font-size: clamp(0.98rem, 1.55vw, 1.06rem);
}

.hero-copy p {
  margin-bottom: 0;
}

.hero-proof strong {
  color: var(--champagne);
}

.hero-action {
  align-items: flex-start;
  margin-top: 1.35rem;
}

.button {
  min-height: 52px;
  border-radius: 8px;
}

.microcopy {
  justify-content: flex-start;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(247, 250, 252, 0.15);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.54);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(0, 245, 160, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.video-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.08);
  transition: transform 520ms ease;
}

.video-shell:hover {
  transform: translateY(-6px);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(0, 245, 160, 0.13);
}

.video-shell:hover img {
  transform: scale(1.065);
}

.video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 7, 10, 0.02), rgba(5, 7, 10, 0.54)),
    radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(5, 7, 10, 0.5) 100%);
}

.play-orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-button {
  position: relative;
  display: grid;
  width: clamp(52px, 5.6vw, 68px);
  height: clamp(52px, 5.6vw, 68px);
  place-items: center;
  border: 1px solid rgba(247, 250, 252, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(247, 250, 252, 0.12), transparent 56%),
    rgba(5, 7, 10, 0.72);
  box-shadow:
    0 0 0 8px rgba(0, 245, 160, 0.08),
    0 0 42px rgba(0, 245, 160, 0.22);
  backdrop-filter: blur(14px);
}

.play-button::after {
  content: none;
}

.play-symbol {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
  filter: drop-shadow(0 0 10px rgba(247, 250, 252, 0.28));
}

.video-shell:hover .play-button {
  border-color: rgba(0, 245, 160, 0.5);
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 245, 160, 0.14), transparent 58%),
    rgba(5, 7, 10, 0.78);
  box-shadow:
    0 0 0 10px rgba(0, 245, 160, 0.1),
    0 0 54px rgba(0, 245, 160, 0.28);
}

.hero-signal {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: min(calc(100% - 2rem), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(247, 250, 252, 0.1);
  border-radius: 8px;
  color: rgba(247, 250, 252, 0.88);
  background: rgba(13, 18, 26, 0.56);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-signal svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero-signal.reveal.is-visible {
  transform: translateX(-50%);
}

.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.video-modal.is-open,
.video-modal:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  cursor: pointer;
  background: rgba(3, 6, 10, 0.78);
  backdrop-filter: blur(18px);
}

.video-modal-panel {
  position: relative;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(0, 245, 160, 0.28);
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.video-modal.is-open .video-modal-panel {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(247, 250, 252, 0.13);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(14px);
}

.video-modal-close:hover {
  border-color: rgba(0, 245, 160, 0.34);
  color: var(--green);
}

.video-modal-close svg {
  width: 19px;
  height: 19px;
}

.video-stage {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: min(62vh, 560px);
  place-items: center;
  overflow: hidden;
  background: #05070a;
}

.modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #05070a;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
}

.section h2 {
  line-height: 0.98;
}

.section-heading {
  max-width: 820px;
}

.pain-card,
.pillar-card,
.difference-grid article,
.trust-grid article,
.asset-board article,
.fit-panel,
.state-panel,
.pricing-card,
.membership-pass,
.final-panel,
details {
  border-radius: 8px;
}

.pain-card,
.pillar-card,
.difference-grid article,
.trust-grid article {
  min-height: 150px;
}

.pain-card,
.pillar-card,
.difference-grid article,
.trust-grid article,
.asset-board article,
.fit-panel,
.state-panel {
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.045), rgba(247, 250, 252, 0.012)),
    rgba(13, 18, 26, 0.72);
}

.pain-card:hover,
.pillar-card:hover,
.difference-grid article:hover,
.asset-board article:hover {
  border-color: rgba(0, 245, 160, 0.3);
  box-shadow: 0 26px 74px rgba(0, 245, 160, 0.1);
}

.pain-card svg,
.pillar-card svg {
  color: var(--champagne);
}

.pain-card:nth-child(3n + 2) svg,
.pillar-card:nth-child(3n + 2) svg {
  color: var(--blue);
}

.pain-card:nth-child(3n) svg,
.pillar-card:nth-child(3n) svg {
  color: var(--green);
}

.asset-board {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 245, 160, 0.08), transparent 42%),
    rgba(13, 18, 26, 0.38);
}

.asset-board article::after {
  border-radius: 8px;
}

.membership-pass,
.pricing-card,
.final-panel {
  background:
    linear-gradient(var(--panel-strong), var(--panel-strong)) padding-box,
    linear-gradient(135deg, rgba(0, 245, 160, 0.48), rgba(214, 177, 109, 0.42), rgba(47, 107, 255, 0.54)) border-box;
}

.pass-list p,
.pricing-benefits p {
  border-radius: 8px;
}

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

.timeline::before {
  display: none;
}

.timeline li {
  padding: 1.1rem;
  border-radius: 8px;
}

.timeline li::before {
  right: 1rem;
  left: auto;
  top: 1rem;
  width: 10px;
  height: 10px;
}

.founder-portrait,
.portrait-frame,
.founder-portrait::after {
  border-radius: 8px;
}

summary::after {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    place-items: center;
    padding: 7rem 1rem 2.5rem;
  }

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

  .hero-content,
  .hero-main {
    text-align: center;
  }

  .hero-action,
  .microcopy {
    align-items: center;
    justify-content: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .video-shell {
    max-width: 680px;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-signal {
    position: static;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 1.4rem;
  }

  .hero-signal svg {
    transform: rotate(90deg);
  }

  .hero-signal.reveal.is-visible {
    transform: none;
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 9px;
    right: 9px;
    width: auto;
    transform: none;
    overflow: hidden;
  }

  .brand span:last-child {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 34px;
    padding-inline: 0.72rem;
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 6.2rem;
  }

  .hero-content,
  .hero-text,
  .hero-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .eyebrow {
    width: 100%;
    max-width: 268px;
    margin-inline: auto;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 0.56rem;
  }

  h1 {
    width: 100%;
    max-width: 318px;
    margin-inline: auto;
    font-size: clamp(1.95rem, 8.9vw, 2.28rem);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 342px;
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-action {
    width: 100%;
    max-width: 342px;
    margin-inline: auto;
  }

  .hero-action .button {
    max-width: 282px;
  }

  .hero-media,
  .video-shell {
    max-width: 326px;
    margin-inline: auto;
  }

  .video-shell {
    aspect-ratio: 4 / 5;
  }

  .section h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .membership-pass,
  .pricing-card,
  .final-panel {
    padding: 1.25rem;
  }

  .video-modal {
    padding: 0.7rem;
  }

  .video-stage {
    min-height: 420px;
  }

  .video-modal-close {
    right: 0.65rem;
    top: 0.65rem;
  }

}

/* EDIXUS premium interface pass */
:root {
  --radius: 2rem;
  --radius-lg: 2.6rem;
  --radius-xl: 3rem;
  --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --surface-glass: rgba(8, 11, 16, 0.76);
  --surface-glass-strong: rgba(8, 11, 16, 0.92);
  --line-soft: rgba(247, 250, 252, 0.12);
  --line-green: rgba(0, 245, 160, 0.34);
  --glow-green: 0 0 54px rgba(0, 245, 160, 0.18);
  --glow-blue: 0 0 84px rgba(47, 107, 255, 0.18);
}

body::after {
  opacity: 0.05;
}

a,
summary,
.video-shell,
.pain-card,
.pillar-card,
.difference-grid article,
.asset-board article {
  transition-timing-function: var(--ease-premium);
}

.site-header {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.72));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(247, 250, 252, 0.06);
}

.brand-mark,
.eyebrow,
.nav-cta,
.button,
.video-shell,
.video-modal-panel,
.video-modal-close,
.hero-signal,
.pain-card,
.pillar-card,
.difference-grid article,
.trust-grid article,
.asset-board,
.asset-board article,
.fit-panel,
.state-panel,
.timeline li,
.pricing-card,
.membership-pass,
.final-panel,
.pass-list p,
.pricing-benefits p,
details,
summary::after,
.founder-portrait,
.portrait-frame,
.founder-portrait::after {
  border-radius: var(--radius);
}

.main-nav a,
.footer-social a {
  transition: color 180ms var(--ease-premium), transform 180ms var(--ease-premium);
}

.main-nav a:hover,
.footer-social a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium);
}

.nav-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-104%) skewX(-14deg);
  background: linear-gradient(110deg, transparent, rgba(247, 250, 252, 0.28), transparent);
  transition: transform 520ms var(--ease-premium);
}

.nav-cta span,
.button span {
  position: relative;
  z-index: 1;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px) scale(1.03);
}

.nav-cta:hover::before,
.button:hover::before {
  transform: translateX(104%) skewX(-14deg);
}

.nav-cta {
  color: #03100b;
  background: linear-gradient(135deg, var(--green), #8effd7);
  box-shadow: 0 14px 38px rgba(0, 245, 160, 0.2);
}

.hero {
  min-height: min(92svh, 760px);
  padding-bottom: 4.4rem;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 44%, rgba(0, 245, 160, 0.11), transparent 18rem),
    radial-gradient(circle at 22% 18%, rgba(47, 107, 255, 0.24), transparent 28rem),
    linear-gradient(90deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.58) 48%, rgba(5, 7, 10, 0.88)),
    linear-gradient(to bottom, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.9) 82%, var(--black));
}

.hero-main {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

h1 {
  max-width: 820px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
}

.hero-action {
  margin-top: 1.55rem;
}

.video-shell {
  display: block;
  aspect-ratio: 1.08 / 0.76;
  border-color: rgba(247, 250, 252, 0.16);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(0, 245, 160, 0.08),
    var(--glow-blue);
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(0, 245, 160, 0.18);
  border-radius: calc(var(--radius) - 0.65rem);
  mask-image: linear-gradient(90deg, black 0 18%, transparent 18% 82%, black 82% 100%);
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 245, 160, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.38;
  mix-blend-mode: screen;
}

.video-hud {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 0.15rem;
  width: max-content;
  max-width: min(220px, calc(100% - 2.5rem));
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(247, 250, 252, 0.14);
  border-radius: 1rem;
  color: var(--white);
  background: rgba(5, 7, 10, 0.58);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.video-hud span {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.video-hud strong {
  font-size: 0.8rem;
  line-height: 1.1;
}

.video-hud-top {
  top: 1.25rem;
  left: 1.25rem;
}

.video-hud-bottom {
  right: 1.25rem;
  bottom: 1.25rem;
  text-align: right;
}

.hero-signal {
  bottom: 18px;
  min-height: 48px;
  padding: 0.66rem 1rem;
  background: rgba(8, 11, 16, 0.72);
  box-shadow: inset 0 1px 0 rgba(247, 250, 252, 0.05);
  backdrop-filter: blur(18px);
}

.section {
  padding: var(--section-y, clamp(4rem, 8vw, 7rem)) 1rem;
}

.section h2 {
  max-width: 860px;
  font-size: clamp(2.1rem, 4.35vw, 3.9rem);
  letter-spacing: 0;
}

.pricing-card h2,
.final-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.section-heading {
  margin-bottom: clamp(1.7rem, 4vw, 2.8rem);
}

.pain-card,
.pillar-card,
.difference-grid article,
.trust-grid article,
.asset-board article,
.fit-panel,
.state-panel {
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.052), rgba(247, 250, 252, 0.012)),
    radial-gradient(circle at 18% 10%, rgba(47, 107, 255, 0.09), transparent 12rem),
    rgba(8, 11, 16, 0.74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(247, 250, 252, 0.045);
}

.pain-card:hover,
.pillar-card:hover,
.difference-grid article:hover,
.asset-board article:hover {
  transform: translateY(-3px);
  border-color: var(--line-green);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42), var(--glow-green);
}

.asset-board,
.membership-pass,
.pricing-card,
.final-panel {
  border-radius: var(--radius-xl);
}

.membership-pass,
.pricing-card,
.final-panel {
  background:
    linear-gradient(145deg, rgba(8, 11, 16, 0.96), rgba(5, 7, 10, 0.9)) padding-box,
    linear-gradient(135deg, rgba(0, 245, 160, 0.52), rgba(214, 177, 109, 0.36), rgba(47, 107, 255, 0.56)) border-box;
}

.pricing-card {
  max-width: 820px;
}

.price {
  text-shadow: 0 0 46px rgba(0, 245, 160, 0.18);
}

.pass-list p,
.pricing-benefits p {
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.045), rgba(247, 250, 252, 0.01)),
    rgba(5, 7, 10, 0.38);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 0.92rem;
    font-size: 0.84rem;
  }

  .hero {
    padding-bottom: 2.7rem;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .video-shell {
    max-width: 620px;
    aspect-ratio: 16 / 9;
  }

  .hero-signal {
    grid-template-columns: repeat(7, auto);
    gap: 0.55rem;
    justify-content: center;
    min-height: 44px;
    margin-top: 1.1rem;
    font-size: 0.66rem;
  }

  .hero-signal svg {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 1.2rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    min-height: 34px;
    padding-inline: 0.68rem;
    box-shadow: 0 10px 28px rgba(0, 245, 160, 0.18);
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 2.2rem;
  }

  .eyebrow {
    max-width: 286px;
    padding: 0.74rem 0.9rem;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(2.08rem, 9vw, 2.45rem);
  }

  .hero-copy {
    max-width: 350px;
    line-height: 1.55;
  }

  .hero-action {
    margin-top: 1.25rem;
  }

  .microcopy {
    max-width: 315px;
    flex-wrap: wrap;
    row-gap: 0.35rem;
    line-height: 1.5;
  }

  .hero-media,
  .video-shell {
    max-width: 338px;
  }

  .video-shell {
    aspect-ratio: 16 / 10;
  }

  .video-hud {
    display: none;
  }

  .hero-signal {
    display: flex;
    width: calc(100vw - 2rem);
    min-height: auto;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    row-gap: 0.38rem;
    padding: 0.72rem 0.62rem;
    line-height: 1.2;
  }

  .hero-signal span {
    flex: 0 1 auto;
    max-width: 9.2rem;
    white-space: nowrap;
  }

  .hero-signal svg {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    transform: none;
  }

  .section {
    padding-block: clamp(3.4rem, 12vw, 4.8rem);
  }

  .section h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1;
  }

  .asset-board,
  .membership-pass,
  .pricing-card,
  .final-panel {
    border-radius: 1.7rem;
  }

  .pain-card,
  .pillar-card,
  .difference-grid article,
  .trust-grid article,
  .asset-board article,
  .fit-panel,
  .state-panel,
  .pass-list p,
  .pricing-benefits p,
  details {
    border-radius: 1.35rem;
  }
}
