:root {
  --color-obsidian: #0a0a0f;
  --color-gold: #c9a24a;
  --color-crimson: #7a1e2c;
  --color-teal: #0f4c5c;
  --color-amethyst: #4b2e83;
  --color-surface: #12121a;
  --color-surface-elevated: #181822;
  --color-text: #e8e6ed;
  --color-text-muted: #9b96a8;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-highlight: rgba(201, 162, 74, 0.35);
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow-soft: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 24px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow-gold: 0 0 0 1px rgba(201, 162, 74, 0.2), 0 0 40px rgba(201, 162, 74, 0.12);
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 14px;
  --space-section-y-desktop: clamp(120px, 12vw, 160px);
  --space-section-y-mobile: clamp(64px, 14vw, 80px);
  --space-card: clamp(24px, 3vw, 32px);
  --transition-smooth: 0.35s ease;
  --tracking-tight: -0.015em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-obsidian);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(75, 46, 131, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(15, 76, 92, 0.2), transparent),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(122, 30, 44, 0.15), transparent);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-smooth), opacity var(--transition-smooth);
}

a:hover {
  color: #dfc06a;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--color-gold);
  color: var(--color-obsidian);
  border-radius: var(--radius-input);
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer__address {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.cookie-modal__lead {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.72);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.compliance-strip {
  background: linear-gradient(90deg, rgba(212, 168, 85, 0.12), rgba(80, 120, 140, 0.1));
  border-bottom: 1px solid var(--color-border);
}

.compliance-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
}

.compliance-strip p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.compliance-strip a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.compliance-strip a:hover {
  color: var(--color-text);
}

.price-legal {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  max-width: 36rem;
}

.studio-metrics__note {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  max-width: 42rem;
}

.reviews__disclaimer {
  margin-top: -0.25rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  font-size: 1.125rem;
  color: var(--color-text);
}

.brand span {
  color: var(--color-gold);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  justify-content: flex-end;
}

.nav__link {
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(10, 10, 15, 0.6));
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1002;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.burger:hover {
  border-color: var(--color-border-highlight);
  box-shadow: var(--shadow-glow-gold);
}

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold), #dfc06a);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, width 0.3s ease;
}

.burger.is-active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.is-active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

.section {
  padding: var(--space-section-y-mobile) 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: var(--space-section-y-desktop);
    padding-bottom: var(--space-section-y-desktop);
  }
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.section__lead {
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-stagger .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-stagger .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal-stagger .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.reveal-stagger .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

.reveal-stagger .reveal:nth-child(7) {
  transition-delay: 0.48s;
}

.reveal-stagger .reveal:nth-child(8) {
  transition-delay: 0.56s;
}

.reveal-drift.is-visible {
  animation: driftIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes driftIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero--aurora {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(201, 162, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 74, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: heroGridDrift 22s linear infinite;
  opacity: 0.65;
}

@keyframes heroGridDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(56px, 56px);
  }
}

.hero__bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noiseFlicker 8s steps(3) infinite;
}

@keyframes noiseFlicker {
  0%,
  100% {
    opacity: 0.06;
  }
  50% {
    opacity: 0.09;
  }
}

.hero__bg-bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  transition: transform 0.4s ease-out;
}

.hero__bg-bloom--1 {
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(75, 46, 131, 0.55), transparent 65%);
  animation: bloomPulse 10s ease-in-out infinite;
}

.hero__bg-bloom--2 {
  width: min(55vw, 320px);
  height: min(55vw, 320px);
  bottom: -8%;
  left: -12%;
  background: radial-gradient(circle, rgba(15, 76, 92, 0.4), transparent 62%);
  animation: bloomPulse 12s ease-in-out infinite 1.5s;
}

.hero__bg-bloom--3 {
  width: min(45vw, 240px);
  height: min(45vw, 240px);
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, rgba(122, 30, 44, 0.22), transparent 60%);
  animation: bloomPulse 14s ease-in-out infinite 0.8s;
}

@keyframes bloomPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero__bg-diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(201, 162, 74, 0.04) 42%,
    transparent 42.5%,
    transparent 58%,
    rgba(15, 76, 92, 0.06) 58.5%,
    transparent 100%
  );
  animation: diagonalSheen 14s ease-in-out infinite;
}

@keyframes diagonalSheen {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

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

.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: var(--space-section-y-mobile);
}

@media (min-width: 768px) {
  .hero {
    padding-bottom: var(--space-section-y-desktop);
  }
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .hero__layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem 3rem;
    align-items: start;
  }

  .hero__col-visual {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero__col-main {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.hero__col-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.hero__stage {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  border-radius: 24px;
}

.hero__stage-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 162, 74, 0.12);
  transition: transform 0.35s ease-out;
  animation: heroStageFloat 5.5s ease-in-out infinite;
}

@keyframes heroStageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: rgba(10, 10, 15, 0.45);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero__trust-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(201, 162, 74, 0.12), transparent);
  background-size: 200% 100%;
  animation: trustBeam 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__trust-row .stars,
.hero__trust-row .badge-pill {
  position: relative;
  z-index: 1;
}

@keyframes trustBeam {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.stars--hero svg {
  animation: starGlow 2.2s ease-in-out infinite;
}

.stars--hero svg:nth-child(1) {
  animation-delay: 0s;
}

.stars--hero svg:nth-child(2) {
  animation-delay: 0.1s;
}

.stars--hero svg:nth-child(3) {
  animation-delay: 0.2s;
}

.stars--hero svg:nth-child(4) {
  animation-delay: 0.3s;
}

.stars--hero svg:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes starGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

.badge-pill--pulse {
  position: relative;
  z-index: 1;
  animation: badgeFloat 3.2s ease-in-out infinite;
}

.badge-pill--pulse:nth-of-type(1) {
  animation-delay: 0s;
}

.badge-pill--pulse:nth-of-type(2) {
  animation-delay: 0.35s;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-teal);
}

.hero__eyebrow-track {
  flex: 0 0 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform-origin: left;
  transform: scaleX(0);
}

.hero--motion-ready .hero__eyebrow-track {
  animation: eyebrowExtend 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes eyebrowExtend {
  to {
    transform: scaleX(1);
  }
}

.hero__eyebrow-text {
  animation: textShimmer 5s ease-in-out infinite;
}

@keyframes textShimmer {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  line-height: 1.06;
  margin: 0;
  color: var(--color-text);
}

.hero__title-accent {
  background: linear-gradient(120deg, var(--color-gold), #f0d78c, var(--color-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accentShimmer 4s linear infinite;
  padding-right: 0.15em;
}

@keyframes accentShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero__title-rest {
  color: var(--color-text);
}

.hero__animate {
  opacity: 0;
  transform: translateY(1.35rem);
}

.hero--motion-ready .hero__animate {
  animation: heroRise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__highlights--rise li svg {
  animation: tickPop 2.5s ease-in-out infinite;
}

.hero__highlights--rise li:nth-child(1) svg {
  animation-delay: 0s;
}

.hero__highlights--rise li:nth-child(2) svg {
  animation-delay: 0.25s;
}

.hero__highlights--rise li:nth-child(3) svg {
  animation-delay: 0.5s;
}

@keyframes tickPop {
  0%,
  100% {
    transform: scale(1);
    stroke-opacity: 1;
  }
  50% {
    transform: scale(1.08);
    stroke-opacity: 0.85;
  }
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: var(--color-gold);
}

.stars svg {
  width: 18px;
  height: 18px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.badge-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.25;
}

.hero__desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 520px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-row__current {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-gold);
}

.price-row__old {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.hero__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.hero__highlights svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.25;
}

.hero__form-card {
  width: 100%;
  margin-top: 0.35rem;
}

.card-surface {
  background: linear-gradient(145deg, rgba(24, 24, 34, 0.92), rgba(18, 18, 26, 0.88));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-card);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card-surface:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-highlight);
  box-shadow: var(--shadow-soft), var(--shadow-glow-gold);
}

.form-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  letter-spacing: var(--tracking-tight);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1.35rem 1rem 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  background: rgba(10, 10, 15, 0.65);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-border-highlight);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.12);
  outline: none;
}

.form-field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease, top 0.25s ease;
}

.form-field--textarea label {
  top: 1.25rem;
  transform: none;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 0.55rem;
  transform: translateY(0);
  font-size: 0.75rem;
  color: var(--color-gold);
}

.form-field--textarea textarea:focus + label,
.form-field--textarea textarea:not(:placeholder-shown) + label {
  top: 0.5rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  opacity: 0;
}

.form-field .error-msg {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #e87888;
  min-height: 1.1em;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--color-gold);
}

.checkbox-field label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.checkbox-field a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), #a6853a);
  color: var(--color-obsidian);
}

.btn--primary:hover {
  transform: scale(1.03);
  filter: brightness(1.06);
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--ghost:hover {
  transform: scale(1.03);
  border-color: var(--color-border-highlight);
  background: rgba(255, 255, 255, 0.04);
}

.section--studio {
  position: relative;
}

.studio {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(155deg, rgba(24, 24, 34, 0.95), rgba(10, 10, 15, 0.92));
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 2rem);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.studio__mesh {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 162, 74, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(75, 46, 131, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(15, 76, 92, 0.08) 0%, transparent 50%);
  animation: meshShift 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes meshShift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(2%, -2%) rotate(3deg);
  }
}

.studio__tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.studio__tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(10, 10, 15, 0.5);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth), transform 0.25s ease;
}

.studio__tab:hover {
  color: var(--color-text);
  border-color: var(--color-border-highlight);
  transform: translateY(-2px);
}

.studio__tab.is-active {
  color: var(--color-obsidian);
  background: linear-gradient(135deg, var(--color-gold), #a6853a);
  border-color: transparent;
}

.studio__panels {
  position: relative;
  z-index: 1;
  min-height: 12rem;
}

.studio__panel {
  display: none;
  animation: panelFade 0.45s ease forwards;
}

.studio__panel.is-active {
  display: block;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.studio__panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.studio__glyph {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.studio__panel h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: var(--tracking-tight);
}

.studio__panel p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.studio__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.studio__list li {
  margin-bottom: 0.5rem;
}

.studio-metrics {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .studio-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

.studio-metrics__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.studio-metrics__item:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-highlight);
  box-shadow: var(--shadow-glow-gold);
}

.count-up {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--color-gold);
  line-height: 1.1;
}

.studio-metrics__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.studio__flips-lead {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin: 0 0 1rem;
}

.flip-grid {
  display: grid;
  gap: 1rem;
  perspective: 1200px;
}

@media (min-width: 700px) {
  .flip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flip-card {
  min-height: 108px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-card);
  -webkit-tap-highlight-color: transparent;
}

.flip-card:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  min-height: 108px;
  border-radius: var(--radius-card);
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.1rem;
  border-radius: inherit;
  font-size: 0.9rem;
  line-height: 1.45;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-card__face--front {
  background: linear-gradient(160deg, rgba(24, 24, 34, 0.95), rgba(18, 18, 26, 0.9));
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
}

.flip-card__face--back {
  background: linear-gradient(160deg, rgba(15, 76, 92, 0.35), rgba(10, 10, 15, 0.95));
  color: var(--color-text-muted);
  transform: rotateY(180deg);
  border: 1px solid var(--color-border-highlight);
}

.review-preview {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .review-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .review-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-highlight);
}

.review-card p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
}

.bento {
  display: grid;
  gap: var(--space-card);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }

  .bento__item--wide {
    grid-column: span 2;
  }

  .bento__item--tall {
    grid-row: span 2;
  }

  .bento__item--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.bento__item {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, rgba(24, 24, 34, 0.85), rgba(10, 10, 15, 0.9));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.bento__item:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-highlight);
  box-shadow: var(--shadow-glow-gold);
}

.bento__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.bento__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.bento__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.25;
}

.overview__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .overview__layout {
    grid-template-columns: 1fr 1fr;
  }
}

.overview__text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.overview__text p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.overview__figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.overview__icon-wrap {
  background:
    radial-gradient(ellipse 70% 55% at 30% 20%, rgba(201, 162, 74, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(15, 76, 92, 0.22), transparent 52%),
    linear-gradient(165deg, rgba(24, 24, 34, 0.9), rgba(10, 10, 15, 0.95));
}

.overview__icon-panel {
  position: relative;
  min-height: clamp(240px, 48vw, 400px);
  display: grid;
  place-items: center;
  padding: 2.25rem 1.5rem;
}

.overview__fi {
  grid-area: 1 / 1;
  line-height: 1;
  font-style: normal;
}

.overview__fi--1 {
  font-size: clamp(3.75rem, 12vw, 5.5rem);
  color: var(--color-gold);
  transform: translate(-38%, -32%) rotate(-14deg);
  animation: overviewIconA 7s ease-in-out infinite;
  opacity: 0.92;
}

.overview__fi--2 {
  font-size: clamp(2.75rem, 9vw, 4rem);
  color: rgba(122, 30, 44, 0.55);
  transform: translate(42%, -22%);
  animation: overviewIconB 8s ease-in-out infinite 0.4s;
}

.overview__fi--3 {
  font-size: clamp(4.25rem, 13vw, 6rem);
  color: var(--color-teal);
  transform: translate(8%, 18%);
  animation: overviewIconC 6.5s ease-in-out infinite 0.2s;
  opacity: 0.85;
}

.overview__fi--4 {
  font-size: clamp(2.8rem, 9vw, 4rem);
  color: rgba(201, 162, 74, 0.45);
  transform: translate(-48%, 38%) rotate(18deg);
  animation: overviewIconLeaf2 9s ease-in-out infinite 0.8s;
}

.overview__fi--5 {
  font-size: clamp(2rem, 6vw, 2.75rem);
  color: rgba(75, 46, 131, 0.52);
  transform: translate(36%, 42%);
  animation: overviewIconDrop 7.5s ease-in-out infinite 1s;
}

@keyframes overviewIconA {
  0%,
  100% {
    transform: translate(-38%, -32%) rotate(-14deg) scale(1);
  }
  50% {
    transform: translate(-34%, -28%) rotate(-10deg) scale(1.05);
  }
}

@keyframes overviewIconB {
  0%,
  100% {
    transform: translate(42%, -22%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(38%, -26%) scale(1.08);
    opacity: 0.88;
  }
}

@keyframes overviewIconC {
  0%,
  100% {
    transform: translate(8%, 18%) rotate(0deg);
  }
  50% {
    transform: translate(4%, 14%) rotate(-6deg) scale(1.04);
  }
}

@keyframes overviewIconLeaf2 {
  0%,
  100% {
    transform: translate(-48%, 38%) rotate(18deg) scale(1);
  }
  50% {
    transform: translate(-44%, 34%) rotate(14deg) scale(1.06);
  }
}

@keyframes overviewIconDrop {
  0%,
  100% {
    transform: translate(36%, 42%) scale(1);
    opacity: 0.92;
  }
  50% {
    transform: translate(32%, 38%) scale(1.12);
    opacity: 1;
  }
}

.spec-bento {
  display: grid;
  gap: var(--space-card);
}

@media (min-width: 768px) {
  .spec-bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spec-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(18, 18, 26, 0.85);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-highlight);
}

@media (min-width: 768px) {
  .spec-card--wide {
    grid-column: span 3;
  }
}

.spec-card dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin: 0 0 0.35rem;
}

.spec-card dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.spec-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.25;
}

.spec-row div strong {
  display: block;
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: 0.9375rem;
}

.spec-row div span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.steps {
  display: grid;
  gap: var(--space-card);
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(24, 24, 34, 0.55);
  text-align: center;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-highlight);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--color-border-highlight);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-gold);
}

.step-card svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.75rem;
  stroke: var(--color-amethyst);
  fill: none;
  stroke-width: 1.25;
}

.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  letter-spacing: var(--tracking-tight);
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.ingredient-grid {
  display: grid;
  gap: var(--space-card);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .ingredient-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ingredient-card {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-highlight);
}

.ingredient-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-gold);
}

.ingredient-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.instructions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.instructions__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
}

.instructions__list .num {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--color-crimson);
  font-size: 1.125rem;
}

.instructions__list .body svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.25;
  margin-bottom: 0.35rem;
}

.instructions__list .body strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.instructions__list .body span {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.reviews-grid {
  display: grid;
  gap: var(--space-card);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
  overflow: hidden;
  transition: border-color var(--transition-smooth);
}

.faq-item.is-open {
  border-color: var(--color-border-highlight);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: var(--tracking-tight);
}

.faq-item button svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.25;
  transition: transform var(--transition-smooth);
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.is-open .faq-panel {
  padding: 0 1.25rem 1.15rem;
  max-height: 480px;
}

.faq-panel p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.final-cta {
  text-align: center;
  padding: var(--space-section-y-mobile) 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(75, 46, 131, 0.2), rgba(10, 10, 15, 0.95));
}

@media (min-width: 768px) {
  .final-cta {
    padding: var(--space-section-y-desktop) 2rem;
  }
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}

.final-cta p {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.disclaimer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.25);
}

.disclaimer__inner {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.disclaimer__inner p {
  margin: 0 0 0.75rem;
}

.footer {
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  position: relative;
}

.footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__links a:hover::after {
  transform: scaleX(1);
}

.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__box {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__panel {
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
}

.cookie-modal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-toggle-row span {
  font-size: 0.9375rem;
}

.cookie-toggle-row small {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background var(--transition-smooth);
}

.switch__slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 2px;
  background: var(--color-text-muted);
  border-radius: 50%;
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.switch input:checked + .switch__slider {
  background: rgba(201, 162, 74, 0.25);
  border-color: var(--color-border-highlight);
}

.switch input:checked + .switch__slider::before {
  transform: translateX(20px);
  background: var(--color-gold);
}

.switch input:disabled + .switch__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.switch input:disabled + .switch__slider::before {
  background: var(--color-gold);
  transform: translateX(20px);
}

.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.legal-page-body main {
  overflow-x: hidden;
}

.legal-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.legal-hero {
  position: relative;
  margin: 0 -1.5rem 2.5rem;
  padding: clamp(2.5rem, 8vw, 4.5rem) 1.5rem clamp(2rem, 5vw, 3rem);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: none;
  background:
    radial-gradient(ellipse 100% 80% at 20% -20%, rgba(201, 162, 74, 0.2), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(75, 46, 131, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(18, 18, 26, 0.98), rgba(10, 10, 15, 0.99));
}

@media (min-width: 768px) {
  .legal-hero {
    margin: 0 0 3rem;
    border-radius: var(--radius-card);
    border-top: 1px solid var(--color-border);
  }

  .legal-shell {
    padding: 2rem 2rem 4.5rem;
  }
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(201, 162, 74, 0.06) 50%, transparent 60%);
  animation: legalShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes legalShine {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-20%);
  }
  50% {
    opacity: 0.85;
    transform: translateX(20%);
  }
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.08;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.legal-hero__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
  max-width: 40rem;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-gold);
}

.legal-hero__meta time {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-highlight);
  background: rgba(10, 10, 15, 0.45);
}

.legal-hero__badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.legal-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .legal-layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.legal-toc {
  position: sticky;
  top: 5.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(24, 24, 34, 0.65);
  backdrop-filter: blur(12px);
}

.legal-toc strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  margin-bottom: 0.85rem;
}

.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-toc a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  transition: color var(--transition-smooth), border-color var(--transition-smooth), padding-left var(--transition-smooth);
}

.legal-toc a:hover {
  color: var(--color-gold);
  padding-left: 0.35rem;
  border-bottom-color: var(--color-border-highlight);
}

.legal-prose {
  min-width: 0;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 2.5rem 0 0.85rem;
  letter-spacing: var(--tracking-tight);
  scroll-margin-top: 6rem;
  color: var(--color-text);
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p,
.legal-prose li {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.7;
  font-size: 1.02rem;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.legal-callout {
  margin: 1.75rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--color-gold);
  background: rgba(201, 162, 74, 0.08);
  border: 1px solid var(--color-border);
  border-left-width: 4px;
}

.legal-callout p {
  margin: 0;
  font-size: 0.95rem;
}

.legal-grid-2 {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .legal-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-mini-card {
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

.legal-mini-card:hover {
  border-color: var(--color-border-highlight);
  transform: translateY(-3px);
}

.legal-mini-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
  color: var(--color-text);
}

.legal-mini-card p {
  margin: 0;
  font-size: 0.85rem;
}

.page-legal {
  padding: 0;
  max-width: none;
  margin: 0;
}

.thankyou-page main {
  overflow-x: hidden;
}

.thankyou {
  min-height: 75vh;
  padding: clamp(2rem, 6vw, 4rem) 1.5rem 4rem;
}

.thankyou__layout {
  max-width: 900px;
  margin: 0 auto;
}

.thankyou__hero {
  position: relative;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 74, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(24, 24, 34, 0.98), rgba(10, 10, 15, 0.98));
  margin-bottom: 2rem;
  overflow: hidden;
}

.thankyou__hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(75, 46, 131, 0.12), transparent 40%);
  animation: tyRotate 20s linear infinite;
  pointer-events: none;
}

@keyframes tyRotate {
  to {
    transform: rotate(360deg);
  }
}

.thankyou__hero-inner {
  position: relative;
  z-index: 1;
}

.thankyou__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1px solid var(--color-border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  animation: tyPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes tyPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thankyou__hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.thankyou__hero p {
  color: var(--color-text-muted);
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  line-height: 1.65;
}

.thankyou__date-strip {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.thankyou__section-legal {
  margin-top: 0.5rem;
}

.thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.thankyou__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface-elevated);
}

.thankyou__timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.thankyou__timeline li:last-child {
  border-bottom: none;
}

.thankyou__step-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-gold);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--color-border-highlight);
  flex-shrink: 0;
}

.thankyou__timeline strong {
  display: block;
  font-family: var(--font-display);
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.thankyou__timeline span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .burger {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    padding: 5.75rem 1.75rem 2rem;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex-wrap: nowrap;
    background:
      radial-gradient(ellipse 120% 80% at 80% 0%, rgba(75, 46, 131, 0.45), transparent 55%),
      radial-gradient(ellipse 90% 60% at 0% 100%, rgba(15, 76, 92, 0.35), transparent 50%),
      rgba(10, 10, 15, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: none;
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1001;
    max-height: 100vh;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
    height: 100vh;
  }

  .nav__link {
    font-size: clamp(1.2rem, 4.5vw, 1.45rem);
    font-weight: 600;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
  }

  .nav__link::after {
    display: none;
  }

  .nav__link:hover {
    color: var(--color-gold);
    padding-left: 0.35rem;
  }
}

@media (max-width: 359px) {
  body {
    font-size: 1rem;
  }

  .header__inner {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    gap: 0.65rem;
  }

  .brand {
    font-size: 0.88rem;
    line-height: 1.25;
    max-width: min(58vw, 200px);
  }

  .burger {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .burger__line {
    width: 20px;
  }

  .section {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    padding-top: clamp(48px, 12vw, 72px);
    padding-bottom: clamp(48px, 12vw, 72px);
  }

  .section__title {
    font-size: 1.55rem;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .section__lead {
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero__title {
    font-size: 1.55rem;
  }

  .hero__desc {
    font-size: 0.98rem;
  }

  .price-row__current {
    font-size: 1.65rem;
  }

  .price-row__old {
    font-size: 1rem;
  }

  .hero__trust-row {
    gap: 0.65rem;
  }

  .badge-pill {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }

  .stars svg {
    width: 15px;
    height: 15px;
  }

  .studio__tab {
    font-size: 0.78rem;
    padding: 0.55rem 0.85rem;
  }

  .form-card__title {
    font-size: 1.1rem;
  }

  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .thankyou__actions .btn {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }

  .cookie-banner__box {
    padding: 1rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .legal-shell {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .legal-hero {
    margin-left: -0.65rem;
    margin-right: -0.65rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .legal-hero h1 {
    font-size: 1.5rem;
  }

  .legal-prose h2 {
    font-size: 1.15rem;
  }

  .legal-prose p,
  .legal-prose li {
    font-size: 0.94rem;
  }

  .legal-toc {
    position: static;
  }

  .final-cta .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-drift.is-visible,
  .hero__stage-img,
  .hero__bg-grid,
  .hero__bg-noise,
  .hero__bg-bloom,
  .hero__bg-diagonal,
  .stars--hero svg,
  .badge-pill--pulse,
  .hero__title-accent,
  .hero__eyebrow-track,
  .hero__eyebrow-text,
  .hero__highlights--rise li svg,
  .overview__fi--1,
  .overview__fi--2,
  .overview__fi--3,
  .overview__fi--4,
  .overview__fi--5,
  .studio__mesh,
  .studio__panel,
  .legal-hero::after,
  .thankyou__hero::before,
  .thankyou__icon {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .flip-card__inner {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .hero--motion-ready .hero__animate {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__trust-row::before {
    animation: none !important;
  }

  .overview__fi--1 {
    transform: translate(-38%, -32%) rotate(-14deg);
  }

  .overview__fi--2 {
    transform: translate(42%, -22%);
  }

  .overview__fi--3 {
    transform: translate(8%, 18%);
  }

  .overview__fi--4 {
    transform: translate(-48%, 38%) rotate(18deg);
  }

  .overview__fi--5 {
    transform: translate(36%, 42%);
  }
}
