:root {
  --bg: #080b10;
  --bg-2: #0d121a;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --fg: #f6f1eb;
  --text: #d8d5d1;
  --muted: #989da8;
  --border: rgba(255, 255, 255, 0.13);
  --accent: #ff6131;
  --accent-2: #f2bb4f;
  --success: #7cd991;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --font-display: "Avenir Next", "Söhne", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  width: 100%;
  overflow-x: clip;
  margin: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 97, 49, 0.19), transparent 28rem),
    radial-gradient(circle at 15% 6%, rgba(54, 128, 174, 0.26), transparent 30rem),
    linear-gradient(180deg, #07090e 0%, #0b0f16 38%, #090c12 100%);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
  content: "";
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 650;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(8, 11, 16, 0.5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 134px;
  height: auto;
}

.nav-links,
.header-actions,
.hero-actions,
.trust-row,
.site-footer nav {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.language-picker,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 610;
  letter-spacing: 0.02em;
}

.nav-links a {
  padding: 0 14px;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.language-picker {
  gap: 8px;
  padding: 0 10px 0 14px;
  border: 1px solid var(--border);
  width: auto;
  min-width: max-content;
  flex: 0 0 auto;
}

.language-picker select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 999px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f5f1ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 12px 12px;
  color: var(--fg);
  padding: 6px 22px 6px 8px;
  font: inherit;
  flex: 0 0 auto;
}

.header-cta {
  padding: 0 16px;
  background: var(--fg);
  color: #14110e;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - 82px);
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 0 clamp(52px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1fr);
  gap: clamp(15px, 1vw, 55px);
  align-items: center;
}

.hero::before {
  position: absolute;
  top: -44%;
  right: -10%;
  z-index: -1;
  width: min(620px, 45vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 97, 49, 0.22) 0%, rgba(255, 97, 49, 0.1) 28%, transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(56px, 8.4vw, 118px);
  line-height: 0.92;
  text-wrap: balance;
}

h1[data-od-id="path-2-0-0-1"] {
  max-width: 13ch;
  font-size: clamp(75px, 6.8vw, 92px);
  line-height: 0.92;
}

.hero-lede {
  max-width: 62ch;
  color: var(--text);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero-lede strong {
  display: block;
  margin-top: 4px;
  color: var(--fg);
  font-size: 0.82em;
  font-weight: 800;
  line-height: 1.45;
}

.copy-line {
  display: block;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button {
  gap: 9px;
}

.hero-actions .button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.1;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 720;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:focus-visible,
summary:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent), white 24%);
  outline-offset: 3px;
}

.button-primary {
  background: var(--accent);
  color: #180804;
  box-shadow: 0 16px 48px rgba(255, 97, 49, 0.28);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
}

.button-lifetime {
  background: var(--accent-2);
  color: #211402;
  box-shadow: 0 16px 48px rgba(242, 187, 79, 0.26);
}

.trust-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  padding: 7px 11px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.hero-scene {
  --tabs-x: 0px;
  --tabs-y: 0px;
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 48vw, 720px);
}

.hero-scene picture,
.hero-scene img {
  display: block;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  user-select: none;
  pointer-events: none;
}

.hero-scene picture img {
  width: 100%;
}

.hero-max-layer {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.36) 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.36) 82%, transparent 100%);
}

.hero-tabs-layer {
  position: absolute;
  z-index: 1;
  top: -5%;
  right: -2%;
  width: min(790px, 108%);
  transform: translate3d(var(--tabs-x), var(--tabs-y), 0);
  opacity: 0.96;
  transition: transform 160ms ease-out;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 128px) 0;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.story-copy {
  position: relative;
  z-index: 2;
}

.why-section .story-copy {
  width: min(470px, 100%);
}

.story-copy .why-lede {
  font-size: 24px;
  font-weight: 700;
}

.story-copy h2 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  text-wrap: balance;
}

.story-copy p:not(.eyebrow) {
  max-width: 59ch;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

.wide-bleed-right {
  width: min(760px, 64vw);
  max-width: none;
  justify-self: end;
  margin-right: clamp(-72px, -5vw, -28px);
}

.floating-shot {
  position: relative;
  margin: 0;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.44));
}

.floating-shot img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.cycle-frame {
  position: relative;
  aspect-ratio: 1.7;
}

.cycle-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.cycle-image.active {
  opacity: 1;
}

.stack-frame {
  position: relative;
  width: min(980px, 72vw);
  height: clamp(470px, 43vw, 640px);
  justify-self: end;
  margin-right: clamp(-300px, -19vw, -150px);
  overflow: visible;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.44));
}

.stack-image {
  position: absolute;
  display: block;
  width: min(840px, 65vw);
  height: auto;
  max-width: none;
  object-fit: initial;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  transform: translate3d(10px, 14px, 0) scale(0.985);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
}

.stack-image.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.stack-one {
  z-index: 1;
  top: 0;
  right: -78px;
}

.floating-shot img.stack-three {
  z-index: 2;
  top: 145px;
  right: 196px;
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(4px 4px 14px rgba(0, 0, 0, 0.6));
}

.floating-shot img.stack-two {
  z-index: 3;
  top: 72px;
  right: -60px;
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(4px 4px 14px rgba(0, 0, 0, 0.6));
}

.how-flow .section-kicker,
.features-section .section-kicker,
.testimonials .section-kicker {
  width: 100%;
  max-width: 1180px;
}

.how-flow .section-kicker h2,
.features-section .section-kicker h2,
.testimonials .section-kicker h2 {
  width: 100%;
  max-width: none;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.steps-row article,
.feature-cards article,
.testimonial-grid figure {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.065);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.steps-row article {
  display: grid;
  grid-template-columns: clamp(64px, 6vw, 70px) minmax(0, 1fr);
  column-gap: 10px;
  align-content: start;
  align-items: start;
}

.testimonial-grid figure {
  margin: 0;
  padding-inline: 18px;
}

.steps-row > article > span {
  grid-row: 1 / span 2;
  grid-column: 1;
  margin: 0;
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: clamp(64px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.steps-row article h3,
.steps-row article p {
  grid-column: 2;
}

.steps-row article p {
  margin: 0;
}

.steps-row h3,
.feature-cards h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.08;
}

.steps-row p,
.feature-cards p {
  color: var(--text);
}

.demo-grid {
  --demo-shot-height: clamp(420px, 31vw, 560px);
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.76fr);
  gap: clamp(12px, 2vw, 28px);
  align-items: end;
}

.demo-grid > .cycle-frame {
  height: var(--demo-shot-height);
  aspect-ratio: auto;
}

.demo-grid > .cycle-frame:not(.popup-cycle) {
  width: 100%;
}

.popup-cycle {
  width: min(620px, 100%);
  max-width: none;
  height: var(--demo-shot-height);
  aspect-ratio: auto;
  justify-self: end;
  align-self: end;
}

.popup-cycle img {
  border-radius: 26px;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.5));
}

.how-flow .floating-shot,
.how-flow .popup-cycle img {
  filter: none;
}

.how-flow .popup-cycle img {
  border-radius: 6px;
}

.restore-section {
  padding-top: clamp(52px, 7vw, 96px);
}

.icon-row {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.icon-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
}

.icon-row svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  stroke-width: 1.9;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.features-copy .section-kicker {
  margin-bottom: 24px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-cards svg {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  color: var(--accent);
  stroke-width: 1.8;
}

.phone-stack,
.phone-pair {
  width: min(360px, 100%);
  aspect-ratio: 0.46;
  justify-self: center;
}

.config-stack {
  width: min(470px, 100%);
  height: clamp(620px, 57vw, 760px);
  aspect-ratio: auto;
  justify-self: end;
  overflow: visible;
  filter: none;
}

.floating-shot.config-stack img {
  inset: auto;
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(4px 4px 14px rgba(0, 0, 0, 0.6));
}

.floating-shot.config-stack .config-base {
  z-index: 1;
  top: 0;
  left: 0;
}

.floating-shot.config-stack .config-overlay {
  z-index: 2;
  top: 72px;
  right: 0;
}

.naproom-section {
  grid-template-columns: minmax(300px, 0.6fr) minmax(320px, 0.7fr);
  align-items: center;
}

.naproom-section .story-copy {
  transform: translateY(-15%);
}

.naproom-stack {
  width: min(470px, 100%);
  height: clamp(620px, 57vw, 760px);
  aspect-ratio: auto;
  justify-self: start;
  transform: translateX(56px);
  overflow: visible;
  filter: none;
}

.floating-shot.naproom-stack img {
  inset: auto;
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(4px 4px 14px rgba(0, 0, 0, 0.6));
}

.floating-shot.naproom-stack .naproom-base {
  z-index: 1;
  top: 0;
  right: 0;
}

.floating-shot.naproom-stack .naproom-overlay {
  z-index: 2;
  top: 68px;
  right: 160px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.testimonials {
  width: min(1180px, calc(100% - 32px));
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--fg);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.testimonial-portrait {
  width: 60%;
  aspect-ratio: 1;
  margin-inline: auto;
  margin-bottom: 22px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.testimonial-grid figcaption {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.testimonial-grid figcaption strong,
.testimonial-grid figcaption span {
  display: block;
}

.testimonial-grid figcaption strong {
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.section-kicker {
  max-width: 760px;
  margin-bottom: 36px;
}

.faq .section-kicker {
  width: 100%;
  max-width: 1180px;
}

.pricing .section-kicker {
  width: 100%;
  max-width: 1180px;
}

.section-kicker h2,
.video-block h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  text-wrap: balance;
}

.faq .section-kicker h2 {
  width: 100%;
  max-width: none;
}

.pricing .section-kicker h2 {
  width: 100%;
  max-width: none;
}

.section-kicker p:not(.eyebrow),
.video-block p {
  max-width: 64ch;
  color: var(--text);
  font-size: 17px;
}

.video-placeholder,
.plan {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.plan p,
.plan li {
  color: var(--text);
}

.pricing-grid {
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.launch-discount-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: -14px 0 22px;
  border: 1px solid color-mix(in srgb, var(--success) 58%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--success) 16%, rgba(8, 11, 16, 0.88));
  padding: 9px 13px;
  color: var(--success);
  font-size: 13px;
  font-weight: 720;
}

.launch-discount-status[hidden] {
  display: none;
}

.launch-discount-status svg {
  width: 17px;
  height: 17px;
  color: var(--success);
}

.plan {
  isolation: isolate;
  contain: paint;
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
}

.plan-featured {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 97, 49, 0.24), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 97, 49, 0.45);
}

.plan-lifetime {
  background:
    radial-gradient(circle at 84% 3%, rgba(245, 196, 89, 0.24), transparent 18rem),
    linear-gradient(145deg, rgba(245, 196, 89, 0.16), rgba(255, 255, 255, 0.05));
  border-color: rgba(245, 196, 89, 0.52);
}

.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #180804;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.plan-crown {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: oklch(83% 0.12 82);
  background: rgba(245, 196, 89, 0.14);
  border: 1px solid rgba(245, 196, 89, 0.36);
}

.plan-crown svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-kicker {
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan h3 {
  margin: 0 0 18px;
  font-size: 54px;
  letter-spacing: -0.035em;
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 2px;
  font-variant-numeric: tabular-nums;
}

.plan-price-values {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.plan-price-values strong {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.plan-price-values del {
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration-color: color-mix(in srgb, var(--accent) 76%, currentColor);
  text-decoration-thickness: 2px;
}

.plan-price.is-discounted .plan-price-values strong {
  color: var(--success);
}

.plan h3 > .plan-price-suffix {
  margin-left: 0;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0;
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.plan li .plan-icon {
  width: 18px;
  height: 18px;
  margin-top: 0.16em;
  color: var(--accent);
  stroke-width: 1.8;
}

.plan-lifetime li .plan-icon,
.plan-lifetime .plan-kicker {
  color: oklch(83% 0.12 82);
}

.plan .button {
  gap: 8px;
  margin-top: auto;
  white-space: nowrap;
}

.plan .button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.pricing-license-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.pricing-price-disclaimer {
  margin-top: 7px;
  font-size: 12px;
  opacity: 0.78;
}

.video-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.video-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  text-align: center;
}

.video-placeholder span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 18px 50px rgba(255, 97, 49, 0.3);
}

.video-placeholder span::before {
  display: block;
  width: 0;
  height: 0;
  margin: 23px 0 0 30px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #160905;
  content: "";
}

.video-placeholder p {
  margin: -80px 0 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list[data-od-id="path-2-6-1"] {
  width: 80%;
  gap: 0;
  margin-left: 0;
  margin-right: auto;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  padding: 10px 28px;
  backdrop-filter: blur(16px);
}

.faq-list[data-od-id="path-2-6-1"] .faq-entry {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list[data-od-id="path-2-6-1"] .faq-entry:last-child {
  border-bottom: 0;
}

.faq-list[data-od-id="path-2-6-1"] h3 {
  margin: 0;
  color: var(--accent);
  font-size: 19px;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.faq-list[data-od-id="path-2-6-1"] p {
  max-width: none;
  margin: 12px 0 0;
  color: var(--text);
  font-size: 17px;
}

.legal {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 42px;
  padding-bottom: 42px;
}

.legal h2 {
  max-width: 22ch;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
}

.legal p:not(.eyebrow) {
  max-width: 68ch;
  color: var(--text);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  padding: 52px 0 58px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: 154px;
}

.site-footer nav {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
}

.site-footer a,
.site-footer .footer-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-footer a {
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.footer-note {
  display: grid;
  gap: 4px;
}

body.legal-modal-open {
  overflow: hidden;
}

body.exit-offer-open {
  overflow: hidden;
}

.exit-offer-dialog {
  width: min(700px, calc(100% - 24px));
  max-width: none;
  overflow: hidden;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 0%, rgba(242, 187, 79, 0.23), transparent 20rem),
    radial-gradient(circle at 0% 100%, rgba(255, 97, 49, 0.16), transparent 22rem),
    #0b0f16;
  padding: 0;
  color: var(--fg);
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.74);
}

.exit-offer-dialog[open] {
  animation: exit-offer-enter 200ms ease-out;
}

.exit-offer-dialog::backdrop {
  background: rgba(3, 5, 9, 0.76);
  backdrop-filter: blur(10px);
}

.exit-offer-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 24px;
  padding: clamp(34px, 6vw, 54px);
}

.exit-offer-shell::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  content: "";
}

.exit-offer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 11, 16, 0.72);
  color: var(--fg);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.exit-offer-close svg {
  width: 20px;
  height: 20px;
}

.exit-offer-close:hover,
.exit-offer-close:focus-visible {
  transform: rotate(4deg) scale(1.04);
  border-color: var(--accent);
  background: var(--accent);
  color: #180804;
  outline: none;
}

.exit-offer-copy {
  padding-right: 42px;
}

.exit-offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.exit-offer-eyebrow svg {
  width: 17px;
  height: 17px;
}

.exit-offer-copy h2 {
  max-width: 13ch;
  margin: 12px 0 14px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.exit-offer-copy > p:last-child {
  max-width: 48ch;
  margin: 0;
  color: var(--text);
  font-size: 17px;
}

.exit-offer-ticket {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  border: 1px dashed rgba(242, 187, 79, 0.62);
  border-radius: 18px;
  background: rgba(242, 187, 79, 0.09);
  padding: 16px 18px;
}

.exit-offer-ticket span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exit-offer-ticket code {
  color: var(--fg);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.exit-offer-ticket strong {
  border-radius: 999px;
  background: var(--accent-2);
  padding: 7px 10px;
  color: #211402;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.exit-offer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exit-offer-apply,
.exit-offer-dismiss {
  min-height: 50px;
  border-radius: 999px;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.exit-offer-apply {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 0 22px;
  color: #180804;
  box-shadow: 0 18px 52px rgba(255, 97, 49, 0.24);
}

.exit-offer-apply svg {
  width: 19px;
  height: 19px;
}

.exit-offer-dismiss {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 18px;
  color: var(--text);
}

.exit-offer-apply:hover,
.exit-offer-dismiss:hover {
  transform: translateY(-2px);
}

.exit-offer-apply:active,
.exit-offer-dismiss:active {
  transform: translateY(0) scale(0.985);
}

.exit-offer-apply:focus-visible,
.exit-offer-dismiss:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent), white 24%);
  outline-offset: 3px;
}

.exit-offer-note {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.legal-dialog {
  width: min(920px, calc(100% - 24px));
  max-width: none;
  max-height: min(90vh, 960px);
  overflow: hidden;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 97, 49, 0.16), transparent 22rem),
    #0b0f16;
  padding: 0;
  color: var(--fg);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.7);
}

.legal-dialog[open] {
  animation: legal-dialog-enter 180ms ease-out;
}

.legal-dialog::backdrop {
  background: rgba(3, 5, 9, 0.78);
  backdrop-filter: blur(10px);
}

.legal-dialog-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(8, 11, 16, 0.82);
  color: var(--fg);
  font: inherit;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.legal-dialog-toolbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 11, 16, 0.9);
  padding: 12px 18px 12px 22px;
  backdrop-filter: blur(18px);
}

.legal-dialog-toolbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-dialog-toolbar a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.legal-dialog-toolbar a:hover,
.legal-dialog-toolbar a:focus-visible {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--fg);
  outline: none;
}

.legal-dialog-close:hover,
.legal-dialog-close:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(4deg) scale(1.04);
  outline: none;
}

.legal-dialog-scroll {
  max-height: calc(min(90vh, 960px) - 68px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

@media (prefers-reduced-motion: reduce) {
  html,
  .legal-dialog-scroll {
    scroll-behavior: auto;
  }

  .exit-offer-dialog[open] {
    animation: none;
  }

  .exit-offer-close,
  .exit-offer-apply,
  .exit-offer-dismiss {
    transition: none;
  }
}

.legal-document {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(50px, 8vw, 82px) clamp(24px, 6vw, 62px) clamp(64px, 9vw, 96px);
}

.legal-document-intro h1 {
  max-width: 11ch;
  margin: 12px 0 18px;
  font-size: clamp(46px, 8vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.legal-summary {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.65;
}

.legal-document a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-2) 46%, transparent);
  text-underline-offset: 4px;
}

.legal-document a:hover,
.legal-document a:focus-visible {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.legal-dialog .legal-toc {
  display: none;
}

.purchase-dialog {
  width: min(860px, calc(100% - 24px));
}

.changelog-dialog {
  width: min(900px, calc(100% - 24px));
}

.purchase-dialog-toolbar strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.purchase-document {
  width: min(710px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 68px) clamp(22px, 6vw, 56px) clamp(52px, 8vw, 76px);
}

.purchase-document-intro h2 {
  max-width: 14ch;
  margin: 12px 0 18px;
  font-size: clamp(40px, 7vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.purchase-document-intro > p:not(.eyebrow):not(.purchase-price-note) {
  max-width: 58ch;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.purchase-document-intro .purchase-price-note {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  max-width: 62ch;
  margin: 22px 0 0;
  border-left: 2px solid color-mix(in srgb, var(--accent-2) 72%, transparent);
  padding: 12px 14px;
  background: color-mix(in srgb, var(--accent-2) 8%, transparent);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.purchase-price-note svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--accent-2);
}

.purchase-questions {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--border);
}

.purchase-question {
  border-bottom: 1px solid var(--border);
}

.purchase-question summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  color: var(--accent);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.purchase-question summary::-webkit-details-marker {
  display: none;
}

.purchase-question summary svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 160ms ease;
}

.purchase-question[open] summary svg {
  transform: rotate(45deg);
}

.purchase-question p {
  max-width: 62ch;
  margin: -3px 42px 22px 0;
  color: var(--text);
  line-height: 1.7;
}

.purchase-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.purchase-support-actions .button {
  min-height: 48px;
}

.changelog-document {
  width: min(740px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 68px) clamp(22px, 6vw, 56px) clamp(52px, 8vw, 76px);
}

.changelog-document-intro h2 {
  max-width: 12ch;
  margin: 12px 0 18px;
  font-size: clamp(40px, 7vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.changelog-document-intro > p:last-child {
  max-width: 60ch;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.changelog-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--border);
}

.changelog-entry {
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--border);
}

.changelog-entry-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.changelog-entry h3 {
  margin: 0;
  color: var(--accent);
  font-size: 25px;
  letter-spacing: -0.02em;
}

.changelog-entry time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.changelog-entry ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.62;
}

.changelog-entry li::marker {
  color: var(--accent);
}

.legal-toc a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--fg);
  text-decoration: none;
}

.legal-part {
  scroll-margin-top: 24px;
  padding-top: 54px;
}

.legal-part + .legal-part {
  margin-top: 64px;
  border-top: 1px solid var(--border);
}

.legal-part-number {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-part > h2 {
  margin: 0 0 38px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.legal-section {
  scroll-margin-top: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.legal-section h3 {
  margin: 0 0 13px;
  color: var(--fg);
  font-size: 20px;
  letter-spacing: -0.01em;
}

.legal-section p,
.legal-section li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.72;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section code {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  color: var(--fg);
  font-size: 0.9em;
}

@keyframes legal-dialog-enter {
  from {
    transform: translateY(12px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes exit-offer-enter {
  from {
    transform: translateY(16px) scale(0.975);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.support-page {
  min-height: 100vh;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 80px;
}

.support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.support-header img {
  width: 148px;
}

.support-back {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.support-back:hover,
.support-back:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.support-content {
  padding-top: clamp(54px, 8vw, 96px);
}

.support-content h1 {
  max-width: 12ch;
  margin: 12px 0 24px;
  font-size: clamp(52px, 9vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.support-lede {
  max-width: 62ch;
  color: var(--text);
  font-size: 19px;
  line-height: 1.6;
}

.support-list {
  display: grid;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--border);
}

.support-entry {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.support-entry h2 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.support-entry p {
  max-width: 66ch;
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.support-form {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.support-form label {
  display: grid;
  gap: 8px;
  color: var(--fg);
  font-size: 14px;
  font-weight: 650;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  color: var(--fg);
  font: inherit;
}

.support-form textarea {
  min-height: 160px;
  resize: vertical;
}

.support-form button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  padding: 13px 20px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.support-form button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@media (max-width: 620px) {
  .faq-list[data-od-id="path-2-6-1"] {
    width: 100%;
    border-radius: 20px;
    padding-inline: 18px;
  }

  .support-header {
    align-items: flex-start;
  }

  .support-header img {
    width: 120px;
  }

  .support-content h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .legal-dialog {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    border-radius: 22px;
  }

  .legal-dialog-scroll {
    max-height: calc(100vh - 80px);
  }

  .legal-dialog-toolbar {
    min-height: 68px;
    padding: 10px 12px 10px 14px;
  }

  .legal-document {
    padding-inline: 20px;
  }

  .changelog-document {
    padding-inline: 20px;
  }

  .changelog-entry-header {
    display: grid;
    gap: 5px;
  }

  .changelog-entry time {
    text-align: left;
  }

  .legal-document-intro h1 {
    padding-right: 34px;
    font-size: clamp(42px, 14vw, 62px);
  }

  .legal-summary {
    font-size: 17px;
  }

  .exit-offer-dialog {
    width: calc(100% - 12px);
    border-radius: 22px;
  }

  .exit-offer-shell {
    gap: 20px;
    padding: 34px 20px 24px;
  }

  .exit-offer-close {
    top: 14px;
    right: 14px;
  }

  .exit-offer-copy {
    padding-right: 38px;
  }

  .exit-offer-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .exit-offer-ticket {
    grid-template-columns: 1fr auto;
  }

  .exit-offer-ticket span {
    grid-column: 1 / -1;
  }

  .exit-offer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .exit-offer-apply,
  .exit-offer-dismiss {
    width: 100%;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .video-block,
  .story-split,
  .demo-grid,
  .features-layout,
  .naproom-section {
    grid-template-columns: 1fr;
  }

  .naproom-section .story-copy {
    transform: none;
  }

  .why-section .story-copy {
    width: 100%;
  }

  .demo-grid {
    --demo-shot-height: clamp(320px, 58vw, 440px);
    gap: 22px;
  }

  .demo-grid > .cycle-frame {
    height: var(--demo-shot-height);
    aspect-ratio: auto;
  }

  .popup-cycle {
    width: min(420px, 100%);
    height: var(--demo-shot-height);
    justify-self: center;
  }

  .steps-row,
  .feature-cards,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wide-bleed-right {
    width: 100%;
    margin-right: 0;
  }

  .stack-frame {
    width: min(100%, 760px);
    height: clamp(380px, 58vw, 520px);
    margin-right: 0;
    justify-self: center;
  }

  .stack-image {
    width: min(720px, 88vw);
  }

  .floating-shot img.stack-three {
    top: 120px;
    right: 116px;
    width: 80%;
    height: 80%;
  }

  .floating-shot img.stack-two {
    top: 68px;
    right: -46px;
    width: 80%;
    height: 80%;
  }

  .phone-stack,
  .phone-pair,
  .popup-cycle {
    width: min(420px, 100%);
  }

  .legal {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-scene picture,
  .hero-scene img {
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: auto;
  }

  .site-footer {
    align-items: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 18px;
  }

  .brand img {
    width: 112px;
  }

  .language-picker span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .section,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1,
  h1[data-od-id="path-2-0-0-1"] {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.96;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-scene {
    min-height: clamp(360px, 96vw, 560px);
  }

  .hero-scene picture,
  .hero-scene img {
    border-radius: 0;
  }

  .hero-tabs-layer {
    top: -2%;
    right: -10%;
    width: 118%;
  }

  .plan,
  .video-placeholder,
  .steps-row article,
  .feature-cards article,
  .testimonial-grid figure {
    border-radius: 22px;
  }

  .steps-row,
  .feature-cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cycle-frame {
    aspect-ratio: 1.35;
  }

  .demo-grid {
    --demo-shot-height: clamp(260px, 62vw, 340px);
  }

  .demo-grid > .cycle-frame {
    height: var(--demo-shot-height);
    aspect-ratio: auto;
  }

  .phone-stack,
  .phone-pair {
    aspect-ratio: 0.46;
  }

  .popup-cycle {
    aspect-ratio: 0.95;
  }

  .stack-frame {
    height: clamp(300px, 80vw, 420px);
  }

  .stack-image {
    width: 86vw;
  }

  .stack-one {
    right: -20px;
  }

  .floating-shot img.stack-three {
    top: 90px;
    right: 54px;
    width: 80%;
    height: 80%;
  }

  .floating-shot img.stack-two {
    top: 52px;
    right: -48px;
    width: 80%;
    height: 80%;
  }

  .config-stack {
    width: 100%;
    height: min(154vw, 700px);
    justify-self: center;
  }

  .floating-shot.config-stack img {
    width: 85%;
  }

  .floating-shot.config-stack .config-overlay {
    top: 44px;
  }

  .naproom-stack {
    width: 100%;
    height: min(150vw, 690px);
    justify-self: center;
    transform: none;
  }

  .floating-shot.naproom-stack img {
    width: 70%;
  }

  .floating-shot.naproom-stack .naproom-overlay {
    top: 42px;
    right: 16%;
  }
}
