:root {
  --ink: #21171b;
  --ink-soft: #5e5357;
  --paper: #f7f2e9;
  --paper-deep: #ede5d8;
  --white: #fffdf9;
  --coral: #e96549;
  --coral-dark: #bb3f29;
  --sage: #bfcfc3;
  --sage-dark: #456255;
  --gold: #deb96e;
  --lilac: #cfc2d3;
  --line: rgba(33, 23, 27, 0.16);
  --shadow: 0 24px 70px rgba(48, 28, 34, 0.14);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 1%, rgba(233, 101, 73, 0.1), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

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

.site-shell {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 242, 233, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: -0.03em;
  font-weight: 760;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--ink);
}

.brand-mark::before {
  width: 9px;
  height: 9px;
  top: 7px;
  left: 7px;
  border-radius: 50%;
}

.brand-mark::after {
  width: 2px;
  height: 11px;
  right: -5px;
  bottom: -4px;
  transform: rotate(-42deg);
}

.brand small {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a:not(.button) {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-button span::before {
  top: -6px;
}

.menu-button span::after {
  top: 6px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 720;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(33, 23, 27, 0.18);
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.82rem;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.45);
  background: var(--white);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
}

.button--coral {
  border-color: var(--coral);
  background: var(--coral);
}

.button-arrow {
  font-size: 1.15em;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 7.6vw, 7.35rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.lead {
  max-width: 710px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero {
  overflow: clip;
  padding: 78px 0 88px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

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

.hero-copy .lead {
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.microcopy {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.memory-stage {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.memory-stage::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -8%;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sage);
  content: "";
  opacity: 0.48;
}

.clip-card {
  position: absolute;
  overflow: hidden;
  width: 180px;
  border: 6px solid var(--white);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(var(--rotation, 0deg));
}

.clip-card--vertical {
  aspect-ratio: 9 / 16;
}

.clip-card--wide {
  width: 310px;
  aspect-ratio: 16 / 10;
}

.clip-card:nth-child(1) {
  --rotation: -8deg;
  top: 14px;
  left: 7%;
}

.clip-card:nth-child(2) {
  --rotation: 6deg;
  top: 95px;
  right: 2%;
}

.clip-card:nth-child(3) {
  --rotation: -2deg;
  z-index: 3;
  top: 260px;
  left: 20%;
}

.clip-card:nth-child(4) {
  --rotation: 9deg;
  right: 4%;
  bottom: 8px;
}

.clip-scene,
.clip-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.clip-media {
  display: block;
  object-fit: cover;
}

.clip-scene {
  background:
    radial-gradient(circle at 60% 34%, rgba(255, 255, 255, 0.82) 0 7%, transparent 7.5%),
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.64) 0 11%, transparent 11.5%),
    linear-gradient(145deg, var(--scene-a, #dd9f6f), var(--scene-b, #723f52));
}

.clip-card::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(27, 16, 20, 0.72));
  content: "";
  pointer-events: none;
}

.clip-card:nth-child(2) .clip-scene {
  --scene-a: #89a999;
  --scene-b: #2e4b48;
}

.clip-card:nth-child(3) .clip-scene {
  --scene-a: #e8c788;
  --scene-b: #a94e3d;
}

.clip-card:nth-child(4) .clip-scene {
  --scene-a: #c9b9ca;
  --scene-b: #5b3f69;
}

.clip-scene::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(27, 16, 20, 0.72));
  content: "";
}

.clip-meta {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 12px;
  left: 13px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  color: var(--white);
}

.clip-meta strong {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.clip-meta span {
  font-size: 0.66rem;
  opacity: 0.76;
}

.play-dot {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(20, 13, 17, 0.18);
  backdrop-filter: blur(5px);
}

.play-dot::after {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid white;
  content: "";
}

.stage-note {
  position: absolute;
  z-index: 4;
  right: 21%;
  bottom: 70px;
  max-width: 160px;
  padding: 13px 15px;
  border: 1px solid rgba(33, 23, 27, 0.14);
  border-radius: 13px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 14px 30px rgba(48, 28, 34, 0.14);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.25;
  transform: rotate(-3deg);
}

.stage-note small {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 18px 30px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.ticker-item::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 110px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--coral {
  background: var(--coral);
  color: var(--white);
}

.section--sage {
  background: var(--sage);
}

.section--paper-deep {
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 35px;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  color: var(--ink-soft);
}

.section--ink .section-heading p,
.section--coral .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.offer-grid--single {
  grid-template-columns: 1fr;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 580px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.offer-card--sage {
  background: var(--sage);
}

.offer-card--coral {
  background: var(--coral);
  color: var(--white);
}

.offer-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pilot-pill {
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.75;
}

.offer-card h3 {
  max-width: 540px;
  margin-bottom: 21px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.offer-card > p {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.offer-card--coral > p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: auto 0 26px;
  padding-top: 44px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-result::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.offer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid currentColor;
  padding-top: 22px;
}

.offer-bottom .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.offer-link span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.offer-link:hover span {
  transform: translateX(4px);
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chaos-board {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: #d7c9d8;
}

.message-chip {
  position: absolute;
  max-width: 230px;
  padding: 13px 16px;
  border-radius: 17px 17px 17px 4px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(33, 23, 27, 0.11);
  font-size: 0.82rem;
  line-height: 1.35;
}

.message-chip:nth-child(1) {
  top: 9%;
  left: 8%;
  transform: rotate(-3deg);
}

.message-chip:nth-child(2) {
  top: 29%;
  right: 7%;
  border-radius: 17px 17px 4px 17px;
  background: var(--sage);
  transform: rotate(4deg);
}

.message-chip:nth-child(3) {
  bottom: 22%;
  left: 13%;
  transform: rotate(2deg);
}

.message-chip:nth-child(4) {
  right: 14%;
  bottom: 7%;
  border-radius: 17px 17px 4px 17px;
  background: var(--gold);
  transform: rotate(-4deg);
}

.problem-stat {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.problem-stat span {
  color: var(--coral-dark);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 13px 0 13px 32px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: white;
  content: "✓";
  text-align: center;
  font-size: 0.69rem;
  font-weight: 900;
  line-height: 18px;
}

.steps {
  counter-reset: steps;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.step {
  display: grid;
  align-items: start;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  counter-increment: steps;
  grid-template-columns: 70px minmax(200px, 0.7fr) minmax(220px, 1fr);
}

.step::before {
  content: "0" counter(steps);
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.step h3 {
  margin: 0;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.quote-band {
  padding: 95px 0;
  background: var(--gold);
  text-align: center;
}

.quote-band blockquote {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5.3vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.quote-band cite {
  display: block;
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pilot-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  grid-template-columns: 0.85fr 1.15fr;
}

.pilot-panel__label {
  min-height: 500px;
  padding: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(rgba(33, 23, 27, 0.18), rgba(33, 23, 27, 0.18)),
    repeating-linear-gradient(135deg, var(--lilac) 0 42px, #ddcedf 42px 84px);
}

.pilot-panel__label strong {
  display: inline-block;
  max-width: 330px;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.pilot-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
}

.pilot-panel__copy p {
  max-width: 620px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 750;
}

.faq-icon {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 11px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 770px;
  padding: 0 0 25px;
  color: var(--ink-soft);
}

.faq-answer[hidden] {
  display: none;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 310px;
  height: 450px;
  border: 5px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  content: "";
}

.final-cta::before {
  top: -140px;
  left: -100px;
  transform: rotate(-15deg);
}

.final-cta::after {
  right: -90px;
  bottom: -220px;
  transform: rotate(18deg);
}

.final-cta .site-shell {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 950px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  padding: 48px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  align-items: end;
  gap: 35px;
  grid-template-columns: 1fr auto;
}

.footer-brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.footer-copy {
  max-width: 520px;
  margin: 10px 0 0;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.78rem;
}

.footer-links a {
  text-underline-offset: 4px;
}

/* Offer pages */
.offer-hero {
  padding: 80px 0 92px;
}

.offer-hero-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
}

.offer-hero h1 {
  font-size: clamp(3.25rem, 7vw, 7rem);
}

.offer-hero .lead {
  margin-bottom: 28px;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 55px);
  border-radius: var(--radius-lg);
  background: var(--sage);
  box-shadow: var(--shadow);
}

.price-card--coral {
  background: var(--coral);
  color: var(--white);
}

.price-card .price-label {
  margin-bottom: 25px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card .price-big {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.8rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.price-card .price-note {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.price-card--coral .price-note {
  color: rgba(255, 255, 255, 0.73);
}

.price-card .plain-list {
  margin-bottom: 0;
}

.price-card .plain-list li {
  padding-left: 0;
}

.mini-filmstrip {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
}

.mini-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: 13px;
  background: linear-gradient(155deg, var(--gold), var(--coral-dark));
  box-shadow: 0 15px 30px rgba(33, 23, 27, 0.15);
}

.mini-frame:nth-child(2) {
  transform: translateY(22px);
  background: linear-gradient(155deg, #83a191, #344e48);
}

.mini-frame:nth-child(3) {
  background: linear-gradient(155deg, var(--lilac), #634c6b);
}

.mini-frame span {
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 9px;
  color: white;
  font-size: 0.65rem;
  font-weight: 750;
}

.details-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.detail-card__number {
  display: inline-grid;
  width: 35px;
  height: 35px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--serif);
}

.detail-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.honesty-box {
  padding: clamp(30px, 5vw, 55px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.honesty-box h3 {
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.honesty-box p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-study {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 1.15fr 0.85fr;
}

.case-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 24%, rgba(255, 255, 255, 0.27) 0 9%, transparent 9.5%),
    radial-gradient(circle at 43% 43%, rgba(255, 255, 255, 0.18) 0 13%, transparent 13.5%),
    linear-gradient(145deg, var(--gold), var(--coral-dark));
}

.case-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 13, 17, 0.06), rgba(20, 13, 17, 0.48));
  content: "";
  pointer-events: none;
}

.case-visual::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: calc(var(--radius-lg) - 14px);
  content: "";
}

.case-play {
  position: relative;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(33, 23, 27, 0.18);
  backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
}

.case-play::after {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid white;
  content: "";
}

.case-visual.is-playing .case-play::before,
.case-visual.is-playing .case-play::after {
  position: absolute;
  top: 31px;
  width: 7px;
  height: 30px;
  margin: 0;
  border: 0;
  background: currentColor;
  content: "";
}

.case-visual.is-playing .case-play::before {
  left: 32px;
}

.case-visual.is-playing .case-play::after {
  right: 32px;
}

.case-label {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 32px;
  left: 35px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 70px);
}

.case-copy p {
  color: rgba(255, 255, 255, 0.69);
}

.case-copy .note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison td:first-child {
  width: 35%;
  color: var(--ink-soft);
}

.inquiry-layout {
  display: grid;
  align-items: start;
  gap: clamp(45px, 7vw, 95px);
  grid-template-columns: 0.75fr 1.25fr;
}

.inquiry-copy {
  position: sticky;
  top: 115px;
}

.inquiry-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.form-card {
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

.field input,
.field select {
  height: 51px;
  padding: 0 14px;
}

.field textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.form-note {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-status {
  margin: 17px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--paper-deep);
  font-size: 0.8rem;
}

.form-status:empty {
  display: none;
}

.legal {
  max-width: 800px;
  padding: 80px 0 110px;
}

.legal h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal h2 {
  margin-top: 48px;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.draft-warning {
  margin: 28px 0 38px;
  padding: 18px 20px;
  border: 1px solid #b8583f;
  border-radius: 14px;
  background: rgba(233, 101, 73, 0.08);
  color: var(--ink);
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 0;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 24px;
    background: var(--paper);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a:not(.button) {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  .menu-button {
    display: inline-flex;
  }

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

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

  .memory-stage {
    width: min(100%, 620px);
    min-height: 560px;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .pilot-panel,
  .case-study,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .pilot-panel__label {
    min-height: 330px;
  }

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand small {
    display: none;
  }

  .hero,
  .offer-hero {
    padding: 48px 0 64px;
  }

  .hero-grid,
  .offer-hero-grid {
    gap: 32px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .memory-stage {
    min-height: 480px;
  }

  .clip-card {
    width: 135px;
    border-width: 4px;
    border-radius: 15px;
  }

  .clip-card--wide {
    width: 230px;
  }

  .clip-card:nth-child(1) {
    left: 2%;
  }

  .clip-card:nth-child(2) {
    right: 0;
  }

  .clip-card:nth-child(3) {
    top: 220px;
    left: 13%;
  }

  .clip-card:nth-child(4) {
    right: 1%;
  }

  .stage-note {
    right: 23%;
    bottom: 45px;
    max-width: 135px;
    font-size: 0.76rem;
  }

  .section {
    padding: 78px 0;
  }

  .section--tight {
    padding: 55px 0;
  }

  .offer-grid,
  .split,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 510px;
  }

  .offer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .chaos-board {
    min-height: 430px;
  }

  .step {
    gap: 10px 18px;
    grid-template-columns: 48px 1fr;
  }

  .step p {
    grid-column: 2;
  }

  .case-visual {
    min-height: 380px;
  }

  .comparison,
  .comparison tbody,
  .comparison tr,
  .comparison td {
    display: block;
  }

  .comparison thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .comparison tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison td {
    width: 100% !important;
    padding: 5px 0;
    border: 0;
  }

  .comparison td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--ink-soft);
    content: attr(data-label);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
