:root {
  --ink: #141821;
  --ink-soft: #3d4654;
  --muted: #6b7280;
  --line: rgba(20, 24, 33, 0.1);
  --paper: #f4f5f8;
  --white: #ffffff;
  --brand: #5b6fd6;
  --brand-deep: #3d2f6b;
  --brand-mid: #667eea;
  --accent: #2196f3;
  --accent-dark: #1976d2;
  --ok: #0f766e;
  --amber: #f59e0b;
  --radius: 12px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Source Sans 3", sans-serif;
  --shadow: 0 16px 40px rgba(28, 18, 60, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
  background: var(--paper);
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }

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

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-solid {
  /* opaque fallback; blur lives on ::before so it won't trap position:fixed nav */
  background: rgba(28, 18, 60, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 32px rgba(12, 8, 28, 0.35);
}
.site-header.is-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(28, 18, 60, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header:not(.is-solid) .brand-name,
.site-header:not(.is-solid) .nav > a:not(.nav-cta),
.site-header:not(.is-solid) .nav-links > a {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.site-header:not(.is-solid) .brand-slogan {
  color: rgba(255, 255, 255, 0.72);
}
.site-header:not(.is-solid) .nav > a:not(.nav-cta):hover,
.site-header:not(.is-solid) .nav-links > a:hover { color: #fff; }
.site-header:not(.is-solid) .lang-switch {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  color-scheme: dark;
}

.site-header.is-solid .brand-name { color: #fff; text-shadow: none; }
.site-header.is-solid .brand-slogan { color: rgba(255, 255, 255, 0.68); }
.site-header.is-solid .nav > a:not(.nav-cta),
.site-header.is-solid .nav-links > a {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: none;
}
.site-header.is-solid .nav > a:not(.nav-cta):hover,
.site-header.is-solid .nav > a.is-active,
.site-header.is-solid .nav-links > a:hover,
.site-header.is-solid .nav-links > a.is-active { color: #fff; }
.site-header.is-solid .lang-switch {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  color-scheme: dark;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand { text-decoration: none; color: inherit; }
.brand-lockup { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; gap: 0.1rem; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand-slogan {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  white-space: nowrap;
}
.brand-mark-img { border-radius: 7px; flex-shrink: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links {
  display: contents;
}
.nav > a,
.nav-links > a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.94rem;
}
.nav > a:hover,
.nav-links > a:hover { color: var(--accent-dark); }
.nav > a.is-active,
.nav-links > a.is-active { color: var(--accent); }
.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff !important;
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 2;
}
.site-header:not(.is-solid) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(12, 8, 28, 0.28);
}
.nav-toggle-bars {
  position: relative;
  width: 1.15rem;
  height: 0.9rem;
  display: inline-block;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars {
  background: currentColor;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle-bars {
  background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
}
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars::after { bottom: 0; }
.site-header.nav-open .nav-toggle-bars {
  background: none;
}
.site-header.nav-open .nav-toggle-bars::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bars::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.nav-backdrop {
  display: none;
}

.lang-switch {
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.lang-switch option { color: #1e2433; background: #fff; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dl { gap: 0.5rem; }
.btn-icon {
  flex-shrink: 0;
  display: block;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }
.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }

/* —— Hero (home only) —— */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.02); }
  to { transform: scale(1.06) translate3d(-1%, -0.6%, 0); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 18, 60, 0.2) 0%, rgba(28, 18, 60, 0.55) 42%, rgba(28, 18, 60, 0.9) 100%),
    linear-gradient(90deg, rgba(28, 18, 60, 0.5) 0%, transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 3.75rem;
  max-width: 38rem;
  color: #f8fafc;
  animation: heroIn 0.85s ease-out both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.brand-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  max-width: 20ch;
}
.hero-lead {
  color: rgba(248, 250, 252, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  max-width: min(34rem, 100%);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 7rem 0 2.5rem;
  background:
    radial-gradient(800px 360px at 10% 0%, rgba(102, 126, 234, 0.18), transparent 60%),
    linear-gradient(160deg, #2b2150 0%, #3d2f6b 45%, #4a3a7a 100%);
  color: #fff;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}
.page-hero p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

/* —— Bands —— */
.band { padding: 4.5rem 0; }
.band-light { background: var(--white); }
.band-soft { background: var(--paper); }
.band-brand {
  background: linear-gradient(145deg, #5b6fd6 0%, #6b4f9a 55%, #3d2f6b 100%);
  color: #fff;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.55rem;
}
.band-brand .section-kicker { color: #c7d2fe; }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.band-brand .section-lead { color: rgba(255, 255, 255, 0.88); }

/* —— Feature / value cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(28, 18, 60, 0.04);
}
.card h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card .price-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--brand-deep);
  margin: 0.55rem 0 0.35rem;
}
.card .price-tag span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.bullets { display: grid; gap: 0.65rem; margin-top: 1rem; }
.bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.shot-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #0f0a1a;
}
.shot-frame img { width: 100%; }

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  color: #92400e;
  font-weight: 700;
  font-size: 0.92rem;
}
.steps li { display: inline-flex; align-items: center; gap: 0.35rem; }
.steps li > span:first-child {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-size: 0.75rem;
}

.product-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.ai-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.ai-demo-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.ai-demo-media {
  margin: 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 1 / 1;
}
.ai-demo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ai-demo-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: center;
  min-width: 0;
}
.ai-demo-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.ai-demo-meta h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}
.ai-demo-meta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}
.ai-demo-note {
  margin-top: 0.25rem !important;
  padding-top: 0.45rem;
  border-top: 1px dashed var(--line);
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 0.86rem !important;
}

.tryon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.tryon-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.tryon-shot {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 3 / 4;
}
.tryon-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tryon-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 1;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tryon-arrow {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

/* —— Pricing —— */
.price-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.price-tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(28, 18, 60, 0.05);
}
.price-tier.is-featured {
  border-color: rgba(91, 111, 214, 0.55);
  box-shadow: 0 16px 40px rgba(91, 111, 214, 0.18);
  position: relative;
}
.price-tier .badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(91, 111, 214, 0.12);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.price-tier h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.price-tier .tier-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  min-height: 2.8em;
}
.price-amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-amount .currency { font-size: 1.1rem; margin-right: 0.15rem; }
.price-amount .free { color: var(--ok); }
.price-unit {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}
.tier-list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.tier-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 800;
}
.price-tier .btn { width: 100%; margin-top: auto; }

.cloud-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 28px rgba(28, 18, 60, 0.05);
  margin-bottom: 1.25rem;
}
.cloud-panel h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.priv-buy-note {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #92400e;
  font-weight: 600;
  font-size: 0.95rem;
}
.priv-config .fineprint {
  margin-top: 0.85rem;
}

.split-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.split-lists h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}
.tier-list-x li::before {
  content: "×";
  color: #b91c1c;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 0.85rem 1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}
.faq-list details p {
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.get-stack {
  display: grid;
  gap: 1.25rem;
}
.get-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin-top: 1rem;
}
.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: #fff;
}
.lead-full { grid-column: 1 / -1; }
.hp-field {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
#leadStatus { color: var(--ok); font-weight: 600; }
.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}
.contact-list li {
  display: grid;
  gap: 0.2rem;
}
.contact-list span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a,
.contact-list strong {
  font-weight: 700;
  color: var(--brand-deep);
  text-decoration: none;
}
.hidden { display: none !important; }
.meter-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.98rem;
}
.meter-table th,
.meter-table td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.meter-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.meter-table td strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.pack {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  background: var(--paper);
}
.pack h4 {
  font-family: var(--display);
  margin-bottom: 0.25rem;
}
.pack .pack-price {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-deep);
}
.pack p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.3rem; }

.compare-note {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(91, 111, 214, 0.08);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* —— CTA / get —— */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.guide-panel {
  background: #fff;
  border-radius: 14px;
  padding: 2.1rem 1.8rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.guide-panel h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 0.55rem;
}
.guide-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin: 1.25rem 0 1.4rem;
  color: var(--ink-soft);
}
.guide-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}
.guide-steps strong {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
}
.guide-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.85rem; }
.fineprint { color: var(--muted); font-size: 0.9rem; }
.band-brand .fineprint { color: rgba(255, 255, 255, 0.78); }
.guide-panel .btn-ghost,
.band-soft .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.page-body { padding: 2.5rem 0 4rem; }

/* —— Footer —— */
.site-footer-rich {
  background: #1c1433;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-slogan { color: rgba(255, 255, 255, 0.6); }
.footer-brand p {
  margin-top: 0.75rem;
  max-width: 28rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer-rich h4 {
  color: #a5b4fc;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-links { display: grid; gap: 0.45rem; }
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-copy { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .wrap {
    width: min(1120px, calc(100% - 1.5rem));
  }
  .brand-slogan {
    white-space: normal;
    max-width: 11rem;
  }
  .nav-toggle { display: inline-flex; }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(12, 8, 28, 0.45);
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .nav-backdrop[hidden] { display: none; }
  .nav.nav-drawer,
  body > .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    width: min(18.5rem, 86vw);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 4.5rem 1.15rem 1.5rem;
    background: #1b1630;
    box-shadow: -16px 0 40px rgba(8, 6, 20, 0.35);
    transform: translateX(105%);
    transition: transform 0.22s ease;
    overflow-y: auto;
  }
  .nav.nav-drawer.is-open,
  body > .nav.is-open { transform: translateX(0); }
  .site-header.nav-open {
    background: rgba(20, 16, 40, 0.96);
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.65rem;
  }
  .nav-links > a,
  .nav > a:not(.nav-cta) {
    display: block;
    padding: 0.85rem 0.75rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: none !important;
    font-size: 1.05rem;
  }
  .nav-links > a:hover,
  .nav-links > a.is-active,
  .nav > a:not(.nav-cta):hover,
  .nav > a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    margin-top: 0.25rem;
  }
  #langMount {
    margin-top: 0.85rem;
  }
  #langMount .lang-switch {
    width: 100%;
  }
  body.nav-lock { overflow: hidden; }

  .card-grid,
  .price-tier-grid,
  .pack-grid,
  .split-2,
  .split-lists,
  .product-strip,
  .ai-demo-grid,
  .tryon-grid,
  .get-grid,
  .guide-steps,
  .lead-form,
  .footer-grid { grid-template-columns: 1fr; }
  .ai-demo-card { grid-template-columns: 1fr; }
  .tryon-pair { grid-template-columns: 1fr; }
  .tryon-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .hero {
    min-height: auto;
    padding: 5.5rem 0 3rem;
  }
  .hero-copy { max-width: none; }
  .hero-actions .btn,
  .guide-actions .btn {
    width: 100%;
  }
  .page-hero {
    padding: 5.25rem 0 2rem;
  }
  .page-body { padding: 1.5rem 0 3rem; }
  .guide-panel {
    padding: 1.35rem 1.15rem;
  }
  .guide-actions { gap: 0.65rem; }
}

@media (max-width: 480px) {
  .brand-slogan { display: none; }
  .nav-toggle-label { display: none; }
  .hero h1,
  .page-hero h1 { font-size: clamp(1.55rem, 8vw, 2rem); }
}
