:root {
  --paper: #f4efe8;
  --paper-deep: #e8ddd2;
  --ink: #2d1d19;
  --muted: #75655c;
  --line: rgba(45, 29, 25, 0.16);
  --coral: #de896e;
  --coral-light: #f5c7b7;
  --sage: #a9ae91;
  --white: #fffdfa;
  --page: min(1280px, calc(100vw - 96px));
}

* { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 16%, rgba(222, 137, 110, 0.15), transparent 27rem),
    var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(45,29,25,.16) 0 .4px, transparent .7px 3px),
    repeating-radial-gradient(circle at 80% 60%, rgba(255,255,255,.3) 0 .35px, transparent .7px 4px);
  background-size: 9px 11px, 13px 15px;
}

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

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

.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: var(--page);
  padding: 24px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wordmark-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(222, 137, 110, 0.13);
}

.nav-links { display: flex; gap: 32px; color: #695950; font-size: 15px; }
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  justify-self: end;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 253, 250, 0.48);
  backdrop-filter: blur(8px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(56px, 7vw, 120px);
  width: var(--page);
  min-height: max(860px, 100svh);
  margin: 0 auto;
  padding: 138px 0 72px;
  align-items: center;
}

.hero-intro {
  display: block;
}

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

h1 {
  max-width: 650px;
  margin: 0;
  color: var(--coral);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(56px, 5.6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-lede {
  max-width: 520px;
  margin: 32px 0 0;
  color: #685950;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.58;
}

.hero-actions { display: flex; align-items: flex-start; gap: 14px; margin-top: 38px; flex-direction: column; }

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 23px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  gap: 7px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(45, 29, 25, 0.16);
}

.button-primary span { color: var(--coral-light); }

.hero-actions p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-actions p::before { margin-right: 7px; color: var(--coral); content: "●"; font-size: 8px; }

.hero-stage {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: .96;
  justify-self: end;
}

.place-frame {
  position: absolute;
  inset: 6% 2% 8% 7%;
  overflow: hidden;
  border: 1px solid rgba(45, 29, 25, 0.14);
  border-radius: 42% 42% 34px 34px;
  background: #b2aaa1;
  box-shadow: 0 34px 80px rgba(64, 42, 35, 0.2), 0 0 0 8px rgba(255, 253, 250, 0.54);
}

.place-frame > img { width: 100%; height: 100%; object-fit: cover; }

.place-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(27, 16, 12, 0.65));
}

.place-meta {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-right { margin-left: auto; }

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(222, 137, 110, 0.22);
}

.source-stack {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 64px 64px auto;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(45, 29, 25, 0.11);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 20px 45px rgba(64, 42, 35, 0.14);
  backdrop-filter: blur(14px);
  transform: rotate(-3deg);
}

.source-stack img { width: 64px; height: 74px; border-radius: 11px; object-fit: cover; }

.source-stack > div {
  display: flex;
  min-width: 102px;
  padding: 7px 11px;
  flex-direction: column;
  justify-content: center;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.source-stack .source-count {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.talent-chip {
  position: absolute;
  top: 13%;
  right: -2%;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 10px;
  min-width: 225px;
  padding: 9px 12px 9px 9px;
  align-items: center;
  border: 1px solid rgba(45, 29, 25, 0.11);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.9);
  box-shadow: 0 20px 45px rgba(64, 42, 35, 0.15);
  backdrop-filter: blur(14px);
}

.talent-chip img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.talent-chip div { display: flex; flex-direction: column; }
.talent-chip strong { font-size: 14px; }
.talent-chip div span { color: var(--muted); font-family: "DM Mono", monospace; font-size: 11px; text-transform: uppercase; }

.talent-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-size: 12px;
}

.cloud-label {
  position: absolute;
  right: 7%;
  bottom: 3%;
  display: flex;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(2.5deg);
}

.stage-orbit { position: absolute; border: 1px solid rgba(222, 137, 110, 0.35); border-radius: 50%; }
.stage-orbit-one { inset: -2% 0 1% 2%; transform: rotate(-8deg); }
.stage-orbit-two { inset: 11% -5% -1% 15%; transform: rotate(13deg); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { text-align: center; }
  .hero-support { text-align: center; }
  .hero-actions { align-items: center; }
  .hero-lede { margin-right: auto; margin-left: auto; }
  .hero-stage { width: min(720px, 94vw); justify-self: center; }
}

@media (max-width: 760px) {
  :root { --page: min(100% - 30px, 1280px); }
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding-top: 126px; gap: 32px; }
  .hero-copy { text-align: left; }
  .hero-support { text-align: left; }
  h1 { font-size: clamp(52px, 16vw, 76px); }
  .hero-actions { align-items: flex-start; justify-content: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .hero-actions p { max-width: none; }
  .hero-stage { width: 100%; aspect-ratio: .88; }
  .place-frame { inset: 7% 0 12% 0; border-width: 1px; box-shadow: 0 26px 60px rgba(64, 42, 35, 0.2), 0 0 0 6px rgba(255, 253, 250, 0.54); }
  .talent-chip { top: 4%; right: -2%; min-width: 200px; transform: scale(0.88); transform-origin: top right; }
  .source-stack { left: -1%; transform: rotate(-2deg) scale(0.85); transform-origin: bottom left; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: fade-up 700ms 100ms both; }
  .place-frame { animation: fade-in 900ms 250ms both; }
  .source-stack { animation: float-in-left 700ms 700ms both; }
  .talent-chip { animation: float-in-right 700ms 850ms both; }
  .cloud-label { animation: fade-up 600ms 1000ms both; }
}

@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } }
@keyframes fade-in { from { opacity: 0; transform: scale(0.98); } }
@keyframes float-in-left { from { opacity: 0; transform: translate(-18px, 12px) rotate(-3deg); } }
@keyframes float-in-right { from { opacity: 0; transform: translate(18px, -8px); } }

/* Shared section language */
.section-shell { width: var(--page); margin: 0 auto; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Section 02: benefits */
.section-dark {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 150px) 0;
  border-radius: 54px 54px 0 0;
  background: var(--ink);
  color: var(--paper);
}

.section-dark::before {
  position: absolute;
  top: -280px;
  right: -220px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(222, 137, 110, 0.26);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 100px rgba(222, 137, 110, 0.035), 0 0 0 200px rgba(222, 137, 110, 0.025);
}

.benefits-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(64px, 8vw, 110px) 0 56px;
  align-items: end;
}

.benefits-intro h2,
.possibilities-intro h2,
.pricing-copy h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(58px, 7.3vw, 108px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.benefits-intro h2 em,
.possibilities-intro h2 em,
.pricing-copy h2 em {
  color: var(--coral);
  font-style: italic;
  font-weight: 400;
}

.benefits-intro p,
.possibilities-intro > p {
  max-width: 430px;
  margin: 0;
  color: #b7a79c;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.6;
}

.production-board {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.5fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 232, 0.16);
  border-radius: 32px;
  background: #382621;
}

.production-image { position: relative; min-height: 500px; margin: 0; overflow: hidden; }

.production-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(26, 15, 12, 0.02), rgba(26, 15, 12, 0.65));
}

.production-image img { width: 100%; height: 100%; object-fit: cover; }

.production-image figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.production-image figcaption span {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.production-image figcaption strong {
  color: var(--coral-light);
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
}

.production-stamp {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(29, 16, 13, 0.42);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.remote-team {
  display: flex;
  min-width: 0;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(244, 239, 232, 0.16);
}

.remote-kicker {
  margin: 0 0 23px;
  color: var(--coral);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.remote-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px 0;
  align-items: center;
  border-top: 1px solid rgba(244, 239, 232, 0.12);
}

.remote-row > div { display: flex; min-width: 0; flex-direction: column; }
.remote-row strong { overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.remote-row div span { color: #ad9c91; font-size: 13px; }

.remote-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  object-fit: cover;
  font-family: "Newsreader", Georgia, serif;
}

.remote-avatar-one { background: var(--coral); color: var(--ink); }
.remote-avatar-you { background: var(--sage); color: var(--ink); }

.remote-status {
  color: #c3b6ad;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 1px; background: rgba(244, 239, 232, 0.15); }

.benefit-card {
  display: flex;
  min-height: 235px;
  padding: 42px 36px;
  justify-content: center;
  flex-direction: column;
  background: var(--ink);
}

.benefit-card h3 {
  max-width: 280px;
  margin: 0 0 17px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.benefit-card p { max-width: 330px; margin: 0; color: #b6a69c; font-size: 16px; line-height: 1.65; }

/* Section 03: possibilities */
.possibilities { padding: clamp(90px, 11vw, 164px) 0; }

.possibilities-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(64px, 8vw, 110px) 0 64px;
  align-items: end;
}

.possibilities-intro h2 em { color: var(--coral); }
.possibilities-intro > p { color: #77675e; }

.mood-lab {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 34px 70px rgba(66, 43, 36, 0.08);
}

.mood-copy { display: flex; padding: 46px; flex-direction: column; }

.mood-kicker {
  margin: 0;
  color: var(--coral);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mood-tabs { display: grid; gap: 4px; margin: 42px 0; }

.mood-tab {
  display: flex;
  padding: 14px 0;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: #a08f84;
  cursor: pointer;
  font: inherit;
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease;
}

.mood-tab::before { width: 0; color: var(--coral); content: "→"; overflow: hidden; transition: width 180ms ease; }
.mood-tab:hover { color: var(--ink); }
.mood-tab.is-active { padding-left: 2px; color: var(--ink); }
.mood-tab.is-active::before { width: 30px; }

.mood-description { margin-top: auto; }
.mood-counter { color: var(--muted); font-family: "DM Mono", monospace; font-size: 11px; }
.mood-description h3 { margin: 15px 0 14px; font-family: "Newsreader", Georgia, serif; font-size: 36px; font-weight: 400; letter-spacing: -0.04em; line-height: 1.04; }
.mood-description p { margin: 0; color: #6f6057; font-size: 16px; line-height: 1.65; }

.mood-progress { height: 2px; margin-top: 30px; background: var(--paper-deep); }
.mood-progress span { display: block; width: 33.333%; height: 100%; background: var(--coral); transition: width 320ms ease; }

.mood-canvas { position: relative; min-height: 640px; overflow: hidden; background: #5e4e45; }

.mood-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transform: scale(1.035);
  transition: opacity 600ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease;
}

.mood-canvas[data-active-mood="first-person"] .mood-image-first,
.mood-canvas[data-active-mood="after-dark"] .mood-image-night,
.mood-canvas[data-active-mood="creator-led"] .mood-image-creator { opacity: 1; transform: scale(1); }

.mood-canvas[data-active-mood="after-dark"] .mood-image-night { filter: contrast(1.06) saturate(1.2) brightness(0.78); }
.mood-canvas[data-active-mood="creator-led"] .mood-image-creator { filter: sepia(0.18) saturate(0.9); }

.mood-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,14,11,0.06), rgba(24,14,11,0.55)); }

.mood-viewfinder { position: absolute; inset: 28px; pointer-events: none; }
.mood-viewfinder span { position: absolute; width: 35px; height: 35px; border-color: rgba(255,255,255,0.72); }
.mood-viewfinder span:nth-child(1) { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.mood-viewfinder span:nth-child(2) { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.mood-viewfinder span:nth-child(3) { right: 0; bottom: 0; border-right: 1px solid; border-bottom: 1px solid; }
.mood-viewfinder span:nth-child(4) { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }

.mood-canvas-label {
  position: absolute;
  right: 52px;
  bottom: 45px;
  left: 52px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: white;
}

.mood-canvas-label span { font-family: "DM Mono", monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.mood-canvas-label strong { max-width: 400px; font-family: "Newsreader", Georgia, serif; font-size: clamp(28px, 3.3vw, 50px); font-style: italic; font-weight: 400; text-align: right; }

.creator-cameo {
  position: absolute;
  top: 52px;
  right: 46px;
  display: flex;
  gap: 9px;
  padding: 7px 12px 7px 7px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,253,250,0.88);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(-8px);
  transition: opacity 400ms ease, transform 400ms ease;
  backdrop-filter: blur(10px);
}

.creator-cameo img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.mood-canvas[data-active-mood="creator-led"] .creator-cameo { opacity: 1; transform: none; }

.possibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }

.possibility-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(360px, 1fr) auto;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 250, 0.72);
}

.possibility-art { position: relative; min-height: 360px; overflow: hidden; background: var(--paper-deep); }
.possibility-art > img:first-child { width: 100%; height: 100%; object-fit: cover; }

.possibility-copy { display: flex; min-height: 235px; padding: 36px; flex-direction: column; justify-content: flex-end; }
.possibility-copy h3 { margin: 0 0 12px; font-family: "Newsreader", Georgia, serif; font-size: 34px; font-weight: 400; letter-spacing: -0.035em; line-height: 1.04; }
.possibility-copy p { max-width: 420px; margin: 0; color: #6f6057; font-size: 16px; line-height: 1.65; }

.possibility-person {
  position: absolute;
  right: 12%;
  bottom: -8%;
  width: 44%;
  height: 58%;
  border: 7px solid rgba(255,253,250,0.86);
  border-radius: 50% 50% 18px 18px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(32,17,13,.22);
}

.possibility-art-people > span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--coral);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.possibility-art-mood::after { position: absolute; inset: 0; content: ""; background: linear-gradient(135deg, rgba(255,190,160,.18), rgba(30,16,12,.48)); }

.mood-swatch {
  position: absolute;
  z-index: 2;
  right: 18px;
  min-width: 84px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(30,16,12,.38);
  color: white;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.mood-swatch-one { top: 20px; }
.mood-swatch-two { top: 58px; background: var(--coral); color: var(--ink); border-color: transparent; }
.mood-swatch-three { top: 96px; }

.possibility-card-wide { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); grid-template-rows: 1fr; min-height: 390px; }

.content-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px; overflow: hidden; background: var(--ink); }

.content-strip figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 16px; transform: translateY(15px); }
.content-strip figure:nth-child(2) { transform: translateY(-14px); }
.content-strip figure:nth-child(4) { transform: translateY(-20px); }
.content-strip img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84); }
.content-strip span { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px; border-radius: 999px; background: rgba(24,14,11,.56); color: white; font-family: "DM Mono", monospace; font-size: 11px; text-align: center; text-transform: uppercase; backdrop-filter: blur(8px); }

/* Section 04: pricing */
.pricing {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 11vw, 160px) 0;
  background: var(--coral);
  color: var(--ink);
}

.pricing-arc {
  position: absolute;
  top: -52vw;
  right: -18vw;
  width: 92vw;
  height: 92vw;
  border: 1px solid rgba(45,29,25,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.035), 0 0 0 200px rgba(255,255,255,.025), 0 0 0 300px rgba(255,255,255,.015);
}

.pricing-shell { position: relative; z-index: 2; }

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(310px, .64fr) minmax(0, 1.36fr);
  gap: clamp(38px, 5vw, 72px);
  padding-top: clamp(70px, 9vw, 125px);
  align-items: center;
}

.pricing-kicker { margin: 0 0 28px; font-family: "DM Mono", monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.pricing-copy h2 { max-width: 800px; }
.pricing-copy h2 em { color: var(--white); }
.pricing-copy > p:last-child { max-width: 510px; margin: 35px 0 0; color: rgba(45,29,25,.76); font-size: 20px; line-height: 1.65; }

.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  min-width: 0;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(45,29,25,.19);
  border-radius: 30px;
  background: rgba(255,253,250,.88);
  box-shadow: 0 34px 80px rgba(81, 42, 29, .2);
  backdrop-filter: blur(12px);
}

.price-card-top { display: flex; align-items: center; justify-content: space-between; font-size: 15px; font-weight: 600; }
.price-pill { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-family: "DM Mono", monospace; font-size: 11px; font-weight: 400; text-transform: uppercase; }
.price-line { display: flex; margin: 32px 0 5px; align-items: flex-start; font-family: "Newsreader", Georgia, serif; }
.price-line span { margin-top: 11px; font-size: 33px; }
.price-line strong { font-size: clamp(78px, 6.6vw, 94px); font-weight: 400; letter-spacing: -.07em; line-height: .8; }
.price-unit { margin: 0; color: var(--muted); font-size: 14px; }

.price-card ul { padding: 0; margin: 30px 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: grid; grid-template-columns: 17px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; font-size: 15px; }
.price-card li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); content: ""; }

.price-button { width: 100%; margin-top: auto; justify-content: space-between; background: var(--ink); color: white; }
.price-card-featured { border-color: rgba(255,255,255,.12); background: var(--ink); color: var(--white); }
.price-card-featured .price-pill { border-color: rgba(255,255,255,.2); color: var(--coral-light); }
.price-card-featured .price-unit { color: rgba(255,253,250,.62); }
.price-card-featured ul { border-color: rgba(255,255,255,.16); }
.price-card-featured li { border-color: rgba(255,255,255,.16); }
.price-card-featured .price-button { background: var(--coral); color: var(--ink); }
.price-fine { max-width: 520px; margin: 22px 0 0 auto; color: rgba(45,29,25,.7); font-family: "DM Sans", sans-serif; font-size: 13px; line-height: 1.55; text-align: center; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: var(--page);
  min-height: 120px;
  margin: 0 auto;
  align-items: center;
  color: #74645b;
  font-size: 14px;
}

.site-footer > p { font-family: "Newsreader", Georgia, serif; font-size: 19px; font-style: italic; }
.site-footer > div { display: flex; gap: 20px; justify-self: end; font-family: "DM Mono", monospace; font-size: 11px; text-transform: uppercase; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 1040px) {
  .production-board { grid-template-columns: 1fr; }
  .remote-team { border-top: 1px solid rgba(244,239,232,.16); border-left: 0; }
  .remote-row { grid-template-columns: 44px 1fr auto; }
  .mood-lab { grid-template-columns: 1fr; }
  .mood-copy { min-height: 480px; }
  .possibility-card { grid-template-columns: 1fr; }
  .possibility-card-wide { grid-template-columns: 1fr; grid-template-rows: minmax(330px, 1fr) auto; }
  .pricing-layout { grid-template-columns: 1fr; }
  .price-options { max-width: 850px; }
  .price-fine { margin-left: 0; }
}

@media (max-width: 780px) {
  .section-shell { width: var(--page); }
  .section-dark { border-radius: 30px 30px 0 0; }
  .benefits-intro,
  .possibilities-intro { grid-template-columns: 1fr; }
  .benefits-intro h2,
  .possibilities-intro h2,
  .pricing-copy h2 { font-size: clamp(54px, 17vw, 78px); }
  .production-board, .mood-lab { border-radius: 22px; }
  .benefit-grid, .possibility-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 230px; }
  .possibility-card-wide { grid-column: auto; }
  .content-strip { min-height: 300px; grid-template-columns: repeat(4, minmax(130px, 1fr)); overflow-x: auto; }
  .mood-copy { min-height: 520px; padding: 30px; }
  .mood-canvas { min-height: 500px; }
  .mood-canvas-label { right: 28px; bottom: 28px; left: 28px; align-items: flex-start; flex-direction: column; }
  .mood-canvas-label strong { margin-top: 8px; text-align: left; }
  .possibility-card { grid-template-columns: 1fr; }
  .possibility-copy { min-height: 230px; }
  .price-options { grid-template-columns: 1fr; }
  .price-card { padding: 27px; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; width: var(--page); padding: 35px 0; }
  .site-footer > p { margin: 0; }
  .site-footer > div { justify-self: start; }
}

@media (max-width: 520px) {
  .production-image { min-height: 420px; }
  .remote-team { padding: 24px; }
  .remote-status { display: none; }
  .remote-row { grid-template-columns: 44px 1fr; }
  .benefit-card { padding: 28px; }
  .mood-tabs { margin: 28px 0; }
  .mood-tab { font-size: 22px; }
  .mood-description h3 { font-size: 30px; }
  .possibility-card { min-height: auto; }
  .possibility-art { min-height: 300px; }
  .price-line strong { font-size: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .mood-image, .creator-cameo { transition: none; }
}
