:root {
  --bg-dark: #07111f;
  --bg-dark-2: #0a182b;
  --bg-white: #ffffff;
  --bg-muted: #f5f8fb;
  --text: #102033;
  --text-soft: #5c6b7a;
  --text-muted: #7b8794;
  --line: rgba(16, 32, 51, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --cyan: #49d8ff;
  --blue: #4b7dff;
  --green: #42e8a5;
  --violet: #9b7cff;
  --gold: #f7c76b;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 28px 90px rgba(7, 17, 31, 0.15);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-white);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.58);
  backdrop-filter: blur(18px);
  color: white;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.24);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-elevated {
  background: rgba(7, 17, 31, 0.86);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #06101d;
  background:
    radial-gradient(circle at 30% 20%, #ffffff, transparent 32%),
    linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-text {
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: white;
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: transparent;
  color: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 99px;
}

section {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(73, 216, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(66, 232, 165, 0.15), transparent 24%),
    linear-gradient(135deg, #06101d 0%, #07111f 42%, #0b1c32 100%);
  color: white;
}

.soft-dark {
  background:
    radial-gradient(circle at 15% 18%, rgba(155, 124, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(73, 216, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #07111f, #0c192b);
}

.section-white {
  background: var(--bg-white);
}

.section-light,
.section-muted {
  background: var(--bg-muted);
}

.hero {
  min-height: 100svh;
  padding: 156px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta h2 {
  margin: 0;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 8vw, 96px);
}

.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 45px rgba(73, 216, 255, 0.22);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(8px);
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: 16%;
  left: -140px;
  border-radius: 999px;
  background: rgba(73, 216, 255, 0.08);
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: 4%;
  border-radius: 999px;
  background: rgba(66, 232, 165, 0.08);
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
  padding: 14px;
}

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 14px;
}

.mock-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.mock-pill {
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.mock-dashboard {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  min-height: 540px;
  padding: 14px;
  border-radius: 26px;
  background: #081425;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.mock-sidebar span {
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-sidebar span:first-child {
  background: linear-gradient(135deg, rgba(73, 216, 255, 0.28), rgba(66, 232, 165, 0.22));
}

.mock-main {
  display: grid;
  gap: 14px;
}

.mock-topline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.mock-topline div,
.mock-panel {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.mock-topline div {
  padding: 16px;
}

.mock-topline p,
.mock-topline span,
.mock-panel-header em,
.floating-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-style: normal;
}

.mock-topline strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.mock-panel {
  padding: 16px;
}

.mock-panel.large {
  min-height: 230px;
}

.mock-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-panel-header span {
  font-size: 14px;
  font-weight: 740;
}

.chart-lines {
  position: relative;
  height: 160px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100% 34px, 58px 100%;
  overflow: hidden;
}

.chart-lines i {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  transform: skewY(-7deg);
}

.chart-lines i:nth-child(1) {
  top: 42px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green));
}

.chart-lines i:nth-child(2) {
  top: 82px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan));
  opacity: 0.8;
}

.chart-lines i:nth-child(3) {
  top: 118px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green));
  opacity: 0.7;
}

.mock-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bar-list,
.access-list {
  display: grid;
  gap: 12px;
}

.bar-list span {
  width: var(--w);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.access-list span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.floating-card-left {
  left: -32px;
  bottom: 72px;
}

.floating-card-right {
  right: -24px;
  top: 88px;
}

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

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.cta h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.section-heading p:not(.eyebrow),
.cta p {
  color: var(--text-soft);
  font-size: 17px;
}

.section-heading.light p:not(.eyebrow),
.cta p {
  color: rgba(255, 255, 255, 0.68);
}

.problem,
.platform,
.revenue,
.access,
.franchise,
.trust,
.onboarding,
.cta {
  padding: 96px 0;
}

.problem-grid,
.feature-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

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

.problem-grid article,
.feature-card,
.trust-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 60px rgba(7, 17, 31, 0.06);
}

.card-icon,
.feature-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0a6f8e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-grid h3,
.feature-card h3,
.trust-grid h3,
.stack-card h3,
.timeline h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.problem-grid p,
.feature-card p,
.trust-grid p,
.stack-card p,
.timeline p {
  margin: 0;
  color: var(--text-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.platform-stack {
  display: grid;
  gap: 16px;
}

.stack-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(7, 17, 31, 0.06);
}

.stack-card.active {
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(73, 216, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #07111f, #0e2947);
}

.stack-card.active p {
  color: rgba(255, 255, 255, 0.68);
}

.stack-card div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.stack-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(73, 216, 255, 0.12);
  color: #0a6f8e;
  font-size: 12px;
  font-weight: 850;
}

.stack-card.active span {
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

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

.access-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(73, 216, 255, 0.17), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(66, 232, 165, 0.13), transparent 28%),
    #07111f;
  box-shadow: var(--shadow);
}

.phone-pass {
  width: min(330px, 78%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(145deg, rgba(73, 216, 255, 0.18), rgba(66, 232, 165, 0.08)),
    rgba(255, 255, 255, 0.06);
  color: white;
  backdrop-filter: blur(18px);
}

.pass-top,
.pass-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pass-top span,
.pass-member p,
.pass-status span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.pass-member {
  margin: 80px 0 34px;
}

.pass-member p,
.pass-member h3 {
  margin: 0;
}

.pass-member h3 {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.pass-status {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.pass-status strong {
  color: var(--green);
}

.pass-status.muted strong {
  color: var(--gold);
}

.access-events {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  width: min(340px, 78%);
}

.access-events span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.check-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list span {
  margin-top: 4px;
  color: var(--text-soft);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 24px 24px 24px 58px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.timeline article span {
  position: absolute;
  top: 30px;
  left: 24px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 0 8px rgba(73, 216, 255, 0.10);
}

.timeline h3 {
  color: white;
}

.timeline p {
  color: rgba(255, 255, 255, 0.66);
}

.franchise-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 20%, rgba(73, 216, 255, 0.13), transparent 24%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metrics-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.metrics-grid span,
.metrics-grid em {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal;
}

.metrics-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
  letter-spacing: -0.06em;
}

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
}

.cta-panel > div:first-child {
  max-width: 720px;
}

.site-footer {
  padding: 64px 0 28px;
  background: #050b14;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .split.reverse,
  .franchise-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

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

  .dashboard-shell {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.94);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-proof,
  .problem-grid,
  .feature-grid,
  .trust-grid,
  .metrics-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mock-dashboard {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-topline,
  .mock-bottom {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    display: inline-block;
    margin: 14px 8px 0 0;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 36px;
  }

  .problem,
  .platform,
  .revenue,
  .access,
  .franchise,
  .trust,
  .onboarding,
  .cta {
    padding: 72px 0;
  }

  .dashboard-shell {
    padding: 10px;
    border-radius: 26px;
  }

  .mock-dashboard {
    min-height: auto;
    padding: 10px;
  }

  .access-visual {
    min-height: 440px;
  }

  .franchise-panel {
    padding: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
