:root {
  color-scheme: dark;
  --bg: #050914;
  --bg-raised: #091224;
  --surface: rgba(14, 25, 46, 0.78);
  --surface-strong: rgba(17, 31, 56, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(194, 220, 255, 0.12);
  --line-strong: rgba(194, 220, 255, 0.22);
  --text: #f8fbff;
  --muted: #a9b7cc;
  --muted-2: #74859d;
  --free: #4fd8ed;
  --free-soft: rgba(79, 216, 237, 0.14);
  --core: #4c8cff;
  --core-2: #55d5ff;
  --core-soft: rgba(76, 140, 255, 0.16);
  --pro: #a679ff;
  --pro-2: #ee55e8;
  --gold: #ffd35f;
  --pro-soft: rgba(166, 121, 255, 0.16);
  --success: #55e0a3;
  --warning: #ffd35f;
  --danger: #ff7f9d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(174, 95, 255, 0.19), transparent 66%),
    radial-gradient(760px 520px at 5% 15%, rgba(44, 185, 244, 0.16), transparent 68%),
    linear-gradient(180deg, #07101f 0%, var(--bg) 24%, #060b17 100%);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  color: #07101f;
  background: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #a9eaff;
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5, 9, 20, 0.7);
  backdrop-filter: blur(18px) saturate(150%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 9, 20, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 72px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.main-nav a {
  padding: 9px 11px;
  border-radius: 10px;
  color: #bdc9d9;
  font-size: 13px;
  font-weight: 650;
  transition: color 150ms ease, background 150ms ease;
}

.main-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.055);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(194, 220, 255, 0.16);
  border-radius: 999px;
  color: #d9e5f3;
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.language-switch:hover {
  border-color: rgba(111, 232, 255, 0.38);
  background: rgba(79, 216, 237, 0.1);
  transform: translateY(-1px);
}

.language-switch__flag {
  font-size: 16px;
  line-height: 1;
}

.version-pill {
  padding: 7px 10px;
  border: 1px solid rgba(82, 210, 243, 0.19);
  border-radius: 999px;
  color: #bceeff;
  background: rgba(60, 190, 230, 0.075);
  font-size: 11px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: white;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: 690px;
  padding: 76px 0 88px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #9bdff5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: linear-gradient(90deg, var(--core-2), var(--pro));
  box-shadow: 0 0 16px rgba(85, 213, 255, 0.75);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 .gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #6fe8ff 5%, #70a4ff 42%, #c27fff 72%, #ff7ddf 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.card-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(170, 218, 255, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.button--primary {
  border-color: transparent;
  color: #07101f;
  background: linear-gradient(135deg, #69e6ff, #7ea4ff 48%, #c786ff);
  box-shadow: 0 15px 42px rgba(89, 158, 255, 0.3);
}

.button--primary:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #88ecff, #8fb0ff 48%, #d599ff);
  box-shadow: 0 18px 48px rgba(89, 158, 255, 0.4);
}

.button--free {
  border-color: rgba(79, 216, 237, 0.33);
  background: var(--free-soft);
}

.button--core {
  border: 0;
  background: linear-gradient(135deg, #316eef, #35bfea);
  box-shadow: 0 14px 36px rgba(55, 126, 247, 0.28);
}

.button--pro {
  border: 0;
  background: linear-gradient(135deg, #7c57e8, #b25ff1 58%, #d9905b);
  box-shadow: 0 14px 38px rgba(140, 80, 232, 0.3);
}

.button.is-pending::after {
  content: "Bientôt";
  padding: 3px 6px;
  border-radius: 999px;
  color: #d8e1ee;
  background: rgba(0, 0, 0, 0.22);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[lang="en"] .button.is-pending::after {
  content: "Coming soon";
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c1cede;
  background: rgba(255, 255, 255, 0.028);
  font-size: 11px;
  font-weight: 700;
}

.hero-trust li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--success);
  box-shadow: 0 0 12px rgba(85, 224, 163, 0.7);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(4px);
}

.hero-visual::before {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 36% 35%, rgba(62, 216, 255, 0.28), rgba(104, 88, 255, 0.11) 48%, transparent 72%);
  animation: pulse-aura 8s ease-in-out infinite;
}

.hero-visual::after {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(151, 199, 255, 0.15);
  box-shadow: 0 0 0 42px rgba(106, 146, 255, 0.035), 0 0 0 84px rgba(167, 105, 255, 0.025);
}

.hero-logo {
  width: min(540px, 100%);
  height: auto;
  filter: drop-shadow(0 34px 55px rgba(0, 0, 0, 0.45));
  animation: float-logo 7s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(194, 220, 255, 0.16);
  border-radius: 999px;
  color: #dbe9f7;
  background: rgba(9, 18, 36, 0.88);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 780;
}

.hero-orbit::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--core-2);
  box-shadow: 0 0 14px var(--core-2);
}

.hero-orbit--top {
  top: 16%;
  right: 2%;
}

.hero-orbit--bottom {
  bottom: 15%;
  left: -2%;
}

.hero-orbit--bottom::before {
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-12px) rotate(0.8deg); }
}

@keyframes pulse-aura {
  0%, 100% { transform: scale(0.96); opacity: 0.78; }
  50% { transform: scale(1.04); opacity: 1; }
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--compact {
  padding: 68px 0;
}

.section--tinted::before {
  position: absolute;
  inset: 18px 0;
  z-index: -1;
  border-block: 1px solid var(--line);
  content: "";
  background: linear-gradient(180deg, rgba(16, 28, 51, 0.62), rgba(8, 15, 30, 0.58));
}

.section-heading {
  display: grid;
  max-width: 770px;
  gap: 13px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  color: #85dff9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.studio-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.studio-copy > p,
.final-cta > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.module-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(20, 37, 66, 0.88), rgba(9, 17, 33, 0.92));
  box-shadow: var(--shadow);
}

.module-card::after {
  position: absolute;
  inset: auto -25% -42% -25%;
  height: 62%;
  border-radius: 50%;
  content: "";
  opacity: 0.22;
  background: var(--module-accent, var(--core));
  filter: blur(35px);
}

.module-card:nth-child(1) { --module-accent: #38b9ff; }
.module-card:nth-child(2) { --module-accent: #49df9c; }
.module-card:nth-child(3) { --module-accent: #ffbd48; }
.module-card:nth-child(4) { --module-accent: #bd58ee; }

.module-art {
  display: grid;
  height: 190px;
  place-items: center;
  padding: 18px 18px 0;
}

.module-art img {
  width: 176px;
  max-height: 176px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.34));
  transition: transform 220ms ease;
}

.module-card:hover .module-art img {
  transform: translateY(-5px) scale(1.03);
}

.module-copy {
  position: relative;
  z-index: 1;
  padding: 14px 20px 22px;
}

.module-copy h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.module-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.module-access {
  display: inline-flex;
  margin-top: 13px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8e4f2;
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 850;
}

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

.tier-card {
  --tier: var(--free);
  --tier-soft: var(--free-soft);
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--tier) 36%, transparent);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 240px at 50% -12%, color-mix(in srgb, var(--tier) 18%, transparent), transparent 70%),
    linear-gradient(165deg, rgba(19, 34, 61, 0.95), rgba(7, 14, 28, 0.98));
  box-shadow: var(--shadow);
}

.tier-card--core {
  --tier: var(--core);
  --tier-soft: var(--core-soft);
}

.tier-card--pro {
  --tier: var(--pro);
  --tier-soft: var(--pro-soft);
  border-color: rgba(199, 139, 255, 0.46);
  box-shadow: 0 28px 90px rgba(115, 64, 203, 0.24);
}

.tier-stripe {
  height: 5px;
  background: var(--tier);
}

.tier-card--core .tier-stripe {
  background: linear-gradient(90deg, var(--core), var(--core-2));
}

.tier-card--pro .tier-stripe {
  background: linear-gradient(90deg, var(--pro), var(--pro-2) 58%, var(--gold));
}

.tier-body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 25px;
}

.tier-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tier-label {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, var(--tier) 30%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--tier) 82%, white);
  background: var(--tier-soft);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.tier-persona {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 750;
}

.tier-card h3 {
  margin: 18px 0 0;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tier-description {
  min-height: 64px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.tier-price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 20px;
}

.tier-price strong {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.tier-price span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
}

.launch-price {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-top: 9px;
  color: #d3deeb;
  font-size: 12px;
}

.launch-price del {
  color: var(--muted-2);
}

.launch-price b {
  color: var(--gold);
}

.launch-price .launch-badge {
  padding: 4px 7px;
  border: 1px solid rgba(255, 211, 95, 0.22);
  border-radius: 999px;
  color: #ffe69f;
  background: rgba(255, 211, 95, 0.08);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-list {
  display: grid;
  gap: 0;
  margin: 22px 0 25px;
  padding: 0;
  list-style: none;
}

.tier-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: #d0dbea;
  font-size: 13px;
}

.tier-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #07101f;
  content: "✓";
  background: color-mix(in srgb, var(--tier) 88%, white);
  place-items: center;
  font-size: 11px;
  font-weight: 950;
}

.tier-body .button {
  width: 100%;
  margin-top: auto;
}

.tier-footnote {
  margin: 10px 0 0;
  color: var(--muted-2);
  text-align: center;
  font-size: 10px;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.pricing-note::before {
  color: var(--success);
  content: "●";
}

.studio-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 46px;
  overflow: hidden;
  border: 1px solid rgba(180, 126, 255, 0.25);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(650px 420px at 100% 0%, rgba(221, 81, 225, 0.16), transparent 68%),
    radial-gradient(540px 380px at 0% 100%, rgba(82, 145, 255, 0.15), transparent 66%),
    linear-gradient(150deg, rgba(22, 35, 67, 0.96), rgba(10, 16, 33, 0.98));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.studio-copy .kicker {
  color: #d8baff;
}

.studio-copy h2 span {
  color: transparent;
  background: linear-gradient(90deg, #bc90ff, #ff76d7, #ffd56e);
  background-clip: text;
  -webkit-background-clip: text;
}

.studio-copy .button {
  margin-top: 25px;
}

.studio-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.capability {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(200, 173, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.capability b {
  display: block;
  color: #f7f3ff;
  font-size: 13px;
}

.capability span {
  display: block;
  margin-top: 6px;
  color: #aeb7ca;
  font-size: 11px;
  line-height: 1.55;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.runtime-card {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(160deg, rgba(17, 31, 56, 0.93), rgba(8, 15, 29, 0.97));
}

.runtime-icon {
  display: grid;
  height: 126px;
  place-items: center;
}

.runtime-icon img {
  width: 106px;
  max-height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.35));
}

.runtime-card h3 {
  margin: 10px 0 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.runtime-status {
  display: inline-flex;
  margin-top: 9px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #9ff3ca;
  background: rgba(85, 224, 163, 0.1);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.runtime-status--analysis {
  color: #ffe29a;
  background: rgba(255, 211, 95, 0.1);
}

.runtime-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.comparison-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(8, 16, 31, 0.76);
  box-shadow: var(--shadow);
}

.comparison-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.segmented,
.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button,
.expand-button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #b8c6d8;
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 780;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: rgba(94, 192, 255, 0.31);
  color: white;
  background: linear-gradient(135deg, rgba(62, 129, 244, 0.32), rgba(83, 204, 238, 0.17));
}

.feature-group {
  border-bottom: 1px solid var(--line);
}

.feature-group:last-child {
  border-bottom: 0;
}

.feature-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 15px 19px;
  cursor: pointer;
  list-style: none;
}

.feature-group summary::-webkit-details-marker {
  display: none;
}

.feature-group summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #a9bfd5;
  content: "+";
  background: rgba(255, 255, 255, 0.035);
  place-items: center;
  font-size: 17px;
}

.feature-group[open] summary::after {
  content: "−";
}

.summary-copy {
  display: grid;
  gap: 2px;
}

.summary-copy strong {
  font-size: 15px;
}

.summary-copy span {
  color: var(--muted-2);
  font-size: 11px;
}

.table-scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.feature-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.feature-table th,
.feature-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  text-align: center;
  vertical-align: middle;
  font-size: 12px;
}

.feature-table tr:last-child th,
.feature-table tr:last-child td {
  border-bottom: 0;
}

.feature-table thead th {
  color: #dce6f3;
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-table th:first-child,
.feature-table td:first-child {
  width: 43%;
  text-align: left;
}

.feature-table tbody th {
  color: #cdd8e7;
  font-weight: 650;
}

.feature-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.feature-table [hidden] {
  display: none;
}

.plan-head {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.plan-head::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--plan-color);
  box-shadow: 0 0 12px color-mix(in srgb, var(--plan-color) 70%, transparent);
}

.plan-head--free { --plan-color: var(--free); }
.plan-head--core { --plan-color: var(--core); }
.plan-head--pro { --plan-color: var(--pro); }

.status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 820;
  white-space: nowrap;
}

.status--yes {
  border-color: rgba(85, 224, 163, 0.16);
  color: #9af0c6;
  background: rgba(85, 224, 163, 0.075);
}

.status--yes::before {
  content: "✓";
}

.status--limited {
  border-color: rgba(255, 211, 95, 0.16);
  color: #ffe29c;
  background: rgba(255, 211, 95, 0.075);
}

.status--limited::before {
  content: "◐";
}

.status--no {
  color: #74859d;
  background: rgba(255, 255, 255, 0.025);
}

.status--no::before {
  content: "—";
}

.status--pro {
  border-color: rgba(179, 129, 255, 0.19);
  color: #d8bfff;
  background: rgba(166, 121, 255, 0.09);
}

.status--pro::before {
  content: "◆";
  font-size: 8px;
}

.comparison-caption {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.6;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  counter-reset: steps;
}

.workflow-step {
  position: relative;
  min-height: 126px;
  padding: 16px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  counter-increment: steps;
}

.workflow-step::before {
  display: grid;
  width: 26px;
  height: 26px;
  margin-bottom: 13px;
  border-radius: 9px;
  color: #07101f;
  content: counter(steps, decimal-leading-zero);
  background: linear-gradient(135deg, var(--core-2), var(--pro));
  place-items: center;
  font-size: 9px;
  font-weight: 950;
}

.workflow-step:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: -8px;
  z-index: 2;
  color: #6f88a8;
  content: "›";
  font-size: 18px;
  font-weight: 900;
}

.workflow-step strong {
  display: block;
  font-size: 12px;
}

.workflow-step span {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.45;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 780;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  color: #91aed0;
  transform: translateY(-50%);
  font-size: 18px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.availability {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 211, 95, 0.18);
  border-radius: 15px;
  color: #d8e1ec;
  background: rgba(255, 211, 95, 0.055);
  font-size: 12px;
}

.availability::before {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #241b05;
  content: "i";
  background: var(--gold);
  place-items: center;
  font-weight: 950;
}

.availability strong {
  display: block;
  color: #fff2c4;
}

.availability span {
  display: block;
  margin-top: 3px;
  color: #c4bfae;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(119, 186, 255, 0.22);
  border-radius: 34px;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  background:
    radial-gradient(650px 260px at 50% 100%, rgba(80, 203, 241, 0.18), transparent 70%),
    linear-gradient(145deg, rgba(24, 48, 86, 0.92), rgba(31, 20, 62, 0.92));
  box-shadow: var(--shadow);
}

.final-cta::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  content: "";
  opacity: 0.3;
  background: linear-gradient(135deg, var(--core-2), var(--pro-2), var(--gold));
  filter: blur(70px);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta > p {
  max-width: 720px;
  margin: 18px auto 0;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 15, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 36px;
  padding: 42px 0;
}

.footer-brand p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 12px;
}

.footer-column strong {
  display: block;
  margin-bottom: 10px;
  color: #dce7f4;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 12px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 24px;
  border-top: 1px solid var(--line);
  color: #66778f;
  font-size: 10px;
}

@media (max-width: 1050px) {
  .nav-actions .version-pill {
    display: none;
  }

  .main-nav {
    gap: 1px;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-shell {
    grid-template-columns: 1fr 0.8fr;
  }

  .module-grid,
  .compatibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workflow-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 13, 26, 0.97);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 11px;
  }

  .nav-actions .version-pill {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0 54px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

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

  .hero-logo {
    width: min(470px, 90%);
  }

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

  .studio-copy {
    text-align: center;
  }

  .studio-copy .button {
    margin-inline: auto;
  }

  .comparison-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .brand img {
    width: 61px;
    height: auto;
    max-height: 45px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-shell {
    min-height: 66px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

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

  .hero-orbit {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .module-grid,
  .compatibility-grid,
  .studio-capabilities,
  .workflow,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 330px;
  }

  .tier-body {
    padding: 21px;
  }

  .segmented,
  .toolbar-actions {
    width: 100%;
  }

  .filter-button,
  .expand-button {
    flex: 1 1 auto;
  }

  .feature-group summary {
    padding-inline: 14px;
  }

  .footer-brand,
  .footer-column {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    color: #101827;
    background: white;
  }

  body::before,
  .site-header,
  .hero-visual,
  .hero-actions,
  .final-cta,
  .site-footer,
  .comparison-toolbar {
    display: none !important;
  }

  .section,
  .hero {
    min-height: auto;
    padding: 28px 0;
  }

  .tier-card,
  .module-card,
  .runtime-card,
  .comparison-shell,
  .studio-panel,
  .faq-item {
    color: #101827;
    background: white;
    box-shadow: none;
  }

  .feature-group {
    break-inside: avoid;
  }
}
