:root {
  --bg: #010402;
  --bg-lift: #050b08;
  --panel: rgba(232, 231, 233, 0.055);
  --panel-strong: rgba(232, 231, 233, 0.085);
  --text: #e8e7e9;
  --muted: rgba(232, 231, 233, 0.66);
  --faint: rgba(232, 231, 233, 0.38);
  --line: rgba(232, 231, 233, 0.15);
  --accent: #bd7eed;
  --accent-deep: #6e2ee9;
  --blue: #6f8dff;
  --stage: #111611;
  --wall: #c9c5b8;
  --shadow: rgba(0, 0, 0, 0.46);
  --content-max: 1200px;
  --page-gutter: clamp(22px, 5vw, 76px);
  --section-max: calc(var(--content-max) + (var(--page-gutter) * 2));
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(189, 126, 237, 0.11), transparent 28vw),
    radial-gradient(circle at 18% 46%, rgba(83, 129, 86, 0.09), transparent 30vw),
    linear-gradient(180deg, #010402 0%, #030805 42%, #010402 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(232, 231, 233, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 231, 233, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
  pointer-events: none;
}

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

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

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

button {
  border: 0;
}

main {
  min-height: 100vh;
}

.site-header {
  width: min(calc(100% - 32px), var(--content-max));
  min-height: 64px;
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(232, 231, 233, 0.14);
  border-radius: 8px;
  background: rgba(1, 4, 2, 0.74);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: rgba(232, 231, 233, 0.72);
  font-size: 0.92rem;
}

.nav-links a,
.footer-links a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

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

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--text);
  color: #060806;
  font-size: 0.9rem;
}

.button {
  min-width: 154px;
  padding: 0 22px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 18px 48px rgba(111, 46, 233, 0.28);
}

.button-secondary {
  border: 1px solid rgba(189, 126, 237, 0.62);
  background: rgba(189, 126, 237, 0.08);
  color: var(--text);
}

.button-quiet {
  min-width: 0;
  border: 1px solid transparent;
  color: rgba(232, 231, 233, 0.68);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section {
  width: 100%;
  max-width: var(--section-max);
  min-height: 82svh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(500px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(96px, 12vh, 124px) var(--page-gutter) 50px;
}

.hero-copy {
  max-width: 690px;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(2.75rem, 3.5vw, 4.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  color: rgba(232, 231, 233, 0.74);
}

.hero-copy h1 .hero-line {
  color: var(--text);
  white-space: nowrap;
}

.hero-subcopy {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

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

.hero-product {
  margin: 0;
  position: relative;
  transform: translate3d(0, var(--hero-y, 0px), 0) scale(var(--hero-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 12% -2% -6%;
  z-index: -1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(189, 126, 237, 0.22), transparent 31%),
    linear-gradient(135deg, rgba(16, 34, 24, 0.66), rgba(189, 126, 237, 0.08));
  filter: blur(20px);
}

.hero-product img {
  width: min(100%, 920px);
  border: 1px solid rgba(232, 231, 233, 0.18);
  border-radius: 8px;
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.section-pad {
  padding: clamp(92px, 14vw, 170px) var(--page-gutter);
}

.section-heading {
  width: min(100%, 820px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.pricing-intro h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 860;
  line-height: 1.04;
  letter-spacing: 0;
}

.walkthrough-section {
  position: relative;
  padding-top: clamp(30px, 4vw, 48px);
}

.video-shell {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(232, 231, 233, 0.15);
  border-radius: 8px;
  background: rgba(232, 231, 233, 0.045);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.video-preview {
  width: 100%;
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #050705;
  color: var(--text);
  cursor: pointer;
}

.video-preview img {
  width: 100%;
  opacity: 0.72;
  transform: scale(1.006);
  transition:
    opacity 260ms ease,
    transform 400ms ease;
}

.video-preview:hover img {
  opacity: 0.86;
  transform: scale(1.018);
}

.play-button {
  width: 86px;
  height: 86px;
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 231, 233, 0.3);
  border-radius: 50%;
  background: rgba(1, 4, 2, 0.68);
  color: var(--text);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.play-button::before {
  content: "Play";
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.video-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(232, 231, 233, 0.15);
  border-radius: 8px;
  background: rgba(1, 4, 2, 0.68);
  color: rgba(232, 231, 233, 0.84);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.chapter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(232, 231, 233, 0.1);
}

.chapter-strip span {
  padding: 18px;
  color: rgba(232, 231, 233, 0.76);
  font-size: clamp(0.92rem, 1.3vw, 1.1rem);
  font-weight: 780;
  text-align: center;
}

.chapter-strip span + span {
  border-left: 1px solid rgba(232, 231, 233, 0.1);
}

.one-liner {
  min-height: min(82svh, 760px);
  display: grid;
  place-items: center;
  padding: clamp(76px, 12vw, 140px) 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 87, 58, 0.12), transparent 42%),
    #010402;
  overflow: hidden;
}

.one-liner p {
  max-width: 1180px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
  text-align: center;
  transform: translateY(34px) scale(0.98);
  opacity: 0;
  transition:
    opacity 800ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.one-liner span {
  display: block;
}

.one-liner em {
  position: relative;
  display: inline-block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 900;
  line-height: 0.84;
}

.one-liner em::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.02em;
  bottom: -0.08em;
  height: 0.08em;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms;
}

.one-liner.is-visible p {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.one-liner.is-visible em::after {
  transform: scaleX(1);
}

.one-liner-short p {
  max-width: 980px;
}

.workflow-section {
  min-height: 520vh;
  position: relative;
  background:
    linear-gradient(180deg, #010402 0%, #030805 12%, #020603 86%, #010402 100%);
}

.workflow-sticky {
  width: 100%;
  max-width: var(--section-max);
  min-height: 100svh;
  margin-inline: auto;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) var(--page-gutter);
}

.editorial-guide {
  min-height: min(74svh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.editorial-guide h2 {
  max-width: 10ch;
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.progress-rule {
  width: min(100%, 440px);
  height: 2px;
  margin: clamp(18px, 2.4vh, 28px) 0 clamp(18px, 2.8vh, 30px);
  background: rgba(232, 231, 233, 0.14);
  overflow: hidden;
}

.progress-rule-fill {
  display: block;
  width: calc(var(--workflow-progress, 0) * 100%);
  height: 100%;
  background: var(--accent);
  transform-origin: left center;
}

.copy-track {
  display: grid;
  gap: clamp(10px, 1.6vh, 18px);
  max-width: 460px;
  transform: translate3d(0, var(--guide-shift, 0px), 0);
  transition: transform 180ms linear;
}

.workflow-step {
  opacity: 0.34;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.workflow-step-button {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.workflow-step-button:focus-visible {
  outline: 2px solid rgba(189, 126, 237, 0.78);
  outline-offset: 8px;
  border-radius: 6px;
}

.workflow-step:not(.is-active) .workflow-step-button:hover {
  color: var(--text);
}

.workflow-step.is-active {
  opacity: 1;
  transform: translate3d(12px, 0, 0);
}

.workflow-step.is-past {
  opacity: 0.58;
}

.step-number {
  display: block;
  padding-top: 0.36em;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 820;
}

.workflow-step h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 780;
  letter-spacing: 0;
}

.workflow-step p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.45;
  opacity: 0;
  transition:
    max-height 220ms ease,
    margin 220ms ease,
    opacity 220ms ease;
}

.workflow-step.is-active p {
  max-height: 4em;
  margin-top: 5px;
  opacity: 1;
}

.stage-panel {
  min-width: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.stage-viewport {
  --showcase-progress: 0;
  --field-scale: 1;
  --field-y: 0px;
  width: 100%;
  height: clamp(500px, 72svh, 820px);
  min-height: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #dee1dd 0%, #c5cac3 58%, #9fa79c 100%);
  box-shadow: none;
}

.stage-title {
  max-width: min(800px, calc(100% - 88px));
  margin: 0;
  position: absolute;
  top: clamp(28px, 5svh, 52px);
  left: clamp(26px, 7%, 92px);
  z-index: 6;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.stage-viewport.is-showcase .stage-title {
  color: #050505;
  text-shadow: none;
}

.stage-title-action {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 900;
}

.stage-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% -12%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0) 50%),
    linear-gradient(180deg, #e2e4e0 0%, #c7cbc4 54%, #a0a79d 100%);
  opacity: var(--showcase-progress);
  will-change: opacity;
  pointer-events: none;
}

.stage-viewport::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background: url("./assets/bg_wood.webp") center / cover no-repeat;
  opacity: calc(1 - var(--showcase-progress));
  transform: translate3d(0, var(--field-y), 0) scale(var(--field-scale));
  transform-origin: center;
  will-change: opacity, transform;
  pointer-events: none;
}

.gallery-guides {
  display: none;
}

.card-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  transform-origin: center;
  transform: translate3d(0, var(--field-y, 0px), 0) scale(var(--field-scale, 1));
  will-change: transform;
}

.photo-card {
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  --s: 1;
  --o: 1;
  --z: 1;
  --card-color: #9ca69a;
  --photo-url: none;
  --frame-side: 6px;
  --frame-top: 6px;
  --frame-bottom: 13px;
  --gallery-frame: 10px;
  --print-shade-opacity: 0;
  width: clamp(54px, 7.8vw, 108px);
  aspect-ratio: 4 / 5;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: var(--z);
  border-color: rgba(255, 255, 255, 0.92);
  border-style: solid;
  border-width: var(--frame-top) var(--frame-side) var(--frame-bottom);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%),
    var(--photo-url),
    linear-gradient(
      150deg,
      var(--card-color),
      color-mix(in srgb, var(--card-color), #ffffff 32%)
    );
  background-position: center;
  background-size: cover;
  box-shadow:
    0 13px 24px rgba(0, 0, 0, 0.32),
    0 2px 5px rgba(0, 0, 0, 0.18);
  opacity: var(--o);
  transform:
    translate(-50%, -50%)
    translate3d(var(--x), var(--y), 0)
    rotate(var(--r))
    scale(var(--s));
  transform-origin: center;
  will-change: transform, opacity;
  transition:
    border-width 240ms linear,
    box-shadow 240ms linear;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.photo-card::after {
  content: none;
}

.photo-card.is-gallery {
  --frame-side: var(--gallery-frame);
  --frame-top: var(--frame-side);
  --frame-bottom: var(--frame-side);
  border-color: #141713;
  border-radius: 0;
  box-shadow:
    0 20px 24px rgba(0, 0, 0, 0.32),
    0 6px 10px rgba(0, 0, 0, 0.2);
}

.photo-card.is-gallery::before {
  background:
    linear-gradient(180deg, rgba(28, 31, 26, 0.1) 0%, rgba(28, 31, 26, 0.05) 7px, rgba(28, 31, 26, 0) 18px),
    radial-gradient(ellipse at 50% 6%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.025) 38%, rgba(0, 0, 0, 0.1) 68%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
  border-radius: 0;
  mix-blend-mode: multiply;
  opacity: var(--print-shade-opacity);
  transition: opacity 180ms linear;
}

.photo-card.is-gallery::after {
  content: "";
  position: absolute;
  inset: calc(var(--gallery-frame) * -0.15);
  z-index: 1;
  border-radius: 0;
  background:
    radial-gradient(ellipse 72% 48% at 50% -4%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.26) 38%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse 56% 32% at 50% 12%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 68%);
  mix-blend-mode: screen;
  opacity: calc(var(--print-shade-opacity) * 0.9);
  pointer-events: none;
  transition: opacity 180ms linear;
}

.photo-card:not(.is-gallery)::after {
  content: none;
  border-radius: 0;
}

.stage-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(ellipse 13% 16% at 30% 28%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.24) 35%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse 13% 16% at 50% 28%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.25) 35%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse 13% 16% at 70% 28%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.24) 35%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse 13% 16% at 40% 58%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2) 35%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse 13% 16% at 60% 58%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2) 35%, rgba(255, 255, 255, 0) 76%);
  mix-blend-mode: screen;
  opacity: var(--showcase-progress);
  pointer-events: none;
  will-change: opacity;
}

.features-section {
  background: linear-gradient(180deg, #010402, #030805 52%, #010402);
}

.feature-grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(232, 231, 233, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(232, 231, 233, 0.06), rgba(232, 231, 233, 0.025)),
    rgba(232, 231, 233, 0.045);
}

.feature-card img {
  width: 100%;
  height: 160px;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.92) contrast(1.04);
}

.feature-card p,
.plan-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 840;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.feature-card-wide {
  min-height: 340px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(189, 126, 237, 0.18), rgba(232, 231, 233, 0.055)),
    rgba(232, 231, 233, 0.045);
}

.feature-card-blank {
  min-height: 340px;
  align-items: center;
  justify-content: center;
  border-color: transparent;
  background: transparent;
}

.feature-card-blank img {
  width: min(172px, 62%);
  height: auto;
  margin: 0;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.34));
}

.feature-card-wide ul,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card-wide li,
.price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(232, 231, 233, 0.74);
  line-height: 1.55;
}

.feature-card-wide li + li,
.price-card li + li {
  margin-top: 8px;
}

.feature-card-wide li::before,
.price-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 0.62em;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-section {
  width: 100%;
  max-width: var(--section-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.pricing-intro {
  position: sticky;
  top: 112px;
}

.pricing-intro h2 {
  max-width: 9ch;
}

.pricing-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.value-list {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.value-list article {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(232, 231, 233, 0.11);
}

.value-list h3,
.price-card h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.85rem);
  letter-spacing: 0;
}

.value-list p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 20px;
}

.price-card {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(232, 231, 233, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(232, 231, 233, 0.085), rgba(232, 231, 233, 0.035)),
    rgba(2, 5, 4, 0.72);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.price-card-featured {
  border-color: rgba(189, 126, 237, 0.58);
  background:
    radial-gradient(circle at 74% 0%, rgba(189, 126, 237, 0.2), transparent 44%),
    linear-gradient(180deg, rgba(232, 231, 233, 0.095), rgba(232, 231, 233, 0.035)),
    rgba(2, 5, 4, 0.82);
}

.plan-label-blue {
  color: var(--blue);
}

.price-card > p:not(.plan-label) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.pill {
  width: fit-content;
  margin-top: 24px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(189, 126, 237, 0.22);
  color: rgba(232, 231, 233, 0.86);
  font-size: 0.82rem;
  font-weight: 760;
}

.pill-blue {
  background: rgba(111, 141, 255, 0.22);
}

.price {
  margin: 44px 0 14px;
  font-size: clamp(4.4rem, 7vw, 7.2rem);
  font-weight: 760;
  line-height: 0.8;
}

.price span,
.price small {
  font-size: 0.34em;
  font-weight: 560;
}

.price small {
  color: var(--muted);
}

.price-card ul {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(232, 231, 233, 0.13);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-card small {
  margin-top: 16px;
  color: rgba(232, 231, 233, 0.54);
  text-align: center;
}

.faq-section {
  width: 100%;
  max-width: calc(1060px + (var(--page-gutter) * 2));
  margin: 0 auto;
}

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

.faq-list details {
  border: 1px solid rgba(232, 231, 233, 0.14);
  border-radius: 8px;
  background: rgba(232, 231, 233, 0.045);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.site-footer {
  width: 100%;
  max-width: var(--section-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  padding: 58px var(--page-gutter);
  border-top: 1px solid rgba(232, 231, 233, 0.11);
}

.site-footer img {
  width: 118px;
  height: auto;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
}

.reveal-panel {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

  .nav-links {
    display: none;
  }

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

  .hero-product {
    order: -1;
  }

  .pricing-intro {
    position: relative;
    top: auto;
  }

  .pricing-intro h2 {
    max-width: 12ch;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 8.5vw, 3.8rem);
  }

  .hero-copy h1 .hero-line {
    white-space: normal;
  }

  .workflow-sticky {
    align-items: center;
    padding: 78px 22px 22px;
  }

  .editorial-guide {
    min-height: auto;
    justify-content: start;
  }

  .editorial-guide h2 {
    max-width: 14ch;
    font-size: clamp(2.05rem, 7.5vw, 3.1rem);
  }

  .progress-rule {
    margin: 20px 0 14px;
  }

  .copy-track {
    min-height: 108px;
    gap: 0;
    transform: none;
  }

  .workflow-step {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 8px, 0);
  }

  .workflow-step.is-past {
    opacity: 0;
  }

  .workflow-step.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .stage-viewport {
    height: 62svh;
    min-height: 440px;
  }

  .stage-title {
    max-width: min(680px, calc(100% - 52px));
    top: 28px;
    left: 26px;
    font-size: 3.25rem;
  }

  .photo-card {
    --frame-side: 5px;
    --frame-top: 5px;
    --frame-bottom: 11px;
    width: clamp(48px, 15vw, 78px);
  }

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

  .feature-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-card-blank {
    display: none;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    min-height: 58px;
    padding: 10px;
  }

  .brand-link img {
    width: 120px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .button-primary {
    grid-column: 1 / -1;
  }

  .hero-section {
    min-height: 88svh;
    gap: 24px;
    padding: 88px 18px 36px;
  }

  .hero-product {
    order: 0;
  }

  .hero-product img {
    max-height: 188px;
    object-fit: cover;
    object-position: top center;
  }

  .hero-subcopy {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 8vw, 3.1rem);
  }

  .chapter-strip {
    grid-template-columns: 1fr 1fr;
  }

  .chapter-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(232, 231, 233, 0.1);
  }

  .chapter-strip span:nth-child(4) {
    border-top: 1px solid rgba(232, 231, 233, 0.1);
  }

  .one-liner {
    min-height: 66svh;
  }

  .one-liner p {
    font-size: clamp(1.9rem, 8.2vw, 3rem);
  }

  .workflow-section {
    min-height: 500vh;
  }

  .workflow-sticky {
    padding: 70px 16px 16px;
  }

  .stage-viewport {
    height: 58svh;
    min-height: 380px;
  }

  .stage-title {
    max-width: calc(100% - 32px);
    top: 24px;
    left: 16px;
    font-size: 2.35rem;
  }

  .photo-card {
    width: clamp(42px, 14vw, 64px);
  }

  .photo-card.is-gallery {
    --gallery-frame: 7px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

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