:root {
  color-scheme: dark;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .07);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, .08);
  --font: var(--font-body);
  --brand-font: var(--font-body);
  --max: 1536px;
  --purple: #835cff;
  --purple-2: #a96df8;
  --blue: #407ee9;
  --button: linear-gradient(135deg, #865cff 0%, #4f72e8 100%);
  --button-shadow: 0 16px 44px rgba(104, 80, 255, .28);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #020611;
  --page-alt: #030816;
  --text: #f5f2ff;
  --heading: #faf8ff;
  --muted: #aab0c7;
  --muted-2: #78809e;
  --panel: rgba(11, 17, 39, .72);
  --panel-solid: #0a1024;
  --panel-soft: rgba(20, 27, 58, .54);
  --panel-lift: rgba(20, 27, 64, .82);
  --field: rgba(5, 9, 23, .78);
  --border: rgba(155, 168, 230, .18);
  --border-strong: rgba(181, 190, 255, .28);
  --shadow: 0 34px 100px rgba(0, 0, 0, .45);
  --soft-shadow: 0 18px 60px rgba(0, 0, 0, .30);
  --hero-glow: rgba(95, 96, 235, .52);
  --hero-glow-2: rgba(139, 91, 255, .36);
  --wave: rgba(126, 93, 255, .62);
  --wave-soft: rgba(88, 118, 255, .22);
  --card-text: #e9e7f8;
  --accent-label: #b781ff;
  --asset-opacity: .92;
  --glass-filter: saturate(1.05) brightness(.82);
  --logo-opacity: .72;
}

html[data-theme="light"] {
  color-scheme: light;
  --page: #fcfcff;
  --page-alt: #fafafe;
  --text: #181723;
  --heading: #12111f;
  --muted: #4f4f60;
  --muted-2: #777588;
  --panel: rgba(255, 255, 255, .68);
  --panel-solid: #ffffff;
  --panel-soft: rgba(242, 241, 247, .72);
  --panel-lift: rgba(255, 255, 255, .82);
  --field: rgba(255, 255, 255, .84);
  --border: rgba(52, 49, 77, .12);
  --border-strong: rgba(68, 58, 120, .18);
  --shadow: 0 34px 110px rgba(90, 82, 145, .18);
  --soft-shadow: 0 20px 60px rgba(94, 80, 148, .12);
  --hero-glow: rgba(107, 110, 232, .12);
  --hero-glow-2: rgba(149, 95, 255, .08);
  --wave: rgba(125, 75, 246, .18);
  --wave-soft: rgba(84, 116, 229, .06);
  --card-text: #151522;
  --accent-label: #7751aa;
  --asset-opacity: .54;
  --glass-filter: saturate(.96) brightness(1.18);
  --logo-opacity: .92;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.45;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.svg-defs {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 6%, var(--hero-glow) 0, transparent 34rem),
    radial-gradient(circle at 8% 36%, var(--wave-soft) 0, transparent 42rem),
    linear-gradient(180deg, var(--page) 0%, var(--page) 44%, var(--page-alt) 100%);
}

.page-shell::after {
  content: "";
  position: absolute;
  right: 5.5%;
  bottom: 3.5%;
  width: 126px;
  height: 126px;
  pointer-events: none;
  opacity: .42;
  background: currentColor;
  color: rgba(255, 255, 255, .92);
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
}

html[data-theme="dark"] .page-shell::after {
  opacity: .02;
}

.container {
  width: min(calc(100% - 128px), var(--max));
  margin: 0 auto;
}

.section-pad {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 34px 0 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--brand-font);
  font-weight: 760;
  color: var(--heading);
}

.brand {
  font-size: 27px;
  line-height: 1;
}

.brand span,
.mini-brand {
  color: var(--heading);
}

.brand-mark,
.mini-brand svg {
  width: 26px;
  height: 26px;
  color: var(--purple);
  fill: currentColor;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 52px);
  color: var(--text);
  font-size: 15px;
  font-weight: 590;
  white-space: nowrap;
}

.nav-links a {
  opacity: .94;
  transition: color .18s ease, opacity .18s ease;
}

.nav-links a:hover {
  color: var(--purple);
  opacity: 1;
}

.nav-links a[aria-current="page"] {
  color: var(--purple);
  opacity: 1;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #fff;
  background: var(--button);
  box-shadow: var(--button-shadow);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05) inset;
  backdrop-filter: blur(18px);
}

.btn-large {
  min-height: 50px;
  padding-inline: 24px;
}

.hero {
  min-height: 860px;
  padding-top: 94px;
  background:
    radial-gradient(circle at 86% 22%, var(--hero-glow) 0, transparent 35rem),
    radial-gradient(circle at 73% 43%, var(--hero-glow-2) 0, transparent 28rem);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 230px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, var(--page-alt) 98%);
}

html[data-theme="light"] .hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(247, 246, 252, .82) 84%, var(--page-alt) 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-ring-line {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 999px;
  opacity: .62;
}

.hero-ring-line-a {
  right: 5.5%;
  top: -98px;
  width: 640px;
  height: 640px;
}

.hero-ring-line-b {
  left: -120px;
  top: 520px;
  width: 660px;
  height: 220px;
  transform: rotate(10deg);
  opacity: .24;
}

.hero-orb {
  position: absolute;
  right: -110px;
  top: 345px;
  width: 455px;
  height: 455px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .32), rgba(125, 105, 255, .18) 45%, transparent 68%);
  border: 1px solid var(--border);
  filter: blur(.2px);
}

.css-wave {
  position: absolute;
  width: 980px;
  height: 210px;
  border-top: 2px solid var(--wave);
  border-radius: 50%;
  opacity: .48;
  filter: drop-shadow(0 0 16px rgba(116, 84, 255, .50));
}

.css-wave::before,
.css-wave::after {
  content: "";
  position: absolute;
  inset: 14px 34px auto 28px;
  height: 100%;
  border-top: 1px solid var(--wave);
  border-radius: 50%;
  opacity: .58;
}

.css-wave::after {
  inset: 28px 16px auto 78px;
  opacity: .32;
}

.hero-wave-a {
  left: 40%;
  top: 618px;
  transform: rotate(-12deg);
}

.hero-wave-b {
  left: -14%;
  top: 590px;
  width: 1060px;
  transform: rotate(9deg);
  opacity: .26;
}

.hero-particles {
  position: absolute;
  right: clamp(24px, 8vw, 140px);
  bottom: 54px;
  width: min(34vw, 360px);
  height: 210px;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(238, 242, 255, var(--light));
  box-shadow:
    0 0 var(--glow) rgba(164, 133, 255, var(--halo)),
    0 0 var(--glow-wide) rgba(80, 126, 255, var(--halo-soft));
  opacity: var(--alpha);
  transform: translate3d(var(--px, 0), var(--py, 0), 0);
}

html[data-theme="light"] .hero-particle {
  background: rgba(120, 88, 255, var(--light-soft));
  box-shadow:
    0 0 var(--glow) rgba(119, 81, 210, var(--halo-light)),
    0 0 var(--glow-wide) rgba(64, 126, 233, var(--halo-light-soft));
}

.particle-a {
  --size: 7px;
  --glow: 22px;
  --glow-wide: 52px;
  --light: .58;
  --light-soft: .42;
  --halo: .49;
  --halo-soft: .22;
  --halo-light: .24;
  --halo-light-soft: .10;
  --alpha: .70;
  right: 12%;
  bottom: 22%;
}

.particle-b {
  --size: 12px;
  --glow: 30px;
  --glow-wide: 72px;
  --light: .44;
  --light-soft: .32;
  --halo: .37;
  --halo-soft: .17;
  --halo-light: .18;
  --halo-light-soft: .08;
  --alpha: .54;
  right: 34%;
  bottom: 42%;
}

.particle-c {
  --size: 5px;
  --glow: 18px;
  --glow-wide: 43px;
  --light: .82;
  --light-soft: .58;
  --halo: .70;
  --halo-soft: .31;
  --halo-light: .34;
  --halo-light-soft: .15;
  --alpha: .82;
  right: 2%;
  bottom: 54%;
}

.particle-d {
  --size: 17px;
  --glow: 42px;
  --glow-wide: 100px;
  --light: .30;
  --light-soft: .22;
  --halo: .26;
  --halo-soft: .11;
  --halo-light: .13;
  --halo-light-soft: .05;
  --alpha: .38;
  right: 49%;
  bottom: 14%;
}

.particle-e {
  --size: 9px;
  --glow: 26px;
  --glow-wide: 62px;
  --light: .64;
  --light-soft: .46;
  --halo: .54;
  --halo-soft: .24;
  --halo-light: .27;
  --halo-light-soft: .12;
  --alpha: .62;
  right: 23%;
  bottom: 68%;
}

.particle-f {
  --size: 4px;
  --glow: 16px;
  --glow-wide: 38px;
  --light: .88;
  --light-soft: .62;
  --halo: .75;
  --halo-soft: .33;
  --halo-light: .37;
  --halo-light-soft: .16;
  --alpha: .86;
  right: 61%;
  bottom: 36%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(470px, 735px) minmax(520px, 1fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}

.hero-copy {
  padding-top: 0;
  transform: translate(28px, 18px);
}

.hero h1,
.section-copy h2 {
  margin: 0;
  color: var(--heading);
  font-weight: 810;
  line-height: .98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(50px, 5vw, 84px);
}

.hero h1 span {
  display: block;
  background: linear-gradient(100deg, #b067f6 0%, #6d58ff 55%, #4383e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .btn-ghost {
  min-width: 156px;
  background: color-mix(in srgb, var(--panel-solid) 58%, transparent);
}

html[data-theme="light"] .hero-lede,
html[data-theme="light"] .section-copy p {
  color: #3e3d4c;
}

.search-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 16px;
  max-width: 818px;
  margin-top: 44px;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--field);
  box-shadow: var(--soft-shadow), 0 1px 0 rgba(255, 255, 255, .05) inset;
  backdrop-filter: blur(24px);
}

.search-box label {
  display: flex;
  align-items: center;
  min-height: 56px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 17px;
}

.search-box input::placeholder {
  color: var(--muted);
  opacity: .95;
}

.search-box > button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  align-self: center;
  border-radius: 10px;
  color: #fff;
  background: var(--button);
  box-shadow: 0 16px 34px rgba(105, 78, 255, .26);
  cursor: pointer;
}

.search-box svg,
.filters svg,
.result-actions svg,
.feature-icon svg,
.check-list svg,
.app-preview svg,
.stat-card svg,
.link-btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-box > button svg {
  width: 24px;
  height: 24px;
}

.filters {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  padding-top: 4px;
}

.filters button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: color-mix(in srgb, var(--panel-solid) 55%, transparent);
  cursor: pointer;
}

.filters svg {
  width: 16px;
  height: 16px;
  color: var(--accent-label);
}

.hero-art {
  position: relative;
  height: 620px;
  margin-top: 4px;
}

.asset {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  filter: var(--glass-filter);
  --px: 0px;
  --py: 0px;
}

.asset-large-top {
  left: 54px;
  top: 24px;
  width: 358px;
  opacity: var(--asset-opacity);
  transform: translate3d(var(--px), var(--py), 0) rotate(-3deg);
  z-index: 4;
}

.asset-large-bottom {
  right: -118px;
  top: 300px;
  width: 448px;
  opacity: calc(var(--asset-opacity) * .9);
  transform: translate3d(var(--px), var(--py), 0) rotate(-1deg);
  z-index: 1;
}

.asset-top-ring {
  left: auto;
  right: 96px;
  top: 42px;
  width: 238px;
  opacity: .80;
  transform: translate3d(var(--px), var(--py), 0) rotate(-11deg);
  z-index: 5;
}

html[data-theme="light"] .asset-top-ring {
  opacity: .48;
}

.asset-cube {
  left: 42px;
  top: 226px;
  width: 108px;
  opacity: .92;
  transform: translate3d(var(--px), var(--py), 0);
  z-index: 9;
}

html[data-theme="light"] .asset-cube {
  opacity: .58;
}

.asset-disc {
  left: -30px;
  right: auto;
  bottom: 32px;
  width: 142px;
  opacity: .76;
  transform: translate3d(var(--px), var(--py), 0) rotate(-4deg);
  z-index: 8;
}

html[data-theme="light"] .asset-disc {
  opacity: .48;
}

.floating-result {
  position: absolute;
  right: 42px;
  top: 106px;
  z-index: 7;
  width: 420px;
  min-height: 488px;
  padding: 30px 28px 26px;
  border: 1px solid color-mix(in srgb, var(--border-strong) 80%, white 8%);
  border-radius: 26px;
  color: var(--card-text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .03)),
    var(--panel-lift);
  box-shadow: var(--shadow);
  --px: 0px;
  --py: 0px;
  transform: translate3d(var(--px), var(--py), 0) perspective(950px) rotateZ(3.5deg) rotateY(-7deg) rotateX(1deg);
  transform-origin: center;
  backdrop-filter: blur(28px) saturate(1.2);
}

html[data-theme="light"] .floating-result {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(239, 238, 250, .42)),
    var(--panel-lift);
}

.result-count {
  margin: 0 0 24px;
  color: var(--text);
  font-weight: 760;
  font-size: 17px;
}

.result-featured,
.result-row {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel-solid) 58%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset;
}

.result-featured {
  padding: 22px 22px 18px;
  border-radius: 12px;
}

.result-featured span,
.result-row span,
.app-result span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.result-featured strong,
.result-row strong {
  display: block;
  margin-top: 8px;
  color: color-mix(in srgb, var(--purple-2) 70%, var(--text));
  font-size: 18px;
}

.result-featured small {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
}

.result-featured p {
  margin: 17px 0 0;
  color: var(--text);
  font-weight: 720;
  font-size: 14px;
  line-height: 1.55;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}

.result-actions b,
.result-row b,
.app-result b {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 7px;
  color: var(--text);
  background: var(--panel-soft);
  font-size: 12px;
  font-weight: 780;
}

.result-actions svg {
  width: 21px;
  height: 21px;
  color: var(--muted);
}

.result-actions b {
  margin-right: auto;
}

.result-row {
  position: relative;
  margin-top: 16px;
  padding: 17px 20px;
  border-radius: 10px;
}

.result-row b {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--muted);
}

.result-footnote {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.35;
}

.partner-wrap {
  position: relative;
  z-index: 5;
  margin-top: 8px;
}

.partners {
  display: grid;
  grid-template-columns: 1.05fr repeat(5, 1fr);
  align-items: center;
  min-height: 126px;
  padding: 0 48px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel-solid) 64%, transparent);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(24px);
}

html[data-theme="light"] .partners {
  background: rgba(255, 255, 255, .72);
}

.partners p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.partners strong {
  display: grid;
  place-items: center;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  font-weight: 500;
  opacity: var(--logo-opacity);
  text-align: center;
}

.partners strong small {
  display: block;
  margin-top: -7px;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
}

.partners .wide {
  font-family: var(--font);
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.features {
  padding-top: 66px;
  padding-bottom: 58px;
  background: var(--page-alt);
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 68px;
  align-items: start;
}

.section-copy h2 {
  font-size: clamp(38px, 3.5vw, 52px);
}

.section-copy p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.section-copy .btn {
  margin-top: 31px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 270px;
  padding: 32px 28px 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 4%, rgba(133, 91, 255, .18), transparent 35%),
    var(--panel);
  box-shadow: 0 18px 70px rgba(48, 48, 95, .08);
  backdrop-filter: blur(20px);
}

html[data-theme="light"] .feature-card {
  background:
    radial-gradient(circle at 50% 4%, rgba(128, 81, 244, .06), transparent 39%),
    rgba(236, 235, 242, .70);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .66), 0 18px 55px rgba(95, 84, 140, .09);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--purple);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 92, 255, .20), transparent 72%);
  filter: drop-shadow(0 0 18px rgba(125, 87, 255, .34));
}

html[data-theme="light"] .feature-icon {
  background: radial-gradient(circle, rgba(132, 92, 255, .10), transparent 72%);
  filter: drop-shadow(0 0 14px rgba(125, 87, 255, .16));
}

.feature-icon svg {
  width: 51px;
  height: 51px;
  stroke-width: 1.25;
}

.feature-card h3 {
  margin: 54px 0 0;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.24;
}

.feature-card p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

html[data-theme="light"] .feature-card p {
  color: #353442;
}

.wave-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.wave-field span {
  position: absolute;
  left: 16%;
  top: 210px;
  width: 112%;
  height: 190px;
  border-top: 1px solid var(--wave);
  border-radius: 50%;
  opacity: .34;
  transform: rotate(-6deg);
  filter: drop-shadow(0 0 18px rgba(126, 91, 255, .24));
}

.wave-field span:nth-child(2) {
  top: 222px;
  left: 18%;
  opacity: .22;
  transform: rotate(-7.7deg);
}

.wave-field span:nth-child(3) {
  top: 235px;
  left: 14%;
  opacity: .16;
  transform: rotate(-4.5deg);
}

.wave-field span:nth-child(4) {
  top: 250px;
  left: 22%;
  opacity: .14;
  transform: rotate(-9deg);
}

.wave-field span:nth-child(5) {
  top: 270px;
  left: -12%;
  width: 92%;
  opacity: .20;
  transform: rotate(8deg);
}

.answer {
  padding-top: 78px;
  padding-bottom: 44px;
  background: var(--page-alt);
}

.answer-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: clamp(58px, 5vw, 82px);
  align-items: center;
}

.answer-copy h2 {
  margin-top: 0;
  font-size: clamp(40px, 4vw, 58px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 16px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--purple-2);
}

.answer-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  line-height: 1;
  color: var(--text);
  font-weight: 650;
}

.link-btn svg {
  width: 18px;
  height: 18px;
  color: var(--accent-label);
}

.app-preview {
  display: block;
  justify-self: end;
  width: min(100%, 960px);
  margin: 0;
  min-width: 0;
  min-height: 0;
  padding: 10px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

html[data-theme="light"] .app-preview {
  background: #fff;
}

.app-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.app-nav,
.app-main,
.app-side {
  min-width: 0;
}

.app-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 0 10px;
}

.mini-brand {
  padding: 0 16px 28px;
  font-size: 15px;
}

.mini-brand svg {
  width: 17px;
  height: 17px;
}

.app-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 0 0 8px;
  padding: 0 14px;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  text-align: left;
}

.app-nav button.is-active {
  color: var(--text);
  background: var(--panel-soft);
}

.app-nav button svg {
  width: 16px;
  height: 16px;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 16px 0;
  color: var(--text);
}

.user-chip span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f1c59c 0 18%, #bf7d62 19% 46%, #7550a8 47% 100%);
}

.user-chip p {
  margin: 0;
  font-size: 13px;
  font-weight: 740;
}

.user-chip small {
  display: block;
  color: var(--muted-2);
  font-weight: 600;
}

.app-main {
  padding: 16px 0 10px;
}

.app-search {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  min-height: 44px;
  padding: 0 4px 0 16px;
  border-radius: 8px;
  background: var(--panel-soft);
}

.app-search p {
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.app-search span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--purple-2);
  background: rgba(128, 90, 255, .14);
}

.app-search svg {
  width: 17px;
  height: 17px;
}

.app-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.app-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 6px;
  color: var(--text);
  background: var(--panel-soft);
  font-size: 12px;
  font-weight: 700;
}

.tag-cloud span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.app-count {
  margin: 22px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.app-result {
  position: relative;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--panel-solid) 55%, transparent);
}

.app-result h3 {
  margin: 7px 0 2px;
  color: color-mix(in srgb, var(--purple-2) 70%, var(--text));
  font-size: 18px;
}

.app-result small {
  color: var(--muted-2);
}

.app-result p {
  max-width: 520px;
  margin: 15px 0 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 690;
  line-height: 1.52;
}

.app-result b {
  margin-top: 16px;
}

.app-icons {
  position: absolute;
  right: 20px;
  bottom: 24px;
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.app-icons svg {
  width: 18px;
  height: 18px;
}

.app-notes {
  padding: 20px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  background: color-mix(in srgb, var(--panel-solid) 44%, transparent);
}

.app-notes h4,
.side-card h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
}

.app-notes ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.app-notes ul:last-child {
  margin-bottom: 0;
}

.app-side {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px 0 0;
}

.side-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--panel-solid) 55%, transparent);
}

.side-card h4 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.side-card p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 790;
}

.side-card p small {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  color: var(--muted-2);
  font-weight: 650;
}

.side-card button {
  width: 100%;
  min-height: 36px;
  margin-top: 12px;
  border-radius: 7px;
  color: color-mix(in srgb, var(--purple-2) 72%, var(--text));
  background: rgba(128, 90, 255, .12);
  font-weight: 720;
}

.tag-cloud {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.side-card .save-query {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  color: #fff;
  background: var(--button);
}

.save-query svg {
  width: 16px;
  height: 16px;
}

.stats {
  padding-top: 4px;
  padding-bottom: 68px;
  background: var(--page-alt);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  align-content: center;
  min-height: 112px;
  padding: 0 38px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 18px 58px rgba(44, 42, 92, .07);
  backdrop-filter: blur(20px);
}

html[data-theme="light"] .stat-card {
  background: rgba(237, 235, 242, .70);
}

.stat-card svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--purple);
}

.stat-card strong {
  color: var(--heading);
  font-size: 26px;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: -7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.24;
}

.model-lab {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  color: #f7f3ff;
  background:
    radial-gradient(circle at 80% 24%, rgba(95, 65, 224, .54) 0, transparent 32rem),
    radial-gradient(circle at 12% 78%, rgba(101, 72, 255, .30) 0, transparent 29rem),
    linear-gradient(145deg, #020611 0%, #050918 48%, #020612 100%);
  padding: clamp(32px, 4vh, 48px) 0;
}

.model-lab::before,
.model-lab::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(4px);
}

.model-lab::before {
  right: -14%;
  top: 5%;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(117, 83, 255, .36), transparent 66%);
}

.model-lab::after {
  left: -18%;
  bottom: -8%;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(100, 76, 255, .30), transparent 68%);
}

html[data-theme="light"] .model-lab {
  color: #f7f3ff;
  background:
    radial-gradient(circle at 78% 20%, rgba(95, 65, 224, .46) 0, transparent 31rem),
    radial-gradient(circle at 14% 78%, rgba(72, 83, 210, .26) 0, transparent 28rem),
    linear-gradient(145deg, #080c1a 0%, #0c1022 52%, #050816 100%);
}

html[data-theme="light"] .model-lab::before {
  background: radial-gradient(circle, rgba(118, 86, 255, .28), transparent 67%);
}

html[data-theme="light"] .model-lab::after {
  background: radial-gradient(circle, rgba(70, 117, 226, .20), transparent 69%);
}

.model-sticky {
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 0;
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(360px, 570px) minmax(560px, 1fr);
  gap: clamp(42px, 5vw, 94px);
  align-items: center;
}

.model-copy {
  position: relative;
  z-index: 2;
  transform: translate(28px, 12px);
}

.model-copy h2 {
  margin: 0;
  color: currentColor;
  font-size: clamp(58px, 5.5vw, 96px);
  font-weight: 830;
  line-height: .95;
  letter-spacing: 0;
}

.model-copy h2 span {
  color: transparent;
  background: linear-gradient(135deg, #bb68ff 0%, #665fff 72%, #5c79ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.examples-copy h2 {
  margin: 0;
  color: currentColor;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 830;
  line-height: .96;
}

.model-copy p:not(.section-kicker) {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(235, 232, 255, .76);
  font-size: 20px;
  line-height: 1.66;
}

html[data-theme="light"] .model-copy p:not(.section-kicker) {
  color: rgba(235, 232, 255, .76);
}

.examples-copy p {
  margin: 28px 0 0;
  color: rgba(235, 232, 255, .72);
  font-size: 18px;
  line-height: 1.65;
}

.galaxy-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(620px, calc(100vh - 96px));
  isolation: isolate;
}

.galaxy-stage::before {
  content: "";
  position: absolute;
  inset: 7% 0 3% 9%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(98, 72, 255, .40), transparent 32%),
    radial-gradient(circle at 67% 54%, rgba(83, 112, 255, .20), transparent 44%);
  filter: blur(12px);
}

html[data-theme="light"] .galaxy-stage::before {
  background:
    radial-gradient(circle at 50% 44%, rgba(98, 72, 255, .36), transparent 33%),
    radial-gradient(circle at 67% 54%, rgba(83, 112, 255, .18), transparent 46%);
}

.model-forge {
  position: relative;
  width: min(57vw, 760px);
  aspect-ratio: 1;
}

[data-model-depth] {
  --mx: 0px;
  --my: 0px;
  will-change: transform;
}

.model-track {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 1;
  width: 91%;
  height: 30%;
  border: 1px solid rgba(155, 117, 255, .36);
  border-radius: 50%;
  opacity: .72;
  filter: drop-shadow(0 0 14px rgba(122, 82, 255, .28));
  transform: translate(-50%, -50%) translate3d(var(--mx), var(--my), 0) rotate(var(--track-rotate));
  pointer-events: none;
}

html[data-theme="light"] .model-track {
  border-color: rgba(155, 117, 255, .36);
  filter: drop-shadow(0 0 14px rgba(122, 82, 255, .28));
}

.track-a {
  --track-rotate: 7deg;
}

.track-b {
  --track-rotate: -26deg;
  top: 47%;
  width: 101%;
  opacity: .48;
}

.track-c {
  --track-rotate: 64deg;
  top: 44%;
  width: 82%;
  height: 36%;
  opacity: .38;
}

.model-orb {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 5;
  display: block;
  width: clamp(900px, 94%, 760px);
  max-width: none;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 24px 70px rgba(35, 23, 118, .58))
    drop-shadow(0 0 42px rgba(129, 88, 255, .36));
  transform: translate(-50%, -50%) translate3d(var(--mx), var(--my), 0);
}

html[data-theme="light"] .model-orb {
  filter:
    drop-shadow(0 24px 70px rgba(35, 23, 118, .58))
    drop-shadow(0 0 42px rgba(129, 88, 255, .36));
}

.model-orb-text {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 8;
  display: grid;
  gap: 8px;
  place-items: center;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .52);
  transform: translate(-50%, -50%) translate3d(var(--mx), var(--my), 0);
  pointer-events: none;
}

.model-orb-text strong {
  font-size: 28px;
  font-weight: 780;
  line-height: 1;
}

.model-orb-text small {
  color: rgba(235, 232, 255, .74);
  font-size: 15px;
  font-weight: 500;
}

.model-deco {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
  user-select: none;
  opacity: .66;
  filter:
    saturate(1.05)
    brightness(.82)
    drop-shadow(0 18px 36px rgba(0, 0, 0, .28));
}

.model-deco-ring {
  left: 5%;
  bottom: 12%;
  width: 150px;
  transform: translate3d(var(--mx), var(--my), 0) rotate(-7deg);
}

.model-deco-cube {
  right: -3%;
  top: 31%;
  width: 112px;
  opacity: .58;
  transform: translate3d(var(--mx), var(--my), 0) rotate(13deg);
}

.model-deco-disc {
  left: -18%;
  bottom: 3%;
  width: 210px;
  opacity: .38;
  transform: translate3d(var(--mx), var(--my), 0) rotate(-4deg);
}

.model-deco-slide {
  right: 15%;
  bottom: 5%;
  width: 172px;
  opacity: .46;
  transform: translate3d(var(--mx), var(--my), 0) rotate(-3deg);
}

.legal-node {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 9;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(190, 178, 255, .30);
  border-radius: 10px;
  color: #fbf8ff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03)),
    rgba(15, 20, 48, .72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .30);
  backdrop-filter: blur(18px);
  font-size: 16px;
  font-weight: 500;
  transform:
    translate(-50%, -50%)
    translate3d(var(--mx), var(--my), 0)
    translate(var(--node-x), var(--node-y));
  animation: modelNodeFloat 4.6s ease-in-out infinite;
}

html[data-theme="light"] .legal-node {
  border-color: rgba(190, 178, 255, .30);
  color: #fbf8ff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03)),
    rgba(15, 20, 48, .72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .30);
}

.node-a {
  --node-x: -325px;
  --node-y: -120px;
}

.node-b {
  --node-x: 320px;
  --node-y: -150px;
  animation-delay: -.8s;
}

.node-d {
  --node-x: -280px;
  --node-y: 168px;
  animation-delay: -1.7s;
}

.node-e {
  --node-x: -28px;
  --node-y: -270px;
  animation-delay: -2.5s;
}

@keyframes modelNodeFloat {
  50% {
    margin-top: -10px;
  }
}

.examples {
  padding-top: 96px;
  padding-bottom: 92px;
  background: var(--page-alt);
}

.examples-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.examples-copy h2 {
  color: var(--heading);
}

.examples-copy p {
  color: var(--muted);
}

.example-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.example-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(132, 92, 255, .16), transparent 34%),
    var(--panel);
  box-shadow: var(--soft-shadow);
}

html[data-theme="light"] .example-card {
  background:
    radial-gradient(circle at 78% 8%, rgba(132, 92, 255, .06), transparent 34%),
    var(--panel);
}

.example-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 25px;
  line-height: 1.18;
}

.example-card p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.example-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: color-mix(in srgb, var(--purple-2) 70%, var(--text));
  font-weight: 800;
}

.example-card svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--border);
  background: var(--page);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.footer-brand {
  font-size: 24px;
}

.site-footer p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1360px) {
  .container {
    width: min(calc(100% - 96px), var(--max));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    gap: 26px;
  }

  .hero-grid,
  .feature-grid,
  .answer-grid {
    gap: 42px;
  }

  .hero-grid {
    grid-template-columns: minmax(430px, 1fr) minmax(460px, 560px);
  }

  .hero-art {
    transform: scale(.92);
    transform-origin: top right;
  }

  .feature-grid,
  .answer-grid {
    grid-template-columns: 310px minmax(0, 1fr);
  }

  .app-preview {
    padding: 14px;
  }

  .side-card {
    padding: 14px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    position: relative;
    padding-top: 24px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 120px;
  }

  .hero-grid,
  .feature-grid,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
    transform: none;
  }

  .hero-art {
    height: 610px;
    margin: -18px auto 0;
    transform: none;
    width: min(100%, 680px);
  }

  .partner-wrap {
    margin-top: 0;
  }

  .partners {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 20px;
    padding: 28px 32px;
  }

  .partners p {
    grid-column: 1 / -1;
  }

  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-grid,
  .examples-grid {
    grid-template-columns: 1fr;
  }

  .model-sticky {
    min-height: 0;
    padding: 0;
  }

  .model-copy {
    transform: none;
  }

  .galaxy-stage {
    min-height: 640px;
  }

  .model-forge {
    width: min(88vw, 660px);
  }

  .example-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    padding-top: 18px;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .btn-ghost {
    display: none;
  }

  .hero-actions .btn-ghost {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    gap: 22px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lede,
  .section-copy p {
    font-size: 16px;
  }

  .search-box {
    grid-template-columns: 1fr 50px;
    margin-top: 34px;
    padding: 14px;
  }

  .filters {
    flex-direction: column;
    gap: 9px;
  }

  .filters button {
    justify-content: space-between;
    width: 100%;
  }

  .hero-art {
    height: 520px;
    margin-top: -8px;
  }

  .hero-particles {
    right: 8px;
    bottom: 36px;
    width: 210px;
    height: 150px;
  }

  .floating-result {
    right: 14px;
    top: 92px;
    width: min(86vw, 390px);
    min-height: 450px;
    padding: 25px 22px;
    border-radius: 20px;
  }

  .asset-large-top {
    left: 14px;
    top: 24px;
    width: 308px;
  }

  .asset-large-bottom {
    right: -126px;
    top: 298px;
    width: 374px;
  }

  .asset-top-ring {
    left: auto;
    right: 4px;
    top: 48px;
    width: 190px;
  }

  .asset-cube {
    left: 0;
    top: 232px;
    width: 86px;
  }

  .asset-disc {
    left: -20px;
    right: auto;
    bottom: 20px;
    width: 116px;
  }

  .result-actions {
    gap: 14px;
  }

  .result-row b {
    position: static;
    margin-top: 10px;
  }

  .partners {
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
  }

  .partners strong {
    font-size: 25px;
  }

  .partners .wide {
    font-size: 14px;
  }

  .features {
    padding-top: 54px;
  }

  .feature-cards,
  .stat-grid,
  .app-side {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .answer {
    padding-top: 42px;
  }

  .answer-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .app-preview {
    min-height: 0;
    padding: 14px;
  }

  .app-nav {
    display: none;
  }

  .app-main {
    padding-top: 0;
  }

  .app-result p {
    max-width: none;
  }

  .app-icons {
    position: static;
    margin-top: 16px;
  }

  .stat-card {
    padding: 0 24px;
  }

  .model-lab {
    display: block;
    min-height: 0;
    padding: 56px 0 64px;
  }

  .model-copy h2 {
    font-size: clamp(42px, 11.5vw, 56px);
  }

  .examples-copy h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .model-copy p:not(.section-kicker) {
    margin-top: 24px;
    font-size: 16px;
  }

  .examples-copy p {
    font-size: 16px;
  }

  .galaxy-stage {
    min-height: 620px;
    margin-top: 14px;
  }

  .model-forge {
    width: 100%;
    max-width: 520px;
  }

  .model-orb {
    width: min(124vw, 560px);
  }

  .model-orb-text strong {
    font-size: 23px;
  }

  .model-orb-text small {
    font-size: 13px;
  }

  .model-deco-ring {
    left: 3%;
    bottom: 21%;
    width: 96px;
  }

  .model-deco-cube {
    right: 0;
    top: 29%;
    width: 76px;
  }

  .model-deco-disc {
    left: -10%;
    bottom: 8%;
    width: 142px;
  }

  .model-deco-slide {
    right: 6%;
    bottom: 12%;
    width: 118px;
  }

  .legal-node {
    min-width: 78px;
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .node-a {
    --node-x: -158px;
    --node-y: -98px;
  }

  .node-b {
    --node-x: 164px;
    --node-y: -116px;
  }

  .node-d {
    --node-x: -142px;
    --node-y: 128px;
  }

  .node-e {
    --node-x: -6px;
    --node-y: -190px;
  }

  .examples {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .example-card {
    min-height: 260px;
    padding: 24px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .page-shell::after {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 440px) {
  .header-actions {
    display: none;
  }

  .nav-links {
    gap: 18px;
    font-size: 13px;
  }

  .hero-art {
    height: 490px;
  }

  .page-head h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .page-head p {
    font-size: 17px;
  }

  .floating-result {
    right: 2px;
    width: min(91vw, 356px);
    transform: translate3d(var(--px), var(--py), 0) perspective(850px) rotateZ(2deg) rotateY(-5deg);
  }

  .result-featured {
    padding: 18px;
  }

  .result-actions svg:nth-of-type(2) {
    display: none;
  }
}

/* ============================================================= */
/* Sub-pages: Ceník, O nás, Blog                                  */
/* ============================================================= */

.subpage {
  position: relative;
  padding-top: clamp(140px, 16vw, 190px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.page-head {
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.page-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-label);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-head h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.05;
}

.page-head p {
  margin: 24px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(133, 91, 255, .16), transparent 42%),
    var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

html[data-theme="light"] .price-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(133, 91, 255, .06), transparent 42%),
    var(--panel);
}

.price-card.is-featured {
  border-color: var(--border-strong);
  box-shadow: 0 30px 80px rgba(104, 80, 255, .22);
}

html[data-theme="light"] .price-card.is-featured {
  box-shadow: 0 28px 70px rgba(104, 80, 255, .12);
}

.price-card .price-tier {
  margin: 0;
  color: var(--heading);
  font-size: 22px;
  font-weight: 760;
}

.price-card .price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 4px;
  color: var(--heading);
}

.price-card .price-tag strong {
  font-size: 40px;
  line-height: 1;
}

.price-card .price-tag span {
  color: var(--muted);
  font-size: 15px;
}

.price-card .price-note {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.price-card .check-list {
  margin: 0 0 30px;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.price-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--button);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.price-card-locked {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 310px;
}

.price-card-locked .price-badge {
  align-self: center;
}

.price-card-locked .lock-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 0 22px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--heading);
  background: rgba(133, 91, 255, .10);
}

.price-card-locked .lock-icon svg {
  width: 28px;
  height: 28px;
}

.price-card-locked .price-note {
  max-width: 260px;
  margin: 14px auto 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.about-block {
  padding: 34px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.about-grid > .about-block:nth-of-type(2) {
  grid-column: 1 / -1;
}

.about-visual {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 18%, rgba(133, 91, 255, .32), transparent 34%),
    radial-gradient(circle at 20% 88%, rgba(64, 126, 233, .16), transparent 30%),
    linear-gradient(145deg, rgba(12, 17, 39, .92), rgba(4, 8, 21, .96));
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

html[data-theme="light"] .about-visual {
  background:
    radial-gradient(circle at 78% 18%, rgba(133, 91, 255, .10), transparent 34%),
    radial-gradient(circle at 20% 88%, rgba(64, 126, 233, .06), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(240, 238, 249, .82));
}

.about-wave,
.about-ui,
.about-cube {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.about-wave {
  left: -24%;
  top: -10%;
  z-index: 1;
  width: 150%;
  opacity: .72;
  filter: saturate(1.08) drop-shadow(0 20px 50px rgba(104, 80, 255, .20));
  transform: rotate(-7deg);
}

.about-ui {
  left: 8%;
  bottom: 34px;
  z-index: 2;
  width: 108%;
  max-width: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  transform: rotate(-3deg);
}

.about-cube {
  right: 7%;
  top: 16%;
  z-index: 3;
  width: 112px;
  opacity: .76;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, .22));
  transform: rotate(12deg);
}

.about-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(190, 178, 255, .25);
  border-radius: 12px;
  color: #fff;
  background: rgba(7, 11, 28, .72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px) saturate(1.1);
}

.about-visual figcaption strong {
  font-size: 18px;
  line-height: 1.2;
}

.about-visual figcaption span {
  color: rgba(235, 232, 255, .72);
  font-size: 14px;
}

html[data-theme="light"] .about-ui {
  border-color: rgba(52, 49, 77, .10);
  box-shadow: 0 24px 64px rgba(94, 80, 148, .16);
}

html[data-theme="light"] .about-visual figcaption {
  border-color: rgba(104, 87, 183, .16);
  color: var(--heading);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 44px rgba(94, 80, 148, .13);
}

html[data-theme="light"] .about-visual figcaption span {
  color: #5b586b;
}

.about-block h2 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 26px;
  line-height: 1.2;
}

.about-block p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-values {
  grid-column: 1 / -1;
}

.about-values .feature-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Blog */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-empty {
  max-width: 680px;
  margin: 0 auto;
  padding: 34px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.blog-empty p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.blog-card .blog-meta {
  color: var(--accent-label);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 14px 0 0;
  color: var(--heading);
  font-size: 23px;
  line-height: 1.22;
}

.blog-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.blog-card .blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: color-mix(in srgb, var(--purple-2) 70%, var(--text));
  font-weight: 800;
}

.blog-card .blog-readmore svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1040px) {
  .pricing-grid,
  .blog-list,
  .about-values .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .pricing-grid,
  .blog-list,
  .about-values .feature-cards {
    grid-template-columns: 1fr;
  }

  .about-block {
    padding: 28px 24px;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-wave {
    left: -38%;
    width: 190%;
  }

  .about-ui {
    left: 8%;
    bottom: 46px;
    width: 132%;
  }

  .about-cube {
    right: 8%;
    top: 13%;
    width: 82px;
  }

  .about-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 15px 16px;
  }
}
