:root {
  color-scheme: dark;
  --bg: #070a12;
  --bg-soft: #0c1020;
  --panel: rgba(16, 18, 36, 0.74);
  --panel-strong: rgba(18, 20, 40, 0.94);
  --line: rgba(171, 151, 255, 0.22);
  --text: #f8fafc;
  --muted: #b7b2cb;
  --soft: #e5def8;
  --blue: #4199ff;
  --periwinkle: #6f8cff;
  --violet: #8d54e9;
  --coral: #f06b79;
  --orange: #ffad42;
  --accent-gradient: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--periwinkle) 32%,
    var(--violet) 56%,
    var(--coral) 78%,
    var(--orange) 100%
  );
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(65, 153, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 72% 18%, rgba(141, 84, 233, 0.18), transparent 27rem),
    radial-gradient(circle at 92% 42%, rgba(255, 173, 66, 0.12), transparent 24rem),
    linear-gradient(180deg, #000000 0%, #080914 42%, #030306 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(111, 140, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 107, 121, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 34vh;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 173, 66, 0.06));
}

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

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

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  min-height: 74px;
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  overflow: hidden;
  max-width: 220px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 12, 0.72);
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(141, 84, 233, 0.16);
  color: var(--text);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 74px);
  padding: clamp(52px, 8vw, 96px) 0 64px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 850px;
  color: var(--text);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.75rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.1rem;
}

.hero-lede,
.text-stack p,
.booking-copy p,
.service-card p,
.process-track p,
.results-list p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--accent-gradient);
  box-shadow: 0 14px 42px rgba(240, 107, 121, 0.28);
  color: #07050c;
}

.button-secondary {
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(18, 20, 40, 0.74);
  color: var(--text);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 20, 40, 0.56);
}

.hero-visual {
  min-height: 560px;
  perspective: 1200px;
}

.orbital-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: 560px;
  margin-left: auto;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(65, 153, 255, 0.1), rgba(255, 173, 66, 0.06)),
    rgba(6, 6, 14, 0.68);
  box-shadow: var(--shadow);
  transform: rotateX(4deg) rotateY(-8deg);
  transform-style: preserve-3d;
}

.grid-plane {
  position: absolute;
  inset: 12%;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(65, 153, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 107, 121, 0.11) 1px, transparent 1px);
  background-size: 34px 34px;
  filter: drop-shadow(0 0 20px rgba(111, 140, 255, 0.18));
  transform: rotateX(62deg) translateY(30px);
  animation: drift 10s linear infinite;
}

.signal-ring,
.orbit,
.core-node {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
}

.signal-ring {
  border: 1px solid rgba(111, 140, 255, 0.26);
  border-radius: 999px;
  box-shadow: inset 0 0 40px rgba(141, 84, 233, 0.08);
}

.ring-one {
  width: 300px;
  height: 300px;
  animation: pulse 4s ease-in-out infinite;
}

.ring-two {
  width: 430px;
  height: 430px;
  animation: pulse 5.6s ease-in-out infinite reverse;
}

.core-node {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 173, 66, 0.48);
  border-radius: 8px;
  background: var(--accent-gradient);
  box-shadow: 0 0 60px rgba(141, 84, 233, 0.32);
  color: var(--text);
  font-size: 2rem;
  font-weight: 850;
}

.orbit {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  animation: rotate 12s linear infinite;
}

.orbit-one {
  width: 240px;
  height: 240px;
}

.orbit-two {
  width: 360px;
  height: 360px;
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbit-three {
  width: 470px;
  height: 470px;
  animation-duration: 24s;
}

.orbit-node {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 24px var(--orange);
}

.data-card {
  position: absolute;
  display: grid;
  gap: 4px;
  width: 140px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 12, 0.76);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

.data-card strong {
  color: var(--text);
}

.data-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.card-one {
  top: 86px;
  left: 48px;
}

.card-two {
  right: 36px;
  top: 230px;
  animation-delay: -1.8s;
}

.card-three {
  bottom: 76px;
  left: 88px;
  animation-delay: -3.2s;
}

.outcome-band,
.content-section,
.booking-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.outcome-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.outcome-band div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 24px;
  background: rgba(13, 13, 28, 0.86);
}

.outcome-band strong {
  background: var(--accent-gradient);
  background-clip: text;
  color: transparent;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.outcome-band span {
  color: var(--muted);
  line-height: 1.5;
}

.problem-section,
.content-section,
.booking-section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.problem-section {
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.process-track article,
.results-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.service-card {
  min-height: 290px;
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-track article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.process-track article::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 3px;
  content: "";
  background: var(--accent-gradient);
}

.process-track span {
  display: block;
  margin-bottom: 56px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.results-list div {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.results-list h3,
.results-list p {
  margin-bottom: 0;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 104px;
}

.calendly-inline-widget {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 480px;
  margin-bottom: 0;
  text-align: right;
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes float {
  50% {
    transform: translate3d(0, -16px, 30px);
  }
}

@keyframes drift {
  to {
    background-position: 34px 34px;
  }
}

@media (max-width: 980px) {
  .section-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .orbital-stage {
    min-height: 480px;
    margin: 0 auto;
  }

  .card-grid,
  .outcome-band,
  .process-track {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: grid;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-name {
    max-width: 150px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 2px;
    width: 100%;
    border-radius: 8px;
  }

  .site-nav a {
    flex: 1 1 auto;
    padding: 8px 9px;
    font-size: 0.84rem;
    text-align: center;
  }

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

  .hero-proof {
    display: grid;
  }

  .hero-visual {
    min-height: 380px;
  }

  .orbital-stage {
    min-height: 380px;
    transform: none;
  }

  .ring-one {
    width: 210px;
    height: 210px;
  }

  .ring-two,
  .orbit-three {
    width: 300px;
    height: 300px;
  }

  .orbit-one {
    width: 180px;
    height: 180px;
  }

  .orbit-two {
    width: 260px;
    height: 260px;
  }

  .core-node {
    width: 88px;
    height: 88px;
    font-size: 1.45rem;
  }

  .data-card {
    width: 116px;
    padding: 10px;
  }

  .card-one {
    top: 46px;
    left: 16px;
  }

  .card-two {
    right: 12px;
    top: 170px;
  }

  .card-three {
    bottom: 44px;
    left: 28px;
  }

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

  .results-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

/* ── About page ─────────────────────────────────────────── */

.site-nav [aria-current="page"] {
  background: rgba(141, 84, 233, 0.16);
  color: var(--text);
}

.about-hero {
  padding-bottom: 0;
}

.about-lede {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.prose-block {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.prose-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.prose-mission {
  color: var(--soft) !important;
}

.founder-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 840px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.founder-image-wrap {
  width: 220px;
  height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-role {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-bio p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-block {
  max-width: 680px;
}

.cta-lede {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Pricing page */

.pricing-hero {
  padding-bottom: clamp(32px, 5vw, 56px);
}

.pricing-lede {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.work-hero {
  padding-bottom: clamp(32px, 5vw, 56px);
}

.work-lede {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.work-section {
  padding-top: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(255, 173, 66, 0.45);
  background: rgba(18, 20, 40, 0.9);
  transform: translateY(-3px);
}

.work-card-featured {
  background:
    linear-gradient(145deg, rgba(65, 153, 255, 0.1), rgba(255, 173, 66, 0.08)),
    var(--panel);
}

.work-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.1;
}

.work-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.work-link-text {
  margin-top: auto;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-section {
  padding-top: clamp(32px, 5vw, 56px);
}

.review-card {
  max-width: 920px;
  margin: 0;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(141, 84, 233, 0.1), rgba(65, 153, 255, 0.08)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.review-card blockquote {
  margin: 0 0 24px;
  color: var(--soft);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 760;
  line-height: 1.24;
}

.review-card figcaption {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-section {
  padding-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card,
.pricing-note,
.monthly-support {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
}

.pricing-card-featured {
  background:
    linear-gradient(145deg, rgba(65, 153, 255, 0.1), rgba(255, 173, 66, 0.08)),
    var(--panel);
}

.pricing-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.pricing-label {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 850;
}

.pricing-price {
  display: grid;
  gap: 4px;
  justify-items: end;
  margin-bottom: 0;
  background: var(--accent-gradient);
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 880;
  line-height: 1;
}

.pricing-price span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-description,
.pricing-note p,
.monthly-support p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-description {
  margin-bottom: 28px;
}

.pricing-card h2,
.pricing-note h2,
.monthly-support h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.1;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
  line-height: 1.55;
}

.pricing-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 173, 66, 0.38);
  transform: translateY(-50%);
}

.pricing-note {
  margin-top: 16px;
  padding: clamp(24px, 4vw, 34px);
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.monthly-support {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  margin-top: 16px;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(141, 84, 233, 0.1), rgba(65, 153, 255, 0.08)),
    var(--panel);
}

.monthly-support-header {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.monthly-support-header h2,
.monthly-support-header .pricing-price {
  margin-bottom: 0;
}

.monthly-support-header .pricing-price {
  justify-items: start;
}

.monthly-support p {
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-image-wrap {
    width: 160px;
    height: 160px;
  }

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

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

  .pricing-card-header {
    display: grid;
  }

  .pricing-price {
    justify-items: start;
  }

  .monthly-support {
    grid-template-columns: 1fr;
  }
}

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