:root {
  color-scheme: light only;
  --bg: #061829;
  --bg-deep: #03101d;
  --panel: rgba(6, 24, 41, 0.72);
  --panel-strong: rgba(7, 31, 54, 0.88);
  --accent: #00a3ff;
  --teal: #22d1b2;
  --gold: #d4af37;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.15);
  --blue-line: rgba(0, 163, 255, 0.34);
  --teal-line: rgba(34, 209, 178, 0.32);
  --shadow: 0 26px 78px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

body.nav-open,
body.transitioning,
body.demo-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

svg,
img {
  display: block;
}

#shader-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 88%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 14%, rgba(34, 209, 178, 0.14), transparent 28%),
    radial-gradient(circle at 74% 10%, rgba(0, 163, 255, 0.18), transparent 33%),
    linear-gradient(180deg, rgba(3, 16, 29, 0.2), rgba(3, 16, 29, 0.86));
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: var(--bg-deep);
  opacity: 0;
  transition: opacity 420ms ease;
}

body.transitioning .page-transition {
  opacity: 1;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container.narrow {
  width: min(900px, calc(100vw - 40px));
  text-align: center;
}

.section-pad {
  padding: 104px 0;
}

/* ── CONSENT BANNER ──────────────────────────────────────────── */

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: rgba(3, 16, 29, 0.96);
  backdrop-filter: blur(20px);
  transform: translateY(0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.consent-banner.is-hidden {
  transform: translateY(110%);
}

.consent-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

.consent-text a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 163, 255, 0.65);
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-accept {
  padding: 0 18px;
  min-height: 40px;
  border: 1px solid rgba(0, 163, 255, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.3), rgba(34, 209, 178, 0.14));
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.consent-accept:hover {
  box-shadow: 0 0 28px rgba(0, 163, 255, 0.3);
  transform: translateY(-1px);
}

.consent-decline {
  padding: 0 16px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease;
}

.consent-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── HEADER ──────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 14px 0;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    padding 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 16, 29, 0.8);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 0 18px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.brand-img {
  width: 62px;
  height: auto;
}

.footer-brand .brand-img {
  width: 118px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.66);
  opacity: 0.8;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  color: var(--text);
  opacity: 1;
  transform: scale(1.08);
}

.social-icons svg,
.follow-button svg {
  width: 19px;
  height: 19px;
}

.social-icons svg *,
.follow-button svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.primary-nav a,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active,
.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(34, 209, 178, 0.42);
  background: rgba(0, 163, 255, 0.08);
  color: var(--text);
}

.language-toggle {
  border-color: rgba(255, 255, 255, 0.13);
}

.nav-cta {
  border-color: rgba(0, 163, 255, 0.5) !important;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.18), rgba(34, 209, 178, 0.08)) !important;
  color: var(--text) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 0 28px rgba(0, 163, 255, 0.24);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────────────────────────── */

.hero,
.page-hero {
  position: relative;
  display: grid;
  overflow: hidden;
}

.hero {
  min-height: min(880px, 92svh);
  padding-top: 120px;
  padding-bottom: 72px;
  place-items: center;
}

.page-hero {
  padding-top: 186px;
  padding-bottom: 70px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-text .hero-copy {
  margin: 22px 0 0;
  width: 100%;
  max-width: 560px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-text .hero-actions {
  justify-content: flex-start;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-img {
  width: min(100%, 900px);
  height: auto;
}

.hero-architecture {
  position: absolute;
  inset: 120px 5vw 42px;
  pointer-events: none;
  opacity: 0.64;
}

.hero-architecture::before,
.hero-architecture::after,
.hero-architecture span {
  position: absolute;
  content: "";
}

.hero-architecture::before {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.hero-architecture::after {
  top: 16%;
  right: 9%;
  bottom: 16%;
  left: 9%;
  border: 1px solid rgba(0, 163, 255, 0.14);
  border-radius: var(--radius);
}

.hero-architecture span:nth-child(1) {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 163, 255, 0.36), transparent);
}

.hero-architecture span:nth-child(2) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 209, 178, 0.18), transparent);
}

.hero-architecture span:nth-child(3) {
  right: 14%;
  bottom: 14%;
  width: 126px;
  height: 2px;
  background: var(--gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 16px;
  border: 1px solid rgba(34, 209, 178, 0.32);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(34, 209, 178, 0.07);
}

.hero-badge::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  flex-shrink: 0;
  content: "";
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oxanium", system-ui, sans-serif;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 5.85rem);
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-size: clamp(2.05rem, 4.8vw, 4.55rem);
  font-weight: 800;
  line-height: 1;
}

h3 {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.12;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
}

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

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.button svg *,
.text-link svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  border-color: rgba(0, 163, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(0, 163, 255, 0.3), rgba(34, 209, 178, 0.14)),
    rgba(0, 163, 255, 0.06);
  color: var(--text);
  box-shadow: 0 0 32px rgba(0, 163, 255, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(34, 209, 178, 0.72);
  box-shadow: 0 0 44px rgba(0, 163, 255, 0.34);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(34, 209, 178, 0.48);
  background: rgba(34, 209, 178, 0.08);
}

/* ── STATS ───────────────────────────────────────────────────── */

.stats-wrap {
  padding: 0 0 58px;
}

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

.stat-card,
.feature-card,
.demo-card,
.price-card,
.included-panel,
.story-panel,
.contact-panel,
.legal-list article,
.form-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 163, 255, 0.075), rgba(34, 209, 178, 0.045) 46%, rgba(255, 255, 255, 0.026)),
    var(--panel);
  box-shadow: var(--shadow);
}

.stat-card {
  position: relative;
  display: grid;
  min-height: 128px;
  align-content: center;
  gap: 14px;
  padding: 24px;
  overflow: hidden;
}

.stat-card::before,
.price-card::before,
.form-section::before,
.legal-list article::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--accent));
  content: "";
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.stat-card strong {
  color: var(--text);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

/* ── SECTION HEADING ─────────────────────────────────────────── */

.section-heading {
  margin-bottom: 44px;
}

.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading h2 {
  width: min(840px, 100%);
}

.section-heading p:not(.eyebrow) {
  width: min(690px, 100%);
  margin: 20px 0 0;
  font-size: 1.04rem;
}

/* ── FEATURE CARDS ───────────────────────────────────────────── */

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

.feature-card,
.demo-card,
.price-card {
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.feature-card:hover,
.demo-card:hover,
.feature-card:focus-within,
.demo-card:focus-visible,
.price-card:hover {
  border-color: rgba(0, 163, 255, 0.6);
  box-shadow: 0 24px 70px rgba(0, 163, 255, 0.18);
  transform: translateY(-5px);
}

.feature-card {
  min-height: 292px;
  padding: 26px;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border: 1px solid rgba(34, 209, 178, 0.42);
  border-radius: var(--radius);
  place-items: center;
  color: var(--teal);
  background: rgba(34, 209, 178, 0.08);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p {
  margin: 16px 0 0;
  font-size: 0.96rem;
}

.text-link {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(0, 163, 255, 0.42);
  color: var(--text);
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(34, 209, 178, 0.68);
  box-shadow: 0 0 28px rgba(0, 163, 255, 0.2);
}

/* ── DEMO CARDS ──────────────────────────────────────────────── */

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

.all-demos {
  grid-template-columns: repeat(2, 1fr);
}

.demo-card {
  display: grid;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
}

button.demo-card {
  appearance: none;
}

.demo-visual {
  position: relative;
  display: block;
  min-height: 236px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(0, 163, 255, 0.14), transparent 38%),
    linear-gradient(220deg, rgba(34, 209, 178, 0.12), transparent 42%),
    rgba(3, 16, 29, 0.74);
}

.demo-visual::before,
.demo-visual::after,
.demo-visual span {
  position: absolute;
  content: "";
}

.demo-visual::before {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.demo-visual::after {
  top: 54px;
  right: 38px;
  left: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.demo-visual span:nth-child(1) {
  right: 40px;
  bottom: 36px;
  left: 40px;
  height: 76px;
  border: 1px solid rgba(0, 163, 255, 0.28);
  border-radius: var(--radius);
}

.demo-visual span:nth-child(2) {
  top: 90px;
  left: 40px;
  width: 46%;
  height: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.demo-visual span:nth-child(3) {
  top: 122px;
  left: 40px;
  width: 34%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.demo-bramble .demo-visual,
.demo-faderoom .demo-visual {
  background:
    linear-gradient(130deg, rgba(212, 175, 55, 0.16), transparent 40%),
    linear-gradient(225deg, rgba(0, 163, 255, 0.1), transparent 42%),
    rgba(3, 16, 29, 0.78);
}

.demo-flowright .demo-visual,
.demo-forgedgym .demo-visual {
  background:
    linear-gradient(130deg, rgba(0, 163, 255, 0.22), transparent 44%),
    linear-gradient(30deg, rgba(212, 175, 55, 0.12), transparent 50%),
    rgba(3, 16, 29, 0.78);
}

.demo-gloss .demo-visual {
  background:
    linear-gradient(130deg, rgba(0, 163, 255, 0.16), transparent 40%),
    linear-gradient(230deg, rgba(34, 209, 178, 0.14), transparent 52%),
    rgba(3, 16, 29, 0.78);
}

.demo-content {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
}

.demo-content strong {
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 1.55rem;
  color: var(--text);
}

.demo-content span {
  min-height: 54px;
  color: var(--muted);
  line-height: 1.6;
}

.demo-content em {
  display: inline-flex;
  width: max-content;
  margin-top: 10px;
  color: var(--text);
  font-style: normal;
  font-weight: 800;
}

/* ── FOLLOW ──────────────────────────────────────────────────── */

.follow-section {
  padding-top: 70px;
}

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

.follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid rgba(0, 163, 255, 0.42);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.035);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.follow-button:hover,
.follow-button:focus-visible {
  border-color: rgba(34, 209, 178, 0.72);
  background: rgba(0, 163, 255, 0.09);
  box-shadow: 0 0 34px rgba(0, 163, 255, 0.24);
}

/* ── CTA ─────────────────────────────────────────────────────── */

.cta-section {
  padding-top: 72px;
  padding-bottom: 118px;
}

.cta-inner {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 72px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 163, 255, 0.16), rgba(34, 209, 178, 0.1)),
    rgba(6, 24, 41, 0.66);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-inner::before,
.cta-inner::after {
  position: absolute;
  right: 44px;
  left: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
  content: "";
}

.cta-inner::before {
  top: 24px;
}

.cta-inner::after {
  bottom: 24px;
}

.cta-inner h2 {
  width: min(860px, 100%);
  margin-bottom: 28px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 16, 29, 0.76);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 54px 0;
  text-align: center;
}

.footer-social {
  gap: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-meta a {
  color: var(--text);
  font-weight: 800;
}

/* ── PRICING ─────────────────────────────────────────────────── */

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

.price-card {
  padding: 30px;
  overflow: hidden;
}

.price-card h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.price-card strong {
  display: block;
  margin: 18px 0 24px;
  color: var(--text);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 2.1rem;
}

.price-card ul,
.included-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--muted);
  line-height: 1.6;
}

.price-card li::before,
.included-grid span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  content: "";
  vertical-align: 0.08em;
}

.price-card-recommended {
  border-color: rgba(34, 209, 178, 0.5) !important;
  box-shadow: 0 0 48px rgba(34, 209, 178, 0.14) !important;
}

.price-card-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(34, 209, 178, 0.42);
  border-radius: 999px;
  background: rgba(34, 209, 178, 0.1);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-single {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.pricing-single .price-card {
  width: min(720px, 100%);
}

.price-card-full {
  padding: 42px 48px;
}

.price-card-full ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}

.price-card-cta {
  display: inline-flex;
  margin-top: 36px;
}

.pricing-payment-note {
  max-width: 640px;
  margin: 28px auto;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  font-size: 0.97rem;
}

.included-panel {
  margin-top: 16px;
  padding: 30px;
}

.included-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  color: var(--muted);
}

.terms-line {
  margin: 26px 0 0;
}

.terms-line a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 163, 255, 0.65);
  text-underline-offset: 4px;
}

/* ── ABOUT ───────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 16px;
  align-items: start;
}

.story-panel,
.contact-panel {
  padding: 34px;
}

.story-panel h2 {
  margin-bottom: 24px;
}

.story-panel p:not(.eyebrow) {
  font-size: 1.06rem;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.contact-panel a {
  color: var(--text);
  font-weight: 800;
}

.contact-panel p {
  margin: 0;
}

/* ── LEGAL ───────────────────────────────────────────────────── */

.legal-list {
  display: grid;
  gap: 16px;
}

.legal-list article {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.legal-list h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-list p {
  margin: 0;
}

/* ── CONTACT FORM ────────────────────────────────────────────── */

.intake-form {
  display: grid;
  gap: 18px;
}

.form-section {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.form-section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-grid label,
.checkbox-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label.wide {
  grid-column: 1 / -1;
}

label span {
  color: var(--text);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 16, 29, 0.64);
  color: var(--text);
  outline: none;
  padding: 0 15px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

textarea {
  min-height: 104px;
  resize: vertical;
  padding-top: 14px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 163, 255, 0.72);
  background: rgba(3, 16, 29, 0.86);
  box-shadow: 0 0 0 4px rgba(0, 163, 255, 0.12);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.checkbox-grid label {
  grid-template-columns: 22px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.checkbox-grid input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--accent);
}

.form-agree {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  user-select: none;
}

.agree-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.agree-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background 180ms ease;
  position: relative;
}

.agree-label:hover .agree-check {
  border-color: rgba(34, 209, 178, 0.5);
}

.agree-label input[type="checkbox"]:checked ~ .agree-check,
.agree-label input[type="checkbox"]:checked + .agree-check {
  border-color: var(--teal);
  background: rgba(34, 209, 178, 0.12);
}

.agree-label input[type="checkbox"]:checked ~ .agree-check::after,
.agree-label input[type="checkbox"]:checked + .agree-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: 2px solid var(--teal);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.agree-label a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(0, 163, 255, 0.5);
  text-underline-offset: 2px;
}

.agree-label a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.agree-error {
  margin: 10px 0 0 34px;
  min-height: 20px;
  font-size: 0.85rem;
  color: #ff6b6b;
  font-weight: 700;
}

.form-submit-row {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 18px 0 0;
  text-align: center;
}

.form-submit-row p {
  margin: 0;
}

.form-status {
  min-height: 24px;
  font-weight: 800;
}

/* ── DEMO OVERLAY ────────────────────────────────────────────── */

.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  justify-items: end;
  background: rgba(3, 16, 29, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.demo-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.demo-frame-shell {
  width: min(1180px, 100vw);
  height: 100%;
  border-left: 1px solid rgba(0, 163, 255, 0.36);
  background: var(--bg-deep);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-overlay.is-open .demo-frame-shell {
  transform: translateX(0);
}

.demo-close {
  position: fixed;
  top: 22px;
  right: 26px;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  place-items: center;
  background: rgba(3, 16, 29, 0.92);
  color: var(--text);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.demo-frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 92px 0 26px;
  border-bottom: 1px solid var(--line);
}

.demo-frame-header span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-frame-header strong {
  display: block;
  margin-top: 4px;
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 1.35rem;
}

.demo-frame-shell iframe {
  width: 100%;
  height: calc(100% - 76px);
  border: 0;
  background: var(--bg);
}

[data-animate] {
  will-change: transform, opacity;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */

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

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    z-index: 110;
    display: grid;
    justify-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 16, 29, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a,
  .language-toggle {
    justify-content: center;
    width: 100%;
    min-height: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

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

  .hero-text .hero-actions {
    justify-content: center;
  }

  .hero-text .hero-copy {
    margin-inline: auto;
  }

  .feature-grid,
  .pricing-grid,
  .demo-grid,
  .all-demos {
    grid-template-columns: repeat(2, 1fr);
  }

  .follow-grid,
  .included-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 560px);
  }

  .section-pad {
    padding: 78px 0;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-shell {
    width: min(100vw - 16px, 720px);
    padding: 0 8px;
    gap: 12px;
  }

  .header-social {
    gap: 7px;
  }

  .header-social a {
    width: 24px;
    height: 24px;
  }

  .header-social svg {
    width: 16px;
    height: 16px;
  }

  .brand-img {
    width: 56px;
  }

  .footer-brand .brand-img {
    width: 104px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 54px;
  }

  .page-hero {
    padding-top: 148px;
    padding-bottom: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .hero-text .hero-actions {
    justify-content: center;
  }

  .hero-text .hero-copy {
    margin: 18px auto 0;
  }

  .hero-visual {
    display: none;
  }

  .hero-architecture {
    inset: 112px 14px 24px;
  }

  .hero-architecture::after {
    inset: 14% 7%;
  }

  .hero-architecture span:nth-child(3) {
    display: none;
  }

  h1 {
    font-size: clamp(2.3rem, 10.4vw, 3.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 1.03rem;
  }

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

  .stats-grid,
  .feature-grid,
  .pricing-grid,
  .demo-grid,
  .all-demos,
  .follow-grid,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 112px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading.split {
    display: grid;
    align-items: start;
  }

  .section-heading.centered {
    text-align: left;
    justify-items: start;
  }

  .feature-card,
  .demo-card {
    min-height: 0;
  }

  .card-icon {
    margin-bottom: 34px;
  }

  .demo-visual {
    min-height: 212px;
  }

  .price-card-full {
    padding: 28px 24px;
  }

  .price-card-full ul {
    grid-template-columns: 1fr;
  }

  .form-section,
  .price-card,
  .included-panel,
  .story-panel,
  .contact-panel,
  .legal-list article {
    padding: 24px;
  }

  .follow-button {
    min-height: 58px;
  }

  .cta-inner {
    padding: 58px 18px;
  }

  .footer-inner {
    padding: 44px 0;
  }

  .footer-nav {
    display: grid;
    gap: 14px;
  }

  .demo-frame-shell {
    width: 100vw;
  }

  .demo-close {
    top: 14px;
    right: 14px;
    width: 56px;
    height: 56px;
    font-size: 36px;
  }

  .demo-frame-header {
    height: 72px;
    padding: 0 82px 0 16px;
  }

  .demo-frame-shell iframe {
    height: calc(100% - 72px);
  }

  .consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
}

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