:root {
  --bg: #070913;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.035);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #7c3aed;
  --accent-2: #22d3ee;
  --radius: 18px;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 70% 20%, rgba(124, 58, 237, 0.20), transparent 60%),
              radial-gradient(900px 500px at 20% 60%, rgba(34, 211, 238, 0.12), transparent 60%),
              var(--bg);
  color: var(--text);
}

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

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

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 999;
}
.skip:focus { left: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 19, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header-inner {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-logo {
  height: 112px;
  width: 538px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.brand-text {
  display: none;
}

.brand-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.nav-cta {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.55), rgba(34, 211, 238, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
}

.hamburger {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  display: block;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.section {
  padding: 84px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

h1, h2, h3 { margin: 0; }

h1 {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 5.8vw, 64px);
  line-height: 1.06;
}

h2 {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.08;
}

p { margin: 0; }

.muted { color: var(--muted); max-width: 78ch; }

.hero-media {
  position: relative;
  width: calc(100% + 48px);
  margin: 0 -24px 48px;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.32) 72%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.hero-overlay-title {
  position: relative;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.05;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 24ch;
  padding-bottom: 72px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.65));
}

.hero-banner {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.hero-banner-link:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.hero-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 14px;
}

.lede-break { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.70); }

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.42), rgba(34, 211, 238, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 14px;
}

.button:hover { text-decoration: none; border-color: rgba(255, 255, 255, 0.24); }

.button.ghost { background: rgba(255, 255, 255, 0.06); box-shadow: none; }

.panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid-2-single {
  grid-template-columns: min(860px, 100%);
  justify-content: center;
}

.compare-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
}

.compare-side {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
  min-height: 140px;
}

.compare-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.compare-title {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
}

.compare-sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
  max-width: 34ch;
}

.compare-divider {
  display: grid;
  place-items: center;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.compare-past {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.compare-future {
  background: radial-gradient(600px 300px at 30% 20%, rgba(124, 58, 237, 0.22), transparent 60%),
              radial-gradient(600px 300px at 70% 80%, rgba(34, 211, 238, 0.14), transparent 60%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-color: rgba(124, 58, 237, 0.35);
}

.compare-future .compare-title {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sw-diagram {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.sw-diagram-top,
.sw-diagram-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.40);
  padding: 18px;
}

.sw-diagram-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sw-diagram-top .list,
.sw-diagram-card .list {
  margin-top: 12px;
}

.sw-diagram-image {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.40);
  padding: 14px;
}

.sw-diagram-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 920px) {
  .brand { min-width: 0; }
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 9, 19, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px;
    gap: 6px;
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
  }

  .nav[aria-hidden="false"] { display: flex; }

  .nav a { justify-content: center; }

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

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

  .compare-split {
    grid-template-columns: 1fr;
  }

  .compare-divider { display: none; }

  .sw-diagram-bottom {
    grid-template-columns: 1fr;
  }

  .hero-overlay-title { padding-bottom: 48px; }
  .hero-image { aspect-ratio: 16 / 11; }
}
