:root {
  --bg: #f7f5ff;
  --surface: #ffffff;
  --surface-2: #f3efff;
  --ink: #141428;
  --ink-soft: #3d3a55;
  --muted: #6f6a88;
  --line: rgba(20, 20, 40, 0.12);
  --primary: #7c5cfc;
  --primary-bright: #9b82ff;
  --primary-deep: #5a3fd4;
  --magenta: #fc2cfc;
  --wrap: 1120px;
  --narrow: 760px;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 12px;
  --shadow: 0 20px 50px rgba(20, 20, 40, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(124, 92, 252, 0.14), transparent 55%),
    radial-gradient(700px 420px at 100% 20%, rgba(252, 44, 252, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #efeafc 100%);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--primary-deep);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 0.9rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 255, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(252, 251, 255, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 2.35rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-deep);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 251, 255, 0.98);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 0.7rem 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.92rem;
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(124, 92, 252, 0.35);
  border-radius: 999px;
  background: rgba(124, 92, 252, 0.08);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--primary-deep);
}

.hero-kicker .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(252, 44, 252, 0.16);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}

.hero h1 .grad {
  background: linear-gradient(100deg, var(--primary) 0%, var(--magenta) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-figure {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  inset: 8% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.28), transparent 68%);
  filter: blur(28px);
  animation: glow-pulse 7s ease-in-out infinite;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: grid;
  gap: 0.1rem;
  min-width: min(260px, 84%);
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  text-align: center;
  box-shadow: 0 16px 32px rgba(20, 20, 40, 0.12);
}

.hero-badge strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.hero-badge span {
  color: var(--primary-deep);
  font-size: 0.82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.75rem 1.3rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  border: 1px solid var(--primary-deep);
  color: #fff;
  box-shadow: 0 0 24px rgba(124, 92, 252, 0.22);
}

.btn-primary:hover {
  background: var(--primary-deep);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.meta-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.meta-grid > div {
  display: grid;
  gap: 0.2rem;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-grid strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.meta-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-sub.accent {
  color: var(--primary-deep);
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
}

.section h2,
.cta-band h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-lede {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-lede strong {
  color: var(--ink);
}

.pill-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pill-list li {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.bento-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bento-card:hover {
  border-color: rgba(124, 92, 252, 0.45);
  transform: translateY(-2px);
}

.bento-card .step {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4c9ff;
  transition: color 0.25s ease;
}

.bento-card:hover .step {
  color: var(--primary);
}

.bento-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.2rem;
}

.bento-card p {
  margin: 0;
  color: var(--ink-soft);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.25rem;
  padding: 0 0 2.25rem 1.5rem;
  border-left: 2px solid var(--line);
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(124, 92, 252, 0.45);
}

.week {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 0.15rem;
}

.timeline-item h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.timeline-item p {
  margin: 0 0 0.85rem;
}

.deliverable {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(124, 92, 252, 0.4);
  border-radius: 8px;
  background: rgba(124, 92, 252, 0.06);
  color: var(--primary-deep);
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.promise-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.promise-list li {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--magenta);
  border-radius: 10px;
  background: var(--surface);
}

.promise-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.cta-band {
  padding: 6rem 0;
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(124, 92, 252, 0.14), transparent 60%),
    linear-gradient(180deg, transparent, rgba(243, 239, 255, 0.9));
  border-top: 1px solid var(--line);
}

.cta-inner {
  max-width: 640px;
}

.brand-logo-sm {
  width: min(180px, 55vw);
  margin: 0 auto 1.25rem;
}

.cta-band p {
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.cta-band strong {
  color: var(--ink);
}

.site-footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 1.7rem;
  width: auto;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

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

  .hero {
    padding-top: 4rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-figure {
    order: -1;
  }

  .meta-grid,
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (max-width: 560px) {
  .meta-grid,
  .bento {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.1rem);
  }

  .logo-img {
    height: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .reveal,
  .hero-glow {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
