/* BELMAIR LAB — site styles
   Swiss-minimalist dark mode. Black canvas, white type, hairline structure. */

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --panel: #101214;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.74);
  --muted: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.3);
  --pad: clamp(20px, 4.2vw, 64px);
  --maxw: 1600px;
  --gap: clamp(16px, 2vw, 32px);
  --header-h: 76px;
  --font: 'Hanken Grotesk', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: #000;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

[hidden] { display: none !important; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
::selection { background: #fff; color: #000; }

.skip {
  position: absolute; left: var(--pad); top: -100px; z-index: 100;
  background: #fff; color: #000; padding: 10px 16px;
}
.skip:focus { top: 12px; }

/* Smooth scroll (Lenis) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Page frame: quiet vertical hairlines behind the content */
.frame { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.frame::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: calc(min(100vw, var(--maxw)) - 2 * var(--pad));
  transform: translateX(-50%);
  background: repeating-linear-gradient(to right,
    rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px,
    transparent 1px, transparent 25%);
  border-right: 1px solid rgba(255, 255, 255, 0.055);
}
main, .site-footer { position: relative; z-index: 1; }
main { overflow-x: clip; }

/* Layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.g {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: clamp(28px, 4vw, 64px);
}
.c-3 { grid-column: span 3; } .c-4 { grid-column: span 4; } .c-5 { grid-column: span 5; }
.c-6 { grid-column: span 6; } .c-7 { grid-column: span 7; } .c-8 { grid-column: span 8; }
.c-12 { grid-column: 1 / -1; }
.s-5 { grid-column: 5 / span 8; } .s-6 { grid-column: 6 / span 7; } .s-9 { grid-column: 9 / span 4; }

.section {
  position: relative;
  padding-block: clamp(88px, 12vw, 176px);
  border-top: 1px solid var(--line);
}
.section--tight { padding-block: clamp(64px, 8vw, 120px); }

/* Type */
h1, h2, h3 { color: #fff; font-weight: 300; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 4.25rem); line-height: 1.02; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.15; letter-spacing: -0.02em; font-weight: 400; }
p { max-width: 64ch; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.5; color: var(--text); max-width: 46ch; }
.small { font-size: 0.9rem; line-height: 1.5; }
.muted { color: var(--muted); }
.statement {
  color: #fff; font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1.04; letter-spacing: -0.035em; max-width: 20ch;
}
.link {
  color: #fff; border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px; transition: border-color 0.3s;
}
.link:hover { border-color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 32px;
  border: 1px solid #fff; background: #fff; color: #000;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em; white-space: nowrap;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn:hover { background: transparent; color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: var(--line-strong); }
.btn--ghost:hover { background: #fff; color: #000; border-color: #fff; }
.btn--sm { min-height: 42px; padding: 0 22px; font-size: 0.88rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease;
}
.site-header.is-solid {
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  border-color: var(--line);
}
.header-inner {
  height: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
  display: flex; align-items: center; gap: clamp(16px, 3vw, 48px);
}
.brand { display: flex; align-items: center; height: 100%; flex: 0 0 auto; }
.brand img { height: 38px; width: auto; }
.wordmark { color: #fff; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.16em; }
.nav { display: flex; gap: clamp(18px, 2.4vw, 40px); margin-left: auto; font-size: 0.9rem; }
.nav a { color: var(--text); transition: color 0.3s; }
.nav a:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 22px; }
.avail { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text); white-space: nowrap; }
.avail i { width: 6px; height: 6px; border-radius: 50%; background: #fff; flex: 0 0 auto; }
.avail.is-full i { background: transparent; box-shadow: inset 0 0 0 1px #fff; }
.menu-btn { display: none; font-size: 0.9rem; color: #fff; padding: 10px 0; margin-left: auto; }

.menu {
  position: fixed; inset: 0; z-index: 40; background: #000;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: calc(var(--header-h) + 12px) var(--pad) 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.menu-open .menu { opacity: 1; visibility: visible; }
.menu a { font-size: clamp(2rem, 9vw, 3rem); font-weight: 300; letter-spacing: -0.03em; color: #fff; padding: 6px 0; }
.menu .avail { margin-top: 28px; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: #000;
}
.hero-media { position: absolute; inset: -4% 0; will-change: transform; }
.hero-media video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-media video.is-ready { opacity: 1; }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.12) 36%, rgba(0, 0, 0, 0.8) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: calc(var(--header-h) + 48px);
}
.hero-title {
  font-size: clamp(2.5rem, 6.6vw, 7rem);
  line-height: 0.98; letter-spacing: -0.045em; font-weight: 300;
}
.hero-title .line { display: block; }
.hero-sub {
  margin-top: clamp(22px, 2.8vw, 40px);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.5;
  color: rgba(255, 255, 255, 0.84); max-width: 50ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3vw, 44px); }
.metrics {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(44px, 8vh, 96px);
  border-top: 1px solid var(--line-strong);
}
.metrics li { padding: clamp(16px, 2.2vw, 30px) clamp(12px, 2vw, 32px); border-left: 1px solid var(--line); }
.metrics li:first-child { border-left: 0; padding-left: 0; }
.metrics b {
  display: block; font-weight: 300; color: #fff; line-height: 1;
  font-size: clamp(1.7rem, 3.4vw, 3rem); letter-spacing: -0.04em;
}
.metrics span { display: block; margin-top: 10px; font-size: clamp(0.72rem, 0.95vw, 0.92rem); line-height: 1.3; color: var(--text); }

/* Hero load sequence (one orchestrated moment) */
.js .hero-title .line { overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.js .hero-title .line > span { display: block; transform: translate3d(0, 108%, 0); }
.js .hero-fade { opacity: 0; transform: translate3d(0, 14px, 0); }
.js.hero-ready .hero-title .line > span {
  transform: none;
  transition: transform 1.5s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.14s + 0.1s);
}
.js.hero-ready .hero-fade {
  opacity: 1; transform: none;
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
  transition-delay: var(--d, 0.5s);
}

/* Intro */
.lists { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--gap); }
.list-head { padding-bottom: 18px; color: #fff; font-size: 1rem; border-bottom: 1px solid var(--line-strong); }
.rows li { padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--text); }

/* Showcase */
.showcase-grid { align-items: start; }
.stack { position: relative; width: 100%; aspect-ratio: 1 / 1.25; --p: 0; }
.stack figure {
  position: absolute; left: 0; top: 0; width: 84%; aspect-ratio: 4 / 3;
  background: var(--panel); border: 1px solid var(--line); overflow: hidden; will-change: transform;
}
.stack figure img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.9s ease; }
.stack figure img.is-ready { opacity: 1; }
.stack figure:nth-child(1) { z-index: 1; transform: translate3d(calc(var(--p) * -4%), calc(var(--p) * -5%), 0) rotate(calc(-1.5deg - var(--p) * 1.5deg)); }
.stack figure:nth-child(2) { z-index: 2; left: 8%; top: 24%; transform: rotate(calc(var(--p) * 0.4deg)); }
.stack figure:nth-child(3) { z-index: 3; left: 16%; top: 48%; transform: translate3d(calc(var(--p) * 4%), calc(var(--p) * 5%), 0) rotate(calc(1.5deg + var(--p) * 1.5deg)); }
.stack-cap, .tour-cap {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 14px; font-size: 0.85rem; color: var(--muted);
}
.tour-frame { position: relative; aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line); overflow: hidden; }
.tour-frame video { width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.9s ease; }
.tour-frame video.is-ready { opacity: 1; }
.play {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: #fff; background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  transition: opacity 0.5s ease;
}
.play.is-gone { opacity: 0; pointer-events: none; }
.play-ring {
  width: clamp(68px, 7vw, 92px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7); display: grid; place-items: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.5s var(--ease);
}
.play:hover .play-ring { background: #fff; color: #000; transform: scale(1.06); }
.play svg { margin-left: 3px; }
.play-label { font-size: 0.9rem; }

/* Formats + figures */
.fig { position: relative; background: var(--panel); border: 1px solid var(--line); aspect-ratio: 16 / 10; overflow: hidden; }
.fig.is-loaded { aspect-ratio: auto; background: none; border-color: transparent; }
.fig img { width: 100%; height: auto; opacity: 0; transition: opacity 0.9s ease; }
.fig img.is-ready { opacity: 1; }

/* Scene edits */
.scene { padding-block: clamp(28px, 4vw, 56px); border-top: 1px solid var(--line); align-items: start; }
.scenes { margin-top: clamp(40px, 6vw, 88px); }
.scenes .scene:last-child { border-bottom: 1px solid var(--line); }
.scene h3 { margin-bottom: 14px; }
.split { position: relative; aspect-ratio: 16 / 9; background: var(--panel); border: 1px solid var(--line); overflow: hidden; }
.split.is-loaded { aspect-ratio: auto; }
.split img { width: 100%; height: auto; opacity: 0; transition: opacity 0.9s ease; }
.split img.is-ready { opacity: 1; }
.tags {
  position: absolute; left: 0; right: 0; bottom: 0; pointer-events: none;
  display: flex; justify-content: space-between; padding: clamp(10px, 1.6vw, 20px); font-size: 0.82rem;
}
.tags span {
  background: rgba(0, 0, 0, 0.55); color: #fff; padding: 6px 12px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.tags--3 { display: grid; grid-template-columns: repeat(3, 1fr); padding-inline: 0; }
.tags--3 span { justify-self: center; }
.split:not(.is-loaded) .tags { display: none; }
.js .wipe { clip-path: inset(0 100% 0 0); transition: clip-path 1.7s cubic-bezier(0.7, 0, 0.2, 1); }
.js .wipe.is-in { clip-path: inset(0 0 0 0); }

/* Audience + process */
.trio, .steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); }
.trio > div, .steps > li { padding: 28px clamp(16px, 2.4vw, 40px) 0 0; }
.trio > div + div, .steps > li + li { padding-left: clamp(16px, 2.4vw, 40px); border-left: 1px solid var(--line); }
.trio h3, .steps h3 { margin-bottom: 14px; }
.steps .n {
  display: block; margin-bottom: clamp(24px, 4vw, 64px);
  font-size: clamp(3rem, 6vw, 6rem); font-weight: 200; letter-spacing: -0.05em; line-height: 1; color: #fff;
}
.steps-note { margin-top: clamp(28px, 4vw, 56px); }

/* Order */
.cap { display: grid; gap: 3px; margin-top: 22px; max-width: 520px; }
.cap i { height: 26px; border: 1px solid var(--line-strong); }
.cap i.on { background: #fff; border-color: #fff; }
.cap-text { margin-top: 14px; color: #fff; }
.cap-sub { margin-top: 6px; }
.panel { background: var(--panel); border: 1px solid var(--line); }
.order-card { padding: clamp(22px, 3vw, 44px); }
.order-top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.price { color: #fff; font-weight: 300; font-size: clamp(2.6rem, 4.2vw, 3.8rem); letter-spacing: -0.045em; line-height: 1; }
.card-label { color: #fff; margin-bottom: 4px; }
.incl { margin-top: 8px; }
.incl li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.incl li::before { content: ''; flex: 0 0 6px; height: 6px; margin-top: 0.65em; background: #fff; }
.addons { margin-top: 28px; }
.addons h4 { color: #fff; font-weight: 400; font-size: 1rem; padding-bottom: 10px; border-bottom: 1px solid var(--line-strong); }
.addons li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.addons li span:last-child { color: var(--muted); text-align: right; }
.code { margin-top: 28px; }
.code label { display: block; color: #fff; margin-bottom: 10px; font-size: 0.95rem; }
.code-row { display: flex; }
.code input {
  flex: 1; min-width: 0; height: 46px; padding: 0 16px; font: inherit; color: #fff;
  background: transparent; border: 1px solid var(--line-strong); border-radius: 0;
}
.code input::placeholder { color: var(--muted); }
.code input:focus { outline: none; border-color: #fff; }
.code .btn { margin-left: -1px; }
.code-msg { min-height: 1.5em; margin-top: 10px; font-size: 0.88rem; color: var(--text); }
.order-cta { margin-top: 26px; }
.fine { margin-top: 16px; font-size: 0.85rem; color: var(--muted); }

/* FAQ */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px;
  padding: 26px 0; color: #fff; font-size: clamp(1.1rem, 1.6vw, 1.4rem); letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: 0 0 14px; height: 14px; margin-top: 0.4em;
  background:
    linear-gradient(#fff, #fff) center / 100% 1px no-repeat,
    linear-gradient(#fff, #fff) center / 1px 100% no-repeat;
  transition: transform 0.45s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-a { overflow: hidden; }
.faq-a p { padding-bottom: 28px; max-width: 62ch; }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); border-top: 1px solid var(--line-strong); }
.quotes blockquote { padding: 28px clamp(16px, 2.4vw, 40px) 0 0; }
.quotes blockquote + blockquote { padding-left: clamp(16px, 2.4vw, 40px); border-left: 1px solid var(--line); }
.quotes p { color: #fff; font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.35; letter-spacing: -0.015em; }
.quotes footer { margin-top: 18px; font-size: 0.88rem; color: var(--muted); }

/* Closing + footer */
.cta-band { text-align: left; }
.cta-band .statement { max-width: 16ch; }
.cta-band .btn { margin-top: clamp(28px, 4vw, 48px); }
.contact-line { margin-top: 28px; color: var(--text); }
.contact-line a { color: #fff; border-bottom: 1px solid var(--line-strong); }
.site-footer { border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 96px) 0 36px; }
.foot-grid { row-gap: 40px; }
.foot-brand img { height: 48px; width: auto; }
.foot-links li { padding: 5px 0; }
.foot-links a { color: var(--text); transition: color 0.3s; }
.foot-links a:hover { color: #fff; }
.foot-head { color: #fff; margin-bottom: 10px; font-size: 0.95rem; }
.legal-line {
  margin-top: clamp(40px, 6vw, 80px); padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; font-size: 0.84rem; color: var(--muted);
}

/* Dialog */
dialog.modal {
  padding: 0; border: 1px solid var(--line-strong); background: var(--ink); color: var(--text);
  width: min(680px, calc(100vw - 32px)); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow: auto;
}
dialog.modal::backdrop { background: rgba(0, 0, 0, 0.74); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal-inner { padding: clamp(22px, 3vw, 40px); }
.modal-head { display: flex; justify-content: space-between; align-items: start; gap: 16px; margin-bottom: 14px; }
.modal-head h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 300; }
.modal-x { color: #fff; font-size: 0.9rem; padding: 6px 0; }
.modal iframe { width: 100%; height: min(62vh, 620px); border: 0; margin-top: 18px; background: transparent; }

/* Inner pages */
.page-top { padding-top: calc(var(--header-h) + clamp(56px, 8vw, 120px)); padding-bottom: clamp(28px, 4vw, 56px); }
.page-top h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); line-height: 1; }
.page-top .lede { margin-top: 22px; }
.prose { max-width: 72ch; padding-bottom: clamp(72px, 10vw, 140px); }
.prose h2 { font-size: 1.5rem; font-weight: 400; letter-spacing: -0.02em; line-height: 1.2; margin: 2.6em 0 0.7em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text); }
.prose p + p { margin-top: 1em; }
.prose ul { list-style: disc; padding-left: 1.3em; margin-top: 0.8em; }
.prose li { margin-top: 0.4em; }
.prose a { color: #fff; border-bottom: 1px solid var(--line-strong); }
.next-steps { margin-top: clamp(40px, 6vw, 80px); }
.intake-frame { min-height: 480px; }
.intake-frame iframe { width: 100%; height: 720px; border: 0; }

/* Responsive */
@media (max-width: 1100px) {
  .header-right .avail { display: none; }
}
@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .g > * { grid-column: 1 / -1 !important; }
  .nav, .header-right { display: none; }
  .menu-btn { display: block; }
  .lists { grid-template-columns: 1fr; row-gap: 40px; }
  .trio, .steps { grid-template-columns: 1fr; }
  .trio > div, .steps > li { padding: 28px 0; }
  .trio > div + div, .steps > li + li { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .steps .n { margin-bottom: 18px; }
  .stack { aspect-ratio: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .stack figure { position: relative; left: auto !important; top: auto !important; width: 100%; aspect-ratio: 3 / 4; transform: none !important; }
  .metrics li { padding-inline: 12px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .scene { row-gap: 20px; }
  .quotes blockquote + blockquote { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); margin-top: 28px; }
  .quotes blockquote { padding-right: 0; }
}
@media (max-width: 520px) {
  .code-row { flex-direction: column; gap: 10px; }
  .code .btn { margin-left: 0; }
  .order-top { flex-direction: column; align-items: flex-start; }
  .tags { font-size: 0.72rem; }
  .tags span { padding: 4px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js .wipe { clip-path: none; }
  .js .hero-title .line > span, .js .hero-fade { opacity: 1; transform: none; }
  .hero-media { transform: none !important; }
}

/* Thank-you page and inner-page extras */
.header-back { margin-left: auto; font-size: 0.9rem; color: var(--text); transition: color 0.3s; }
.header-back:hover { color: #fff; }
.addons-list, .next-list { border-top: 1px solid var(--line-strong); }
.addon-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.addon-row h3 { margin-bottom: 6px; font-size: 1.25rem; }
.addon-buy { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.next-list li { padding: 24px 0; border-bottom: 1px solid var(--line); }
.next-list h3 { margin-bottom: 8px; font-size: 1.25rem; }
.legal-line a { transition: color 0.3s; }
.legal-line a:hover { color: #fff; }
@media (max-width: 900px) {
  .addon-row { flex-direction: column; align-items: flex-start; }
}

/* Package builder */
.packs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); margin-top: clamp(40px, 6vw, 80px); }
.pack {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(24px, 2.6vw, 40px); background: var(--panel); border: 1px solid var(--line); cursor: pointer;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.pack:hover { border-color: var(--line-strong); }
.pack input { position: absolute; opacity: 0; pointer-events: none; }
.pack:focus-within { outline: 2px solid #fff; outline-offset: 4px; }
.pack.is-selected { border-color: #fff; background: #15181b; }
.pack-mark {
  position: absolute; top: clamp(24px, 2.6vw, 40px); right: clamp(24px, 2.6vw, 40px);
  width: 18px; height: 18px; border: 1px solid var(--line-strong); transition: background 0.3s, border-color 0.3s;
}
.pack.is-selected .pack-mark { background: #fff; border-color: #fff; }
.pack-name { color: #fff; font-size: 1.35rem; letter-spacing: -0.02em; padding-right: 36px; }
.pack-tag {
  display: inline-block; margin-left: 10px; padding: 3px 9px; font-style: normal; font-size: 0.72rem;
  color: #fff; border: 1px solid var(--line-strong); vertical-align: middle; letter-spacing: 0.01em;
}
.pack-price { margin-top: 22px; color: #fff; font-weight: 300; font-size: clamp(2.8rem, 4.2vw, 4rem); letter-spacing: -0.05em; line-height: 1; }
.pack-for { margin-top: 10px; color: var(--muted); font-size: 0.92rem; }
.pack-list { display: block; margin-top: 26px; border-top: 1px solid var(--line); }
.pack-list span { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--text); }
.pack-list span::before { content: ''; flex: 0 0 6px; height: 6px; margin-top: 0.62em; background: #fff; }

.builder { margin-top: clamp(40px, 6vw, 80px); align-items: start; }
.opt-group + .opt-group { margin-top: 36px; }
.opt-group h3 { font-size: 1.15rem; padding-bottom: 14px; border-bottom: 1px solid var(--line-strong); }
.opt { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.opt input {
  -webkit-appearance: none; appearance: none; flex: 0 0 22px; width: 22px; height: 22px; margin: 2px 0 0;
  border: 1px solid var(--line-strong); background: transparent; border-radius: 0; cursor: pointer;
  display: grid; place-content: center; transition: background 0.3s, border-color 0.3s;
}
.opt input:checked { background: #fff; border-color: #fff; }
.opt input:checked::after { content: ''; width: 11px; height: 6px; border-left: 2px solid #000; border-bottom: 2px solid #000; transform: translateY(-1px) rotate(-45deg); }
.opt input:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.opt input:disabled { cursor: default; }
.opt-main { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.opt-name { color: #fff; font-size: 1.05rem; }
.opt-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.45; max-width: 52ch; }
.opt-price { color: #fff; white-space: nowrap; }
.opt.is-included { cursor: default; }
.opt.is-included .opt-price { color: var(--muted); }
.rules { margin-top: 20px; }
.custom-row {
  margin-top: 32px; padding: 22px 24px; border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.custom-row .card-label { margin-bottom: 4px; }
.summary { padding: clamp(22px, 3vw, 40px); position: sticky; top: calc(var(--header-h) + 24px); }
.summary h3 { padding-bottom: 16px; border-bottom: 1px solid var(--line-strong); }
.lines li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.lines li span:last-child { color: #fff; white-space: nowrap; }
.total { display: flex; justify-content: space-between; align-items: baseline; padding: 22px 0 26px; color: #fff; }
.total span:last-child { font-weight: 300; font-size: clamp(2.2rem, 3.2vw, 3rem); letter-spacing: -0.045em; line-height: 1; }

@media (max-width: 900px) {
  .packs { grid-template-columns: 1fr; }
  .summary { position: static; }
}

@media (max-width: 900px) {
  .brand img { height: 32px; }
  .foot-brand img { height: 42px; }
}
