:root {
  --bg: #050607;
  --bg-2: #0b0e11;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f7f8;
  --muted: #a5adb8;
  --muted-2: #737d89;
  --cyan: #6ee7ff;
  --blue: #7aa8ff;
  --violet: #b38cff;
  --gold: #e8c579;
  --danger: #ffcf7a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 0%, rgba(110, 231, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 22%, rgba(232, 197, 121, 0.08), transparent 28rem),
    linear-gradient(180deg, #050607 0%, #090b0e 47%, #050607 100%);
  color: var(--text);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  padding: 10px 12px 10px 18px;
  background: rgba(5, 6, 7, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.hero-actions,
.cta-actions,
.footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--gold));
  box-shadow: 0 0 28px rgba(110, 231, 255, 0.36);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 46px;
  align-items: center;
  min-height: 100svh;
  padding: 124px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 86px -80px 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(122, 168, 255, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(179, 140, 255, 0.12), transparent 31%);
  filter: blur(20px);
  opacity: 0.85;
  animation: gradientDrift 8s ease-in-out infinite alternate;
}

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

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

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-subhead {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, #f8fbff, #8beaff 45%, #bca1ff);
  color: #061014;
  box-shadow: 0 0 42px rgba(110, 231, 255, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

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

.button.full {
  width: 100%;
}

.scarcity {
  max-width: 420px;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual img {
  height: 560px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 8, 10, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.floating-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.video-card {
  right: 22px;
  bottom: 28px;
  max-width: 270px;
  animation: floatCard 4.2s ease-in-out infinite;
}

.metric-card {
  left: -18px;
  top: 110px;
  flex-direction: column;
  align-items: flex-start;
  animation: floatCard 5s ease-in-out infinite reverse;
}

.metric-card strong {
  font-size: 30px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(110, 231, 255, 0.14), 0 0 30px rgba(110, 231, 255, 0.5);
}

.problem-solution,
.services,
.examples,
.pricing,
.faq,
.final-cta {
  padding: 92px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.split-grid,
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contrast-panel,
.service-card,
.beta-service,
.example-card,
.price-card,
.faq-list details,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.contrast-panel {
  padding: 30px;
}

.solution {
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(110, 231, 255, 0.24);
}

.panel-label,
.availability {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #dfe9ef;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list,
.service-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.service-card li {
  position: relative;
  padding-left: 26px;
  color: #d8dee7;
  line-height: 1.55;
}

.check-list li::before,
.service-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

.check-list.muted li {
  color: var(--muted);
}

.check-list.muted li::before {
  color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-card {
  min-height: 430px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 231, 255, 0.28);
  background: linear-gradient(180deg, rgba(110, 231, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(179, 140, 255, 0.15), rgba(110, 231, 255, 0.06)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(179, 140, 255, 0.26);
}

.service-index {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.beta-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
  filter: grayscale(0.7);
  opacity: 0.74;
}

.beta-service p {
  max-width: 760px;
  margin-bottom: 0;
}

.beta-service h3,
.beta-service .service-index {
  color: #b6bec8;
}

.unreleased-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #c4cbd4;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.examples {
  padding-top: 54px;
}

.example-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.example-showcase img {
  min-height: 360px;
  object-fit: cover;
}

.example-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(16px);
}

.example-overlay span,
.example-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.example-overlay strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.example-card {
  padding: 24px;
}

.example-card h3 {
  font-size: 21px;
}

.example-card p {
  margin-bottom: 0;
}

.pricing {
  align-items: center;
}

.pricing-copy {
  max-width: 620px;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(110, 231, 255, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(232, 197, 121, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.06);
}

.price-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  border: 1px solid rgba(110, 231, 255, 0.24);
  pointer-events: none;
}

.price {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 20px;
}

.price strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 64px;
  line-height: 1;
}

.spots {
  margin: 24px 0;
  color: var(--danger);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 24px;
}

.final-cta {
  padding-bottom: 76px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(122, 168, 255, 0.16), transparent 44%),
    linear-gradient(315deg, rgba(232, 197, 121, 0.13), transparent 38%),
    rgba(255, 255, 255, 0.055);
}

.cta-panel p {
  max-width: 760px;
}

.cta-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 18px;
}

.scarcity.final {
  display: block;
  max-width: 620px;
}

.intake-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.52);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.intake-form label {
  display: grid;
  gap: 7px;
}

.intake-form span {
  color: #dfe5ec;
  font-size: 13px;
  font-weight: 800;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  font: inherit;
}

.intake-form select option {
  background: #0b0e11;
  color: var(--text);
}

.intake-form textarea {
  resize: vertical;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: rgba(110, 231, 255, 0.54);
  box-shadow: 0 0 0 3px rgba(110, 231, 255, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 14px;
}

.footer div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}

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

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

@keyframes gradientDrift {
  from {
    transform: translate3d(-12px, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, 14px, 0) scale(1.04);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-grid,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 112px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    height: auto;
    max-height: 540px;
  }

  .metric-card {
    left: 16px;
    top: 18px;
  }

  .service-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .beta-service {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }

  .footer div {
    justify-content: flex-start;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    min-height: 54px;
    padding-left: 12px;
  }

  .brand span:last-child {
    max-width: 135px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-subhead {
    font-size: 17px;
  }

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

  .scarcity {
    max-width: none;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
  }

  .video-card,
  .metric-card {
    animation: none;
  }

  .problem-solution,
  .services,
  .examples,
  .pricing,
  .faq,
  .final-cta {
    padding: 68px 0;
  }

  .contrast-panel,
  .service-card,
  .beta-service,
  .example-card,
  .price-card {
    padding: 24px;
  }

  .example-showcase img {
    min-height: 420px;
  }

  .example-overlay {
    position: static;
    max-width: none;
    border-width: 1px 0 0;
    border-radius: 0;
  }

  .price strong {
    font-size: 54px;
  }
}
