/* Direct production landing-page variants ----------------------------- */

.production-lander {
  --lander-bg: #ffffff;
  --lander-ink: #18191c;
  --lander-muted: #696b72;
  --lander-faint: #8d8f96;
  --lander-surface: #f5f6f7;
  --lander-surface-2: #eceef1;
  --lander-border: #dfe1e5;
  --lander-accent: #17181b;
  --lander-accent-ink: #ffffff;
  --lander-dot: #d9dbe0;
  background: var(--lander-bg);
  color: var(--lander-ink);
}

.production-lander .site-header {
  position: relative;
  height: 58px;
  border-bottom-color: var(--lander-border);
  background: color-mix(in srgb, var(--lander-bg) 94%, transparent);
}

.production-lander .nav-shell {
  width: min(100% - 48px, 1380px);
}

.production-lander .wordmark,
.production-lander .brand-logo {
  width: 120px;
  min-width: 120px;
}

.production-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--lander-muted);
  font-size: 13px;
  font-weight: 500;
}

.production-nav a {
  transition: color 150ms ease;
}

.production-nav a:hover,
.production-nav a[aria-current="page"] {
  color: var(--lander-ink);
}

.production-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.production-nav-actions .login-link {
  color: var(--lander-muted);
}

.production-nav-actions .button.primary {
  min-height: 34px;
  padding: 0 15px;
  border-color: var(--lander-accent);
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
  font-size: 12px;
}

.production-menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--lander-border);
  border-radius: 50%;
  background: transparent;
  color: var(--lander-ink);
}

.production-menu-toggle svg {
  width: 15px;
  height: 15px;
}

.mockups-switcher {
  position: relative;
}

.mockups-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.mockups-toggle svg {
  width: 9px;
  transition: transform 160ms ease;
}

.mockups-switcher.is-open .mockups-toggle {
  color: var(--lander-ink);
}

.mockups-switcher.is-open .mockups-toggle svg {
  transform: rotate(180deg);
}

.mockups-dropdown {
  position: absolute;
  z-index: 100;
  top: calc(100% + 11px);
  left: 50%;
  display: none;
  width: 390px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--lander-border);
  border-radius: 15px;
  background: color-mix(in srgb, var(--lander-bg) 97%, transparent);
  box-shadow: 0 20px 50px rgba(18, 19, 22, 0.16);
  color: var(--lander-ink);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.mockups-switcher.is-open .mockups-dropdown {
  display: grid;
}

.mockups-group {
  min-width: 0;
  padding: 6px;
}

.mockups-group p {
  margin: 0 0 5px;
  padding: 0 7px 6px;
  border-bottom: 1px solid var(--lander-border);
  color: var(--lander-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-nav .mockups-group a {
  display: block;
  padding: 8px 9px;
  border-radius: 8px;
  color: var(--lander-muted);
  font-size: 12px;
  line-height: 1.2;
}

.production-nav .mockups-group a:hover {
  background: var(--lander-surface);
  color: var(--lander-ink);
}

.production-nav .mockups-group a[aria-current="page"] {
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
}

.production-lander .production-theme-toggle {
  width: 54px;
  min-width: 54px;
  height: 30px;
  padding: 0 7px;
  border-color: var(--lander-border);
  background: var(--lander-surface);
  color: var(--lander-muted);
}

.production-lander .production-theme-toggle::after {
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  border-color: var(--lander-border);
  background: var(--lander-bg);
}

.production-lander .production-theme-toggle span {
  font-size: 11px;
}

html[data-theme="dark"] .production-lander .production-theme-toggle::after {
  transform: translateX(24px);
}

.production-hero {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  padding: 70px 28px 88px;
  background-color: var(--lander-bg);
  background-image: radial-gradient(circle, var(--lander-dot) 0.9px, transparent 1px);
  background-size: 22px 22px;
}

.production-hero::before {
  position: absolute;
  z-index: 0;
  top: 18px;
  left: 50%;
  width: min(74vw, 900px);
  height: 330px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lander-bg) 90%, transparent);
  filter: blur(32px);
  content: "";
  transform: translateX(-50%);
}

.production-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.production-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--lander-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.production-eyebrow::before {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.production-copy h1 {
  max-width: 950px;
  margin: 0 auto;
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.production-copy > p:not(.production-eyebrow) {
  max-width: 660px;
  margin: 23px auto 0;
  color: var(--lander-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.production-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 27px;
}

.production-hero-actions .button {
  min-height: 43px;
  padding: 0 18px;
  border-color: var(--lander-border);
  background: var(--lander-bg);
  color: var(--lander-ink);
  font-size: 13px;
}

.production-hero-actions .button.primary {
  border-color: var(--lander-accent);
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
}

.production-hero-actions .text-action {
  color: var(--lander-muted);
  font-size: 12px;
  font-weight: 500;
}

.production-product {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1120px);
  flex-direction: column;
  margin: 58px auto 0;
}

.production-composer {
  position: relative;
  z-index: 5;
  width: min(100%, 850px);
  min-height: 116px;
  margin: 0 auto;
  padding: 14px 15px 11px;
  border: 1px solid color-mix(in srgb, var(--lander-border) 88%, #aeb0b7);
  border-radius: 18px;
  background: color-mix(in srgb, var(--lander-bg) 97%, #ffffff);
  box-shadow: 0 18px 48px rgba(25, 27, 31, 0.1);
}

.production-composer-topline {
  display: flex;
  min-height: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--lander-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.production-composer-context {
  max-width: 52%;
  overflow: hidden;
  color: #18a56f;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.production-input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 9px 1px 5px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--lander-ink);
  font-size: 15px;
  line-height: 1.45;
}

.production-input::placeholder {
  color: var(--lander-faint);
  opacity: 1;
}

.production-composer-tools,
.production-composer-tools > div {
  display: flex;
  align-items: center;
}

.production-composer-tools {
  min-height: 31px;
  justify-content: space-between;
}

.production-composer-tools > div {
  gap: 5px;
}

.production-tool,
.production-send {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--lander-border) 88%, #b0b2b8);
  border-radius: 50%;
  background: transparent;
  color: var(--lander-ink);
  font-size: 17px;
}

.production-tool svg {
  width: 15px;
  height: 15px;
}

.production-mode {
  height: 31px;
  padding: 0 9px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--lander-muted);
  font-size: 11px;
}

.production-send {
  border-color: transparent;
  background: var(--lander-surface-2);
  color: var(--lander-faint);
  font-size: 15px;
  font-weight: 700;
}

.production-send.is-ready {
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
}

.production-send.is-complete {
  background: #18a56f;
  color: #ffffff;
}

.production-suggestions {
  display: none;
  flex-wrap: wrap;
  gap: 5px;
  margin: 1px 0 9px;
}

.production-suggestions button {
  height: 25px;
  padding: 0 9px;
  border: 1px solid var(--lander-border);
  border-radius: 999px;
  background: var(--lander-surface);
  color: var(--lander-muted);
  font-size: 9px;
}

.production-reels {
  order: 2;
  margin-top: 36px;
}

.production-reels > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.production-reels > header > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.production-reels h2 {
  margin: 0;
  color: var(--lander-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.production-reels header small {
  color: var(--lander-faint);
  font-size: 9px;
}

.production-reel-arrows {
  display: flex;
  gap: 5px;
}

.production-reel-arrows button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--lander-border);
  border-radius: 50%;
  background: var(--lander-bg);
  color: var(--lander-muted);
  font-size: 11px;
}

.production-reel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.production-reel {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--lander-border);
  border-radius: 16px;
  background: var(--lander-surface);
  color: #ffffff;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.production-reel.is-selected {
  box-shadow: 0 0 0 2px var(--lander-bg), 0 0 0 4px var(--lander-accent);
}

.production-reel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-reel-shade {
  position: absolute;
  z-index: 1;
  inset: 34% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.production-play,
.production-check {
  position: absolute;
  z-index: 3;
  top: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 18, 21, 0.58);
  backdrop-filter: blur(8px);
}

.production-play {
  left: 10px;
  width: 31px;
  height: 31px;
  font-size: 10px;
}

.production-check {
  right: 10px;
  width: 24px;
  height: 24px;
  font-size: 10px;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 150ms ease, transform 150ms ease;
}

.production-reel.is-selected .production-check {
  opacity: 1;
  transform: scale(1);
}

.production-reel-copy {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  left: 10px;
}

.production-reel-copy > span,
.production-reel-copy strong {
  display: block;
}

.production-reel-topic {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.production-reel-copy strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.production-reel-metrics {
  display: flex !important;
  gap: 7px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 7px;
}

.production-reel-metrics i {
  font-style: normal;
}

.production-result {
  order: 3;
  display: grid;
  max-height: 0;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 16px;
  border: 0 solid var(--lander-border);
  border-radius: 15px;
  background: color-mix(in srgb, var(--lander-bg) 95%, var(--lander-surface));
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 300ms ease, margin 300ms ease, padding 300ms ease, border-width 300ms ease, opacity 220ms ease, transform 300ms ease;
}

.production-demo.is-result .production-result {
  max-height: 86px;
  margin-top: 20px;
  padding-top: 13px;
  padding-bottom: 13px;
  border-width: 1px;
  opacity: 1;
  transform: translateY(0);
}

.production-result-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
  font-size: 11px;
  font-weight: 700;
}

.production-result strong,
.production-result small {
  display: block;
}

.production-result strong {
  font-size: 12px;
  font-weight: 600;
}

.production-result small {
  margin-top: 3px;
  color: var(--lander-muted);
  font-size: 10px;
}

.production-result > span:last-child {
  color: #18a56f;
  font-size: 10px;
  font-weight: 700;
}

/* Pattern Wall family ------------------------------------------------- */

.pattern-family {
  --lander-bg: #f8f7ff;
  --lander-ink: #19181e;
  --lander-muted: #706d78;
  --lander-faint: #9692a0;
  --lander-surface: #efedfb;
  --lander-surface-2: #e6e3f4;
  --lander-border: #dfdced;
  --lander-accent: #4c43d5;
  --lander-accent-ink: #ffffff;
  --lander-dot: #d8d4ef;
}

.pattern-family .production-eyebrow {
  gap: 0;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--lander-border) 72%, var(--lander-accent));
  border-radius: 999px;
  background: color-mix(in srgb, var(--lander-bg) 82%, var(--lander-surface));
  font-size: 11px;
  letter-spacing: 0.015em;
  text-transform: none;
}

.pattern-family .production-eyebrow::before {
  display: none;
}

.pattern-family .production-hero {
  min-height: 930px;
  padding-top: 53px;
}

.pattern-family .production-copy h1 {
  max-width: 830px;
  font-size: clamp(49px, 5.5vw, 78px);
}

.pattern-family .production-hero-actions {
  display: none;
}

.pattern-family .production-product {
  min-height: 420px;
  margin-top: 68px;
}

.pattern-family .production-reels {
  order: 1;
  margin-top: 0;
}

.pattern-family .production-reels > header {
  display: none;
}

.pattern-family .production-reel-grid {
  align-items: start;
  gap: 14px;
  perspective: 1000px;
}

.pattern-family .production-reel {
  aspect-ratio: 9 / 13;
  border-radius: 19px;
  box-shadow: 0 17px 38px rgba(34, 30, 68, 0.14);
}

.pattern-family .production-reel:nth-child(odd) {
  transform: translateY(28px) rotate(-1.4deg);
}

.pattern-family .production-reel:nth-child(even) {
  transform: rotate(1.4deg);
}

.pattern-family .production-reel:hover {
  transform: translateY(-3px) rotate(0);
}

.pattern-family .production-composer {
  order: 2;
  width: 84%;
  min-height: 108px;
  margin-top: -62px;
  border-color: color-mix(in srgb, var(--lander-border) 72%, var(--lander-accent));
  box-shadow: 0 29px 70px rgba(37, 32, 85, 0.2);
}

.pattern-family .production-result {
  width: 80%;
}

/* Pattern Wall variations -------------------------------------------- */

.pattern-signal {
  --lander-bg: #f4f8ff;
  --lander-ink: #151a24;
  --lander-muted: #687186;
  --lander-faint: #8e98ab;
  --lander-surface: #e8effb;
  --lander-surface-2: #dce6f6;
  --lander-border: #d4deee;
  --lander-accent: #2463eb;
  --lander-dot: #cfdaed;
}

.pattern-signal .production-hero::before {
  width: min(82vw, 1040px);
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--lander-bg) 70%, transparent), transparent 68%);
  filter: none;
}

.pattern-signal .production-product {
  width: min(100%, 1180px);
  margin-top: 76px;
}

.pattern-signal .production-reel-grid {
  grid-template-columns: 0.82fr 1fr 1.18fr 1fr 0.82fr;
  align-items: center;
  gap: 12px;
}

.pattern-signal .production-reel {
  border-radius: 24px;
}

.pattern-signal .production-reel:nth-child(1),
.pattern-signal .production-reel:nth-child(5) {
  transform: translateY(30px) scale(0.94);
}

.pattern-signal .production-reel:nth-child(2),
.pattern-signal .production-reel:nth-child(4) {
  transform: translateY(12px);
}

.pattern-signal .production-reel:nth-child(3) {
  transform: translateY(-4px);
}

.pattern-signal .production-composer {
  width: 78%;
  margin-top: -48px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(31, 76, 160, 0.18);
}

/* Ascending transition studies --------------------------------------- */

.pattern-ascent main {
  overflow: hidden;
}

.pattern-ascent .ascent-section {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  isolation: isolate;
  margin: 0;
  padding: 190px max(24px, calc((100vw - 1240px) / 2)) 132px;
  background: #090a0e;
  color: #f7f7f8;
}

.pattern-ascent .ascent-section::before {
  position: absolute;
  z-index: -1;
  background: #090a0e;
  content: "";
}

.pattern-ascent .ascent-transition {
  position: absolute;
  z-index: 1;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.pattern-ascent .ascent-transition::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--lander-accent) 34%, transparent) 0%,
    color-mix(in srgb, var(--lander-accent) 14%, transparent) 34%,
    transparent 72%
  );
  content: "";
}

.pattern-ascent .ascent-transition span {
  position: absolute;
  left: 50%;
  display: block;
  border-radius: 50%;
  transform: translateX(-50%);
}

.pattern-ascent .ascent-section .lander-section-heading,
.pattern-ascent .ascent-section .lander-process-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  margin-right: auto;
  margin-left: auto;
}

.pattern-ascent .ascent-section .lander-kicker {
  color: #b1a6ff;
}

.pattern-ascent .ascent-section .lander-section-heading h2,
.pattern-ascent .ascent-section .lander-process-grid h3 {
  color: #f7f7f8;
}

.pattern-ascent .ascent-section .lander-section-heading > p:last-child,
.pattern-ascent .ascent-section .lander-process-grid p {
  color: #a7a9b2;
}

.pattern-ascent .ascent-section .lander-process-grid {
  border-color: #282a31;
}

.pattern-ascent .ascent-section .lander-process-grid article {
  border-color: #282a31;
}

.pattern-ascent .ascent-section .lander-process-grid span {
  color: #777a85;
}

.ascent-dome .ascent-section::before {
  top: -235px;
  left: -16%;
  width: 132%;
  height: 330px;
  border: 1px solid transparent;
  border-top-color: rgba(180, 169, 255, 0.32);
  border-radius: 50% 50% 44% 44% / 100% 100% 28% 28%;
  box-shadow:
    0 -2px 0 rgba(118, 101, 255, 0.12),
    0 -18px 56px rgba(89, 70, 255, 0.13);
}

.ascent-dome .ascent-transition {
  top: -262px;
  width: min(62vw, 760px);
  height: 160px;
}

.ascent-dome .ascent-transition span {
  bottom: 42px;
  width: 8px;
  height: 8px;
  background: #d8d2ff;
  box-shadow:
    0 0 14px rgba(208, 199, 255, 0.95),
    0 0 46px rgba(112, 91, 255, 0.72);
}

.ascent-horizon .ascent-section {
  padding-top: 150px;
}

.ascent-horizon .ascent-section::before {
  top: -135px;
  left: -38%;
  width: 176%;
  height: 225px;
  border-top: 1px solid rgba(181, 171, 255, 0.3);
  border-radius: 50% 50% 34% 34% / 90% 90% 20% 20%;
  box-shadow:
    0 -1px 0 rgba(112, 94, 255, 0.12),
    0 -10px 34px rgba(91, 73, 255, 0.1);
}

.ascent-horizon .ascent-transition {
  top: -155px;
  width: min(82vw, 1040px);
  height: 92px;
}

.ascent-horizon .ascent-transition span {
  bottom: 24px;
  width: 110px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #c7bdff 48%, transparent);
  box-shadow: 0 0 24px rgba(126, 106, 255, 0.68);
}

.ascent-orb .ascent-section {
  padding-top: 178px;
}

.ascent-orb .ascent-section::before {
  top: -115px;
  left: -24%;
  width: 148%;
  height: 205px;
  border-top: 1px solid rgba(180, 169, 255, 0.24);
  border-radius: 50% 50% 40% 40% / 82% 82% 22% 22%;
  box-shadow: 0 -10px 42px rgba(90, 71, 255, 0.09);
}

.ascent-orb .ascent-transition {
  top: -210px;
  width: 330px;
  height: 230px;
}

.ascent-orb .ascent-transition::before {
  background: radial-gradient(
    circle at center,
    rgba(200, 192, 255, 0.3) 0%,
    rgba(112, 91, 255, 0.18) 28%,
    transparent 70%
  );
  filter: blur(7px);
}

.ascent-orb .ascent-transition span {
  bottom: 42px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(196, 187, 255, 0.38);
  background:
    radial-gradient(circle at 50% 28%, rgba(96, 86, 150, 0.68), transparent 34%),
    radial-gradient(circle at center, #242333 0%, #0a0b0f 72%);
  box-shadow:
    0 -8px 34px rgba(158, 143, 255, 0.32),
    0 0 72px rgba(102, 80, 255, 0.4);
}

/* Full landing-page sections ------------------------------------------ */

.lander-section {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 124px 0;
}

.lander-section-heading {
  max-width: 780px;
}

.lander-kicker {
  margin: 0 0 17px;
  color: var(--lander-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lander-section-heading h2,
.lander-story-copy h2,
.lander-final-cta h2 {
  margin: 0;
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.lander-section-heading > p:last-child,
.lander-story-copy > p:not(.lander-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--lander-muted);
  font-size: 17px;
  line-height: 1.6;
}

.lander-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--lander-border);
  border-bottom: 1px solid var(--lander-border);
}

.lander-process-grid article {
  min-height: 285px;
  padding: 28px 31px 31px;
  border-right: 1px solid var(--lander-border);
}

.lander-process-grid article:last-child {
  border-right: 0;
}

.lander-process-grid span {
  color: var(--lander-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lander-process-grid h3 {
  margin: 88px 0 13px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.lander-process-grid p {
  margin: 0;
  color: var(--lander-muted);
  font-size: 14px;
  line-height: 1.6;
}

.lander-story {
  display: grid;
  width: min(100% - 48px, 1240px);
  grid-template-columns: minmax(320px, 0.75fr) minmax(540px, 1.25fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  margin: 0 auto;
  padding: 48px 0 124px;
}

.lander-story-copy .button {
  margin-top: 29px;
  border-color: var(--lander-accent);
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
  font-size: 13px;
}

.lander-output-board {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--lander-border);
  border-radius: 24px;
  background-color: var(--lander-surface);
  background-image: radial-gradient(circle, var(--lander-dot) 0.9px, transparent 1px);
  background-size: 21px 21px;
}

.output-reel {
  position: absolute;
  top: 34px;
  left: 36px;
  width: 190px;
  aspect-ratio: 9 / 13;
  overflow: hidden;
  border-radius: 17px;
  box-shadow: 0 18px 44px rgba(25, 27, 31, 0.18);
}

.output-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.output-insight {
  position: absolute;
  padding: 18px;
  border: 1px solid var(--lander-border);
  border-radius: 17px;
  background: color-mix(in srgb, var(--lander-bg) 95%, transparent);
  box-shadow: 0 16px 42px rgba(25, 27, 31, 0.08);
}

.output-insight.hook {
  top: 66px;
  right: 30px;
  width: 49%;
}

.output-insight.plan {
  right: 48px;
  bottom: 70px;
  width: 58%;
}

.output-insight small {
  color: var(--lander-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.output-insight h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.output-insight p {
  margin: 0;
  color: var(--lander-muted);
  font-size: 13px;
  line-height: 1.55;
}

.output-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 13px;
}

.output-tags span {
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--lander-surface-2);
  color: var(--lander-muted);
  font-size: 8px;
}

.lander-use-cases {
  padding: 105px max(24px, calc((100vw - 1240px) / 2));
  background: var(--lander-surface);
}

.lander-use-cases > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.lander-use-cases h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(39px, 4.5vw, 63px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1;
}

.lander-use-cases > header p {
  max-width: 400px;
  margin: 0;
  color: var(--lander-muted);
  line-height: 1.6;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.use-case-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--lander-border);
  border-radius: 18px;
  background: var(--lander-bg);
}

.use-case-grid .use-case-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
  font-size: 12px;
  font-weight: 700;
}

.use-case-grid h3 {
  margin: 70px 0 11px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.use-case-grid p {
  margin: 0;
  color: var(--lander-muted);
  font-size: 14px;
  line-height: 1.6;
}

.lander-pricing {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 124px 0;
}

.lander-pricing > header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.lander-pricing h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.052em;
}

.lander-pricing > header p {
  margin: 18px 0 0;
  color: var(--lander-muted);
  font-size: 16px;
}

.lander-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--lander-border);
  border-radius: 22px;
}

.lander-plan {
  position: relative;
  min-height: 410px;
  padding: 28px;
  border-right: 1px solid var(--lander-border);
  background: var(--lander-bg);
}

.lander-plan:last-child {
  border-right: 0;
}

.lander-plan.featured {
  background: var(--lander-surface);
}

.lander-plan-tag {
  position: absolute;
  top: 26px;
  right: 25px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lander-plan-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.lander-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 22px 0 12px;
}

.lander-price strong {
  font-size: 47px;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.lander-price span,
.lander-plan > p:not(.lander-plan-name) {
  color: var(--lander-muted);
  font-size: 13px;
}

.lander-plan > p:not(.lander-plan-name) {
  min-height: 40px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.lander-plan .button {
  width: 100%;
  min-height: 41px;
  border-color: var(--lander-border);
  background: var(--lander-bg);
  color: var(--lander-ink);
  font-size: 12px;
}

.lander-plan.featured .button {
  border-color: var(--lander-accent);
  background: var(--lander-accent);
  color: var(--lander-accent-ink);
}

.lander-plan ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--lander-muted);
  font-size: 12px;
  list-style: none;
}

.lander-plan li::before {
  margin-right: 8px;
  color: var(--lander-ink);
  content: "✓";
}

.lander-final-cta {
  width: min(100% - 48px, 1240px);
  margin: 0 auto 70px;
  padding: 92px 30px;
  border-radius: 26px;
  background-color: var(--lander-accent);
  background-image: radial-gradient(circle, color-mix(in srgb, var(--lander-accent-ink) 23%, transparent) 0.8px, transparent 1px);
  background-size: 21px 21px;
  color: var(--lander-accent-ink);
  text-align: center;
}

.lander-final-cta h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.lander-final-cta p {
  max-width: 600px;
  margin: 20px auto 0;
  color: color-mix(in srgb, var(--lander-accent-ink) 72%, transparent);
  font-size: 16px;
  line-height: 1.55;
}

.lander-final-cta .button {
  margin-top: 28px;
  border-color: var(--lander-accent-ink);
  background: var(--lander-accent-ink);
  color: var(--lander-accent);
  font-size: 13px;
}

.production-footer {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 20px max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--lander-border);
  background: var(--lander-bg);
}

.production-footer .brand-logo {
  width: 105px;
  min-width: 105px;
}

.production-footer p {
  margin: 0;
  color: var(--lander-muted);
  font-size: 11px;
}

.production-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--lander-muted);
  font-size: 11px;
}

/* Shared light and dark modes ----------------------------------------- */

html[data-theme="dark"] .production-lander {
  color-scheme: dark;
  --lander-bg: #101115;
  --lander-ink: #f6f6f7;
  --lander-muted: #a4a7af;
  --lander-faint: #7c808a;
  --lander-surface: #1a1c22;
  --lander-surface-2: #252830;
  --lander-border: #30333c;
  --lander-dot: #292c34;
}

html[data-theme="dark"] .pattern-family {
  --lander-accent: #a99cff;
  --lander-accent-ink: #17151e;
}

html[data-theme="dark"] .brand-logo-light {
  display: none;
}

html[data-theme="dark"] .brand-logo-dark {
  display: block;
}

/* Production responsiveness ------------------------------------------- */

@media (max-width: 1040px) {
  .production-hero {
    min-height: auto;
  }

  .production-reel-grid {
    grid-template-columns: repeat(5, 190px);
    justify-content: flex-start;
    overflow-x: auto;
    padding: 3px 3px 12px;
    scrollbar-width: none;
  }

  .lander-story {
    grid-template-columns: 1fr;
  }

  .lander-story-copy {
    max-width: 760px;
  }

  .lander-output-board {
    width: min(100%, 760px);
  }
}

@media (max-width: 820px) {
  .production-lander .nav-shell {
    width: calc(100% - 28px);
  }

  .production-nav,
  .production-nav-actions .login-link {
    display: none;
  }

  .production-menu-toggle {
    display: grid;
  }

  .production-nav-actions {
    gap: 7px;
  }

  .production-nav-actions .button.primary {
    min-height: 32px;
    padding: 0 11px;
    font-size: 10px;
  }

  .production-lander .brand-logo,
  .production-lander .wordmark {
    width: 120px;
    min-width: 120px;
  }

  .production-menu-open .production-nav {
    position: absolute;
    z-index: 80;
    top: 58px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - 58px);
    overflow-y: auto;
    padding: 10px 14px;
    border-bottom: 1px solid var(--lander-border);
    background: var(--lander-bg);
    box-shadow: 0 16px 32px rgba(20, 21, 24, 0.08);
  }

  .production-menu-open .production-nav > a,
  .production-menu-open .mockups-toggle {
    width: 100%;
    padding: 12px 5px;
    border-bottom: 1px solid var(--lander-border);
  }

  .production-menu-open .mockups-toggle {
    justify-content: space-between;
    color: var(--lander-muted);
    text-align: left;
  }

  .production-menu-open .mockups-switcher:not(.is-open) .mockups-toggle {
    border-bottom: 0;
  }

  .production-menu-open .mockups-dropdown {
    position: static;
    width: 100%;
    gap: 4px;
    padding: 8px 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    backdrop-filter: none;
  }

  .production-menu-open .mockups-group {
    padding: 5px 2px;
  }

  .production-menu-open .mockups-group p {
    padding-right: 6px;
    padding-left: 6px;
  }

  .production-menu-open .production-nav .mockups-group a {
    padding: 9px 7px;
    border: 0;
  }

  .production-copy h1,
  .pattern-family .production-copy h1 {
    font-size: clamp(45px, 9vw, 66px);
  }

  .lander-process-grid,
  .use-case-grid,
  .lander-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lander-process-grid article,
  .lander-plan {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--lander-border);
  }

  .lander-process-grid article:last-child,
  .lander-plan:last-child {
    border-bottom: 0;
  }

  .lander-process-grid h3 {
    margin-top: 48px;
  }

  .lander-use-cases > header {
    display: block;
  }

  .lander-use-cases > header p {
    margin-top: 20px;
  }

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

  .production-footer p {
    display: none;
  }
}

@media (max-width: 430px) {
  .production-nav-actions .button.primary {
    display: none;
  }
}

@media (max-width: 620px) {
  .production-hero {
    padding: 47px 14px 68px;
  }

  .production-copy h1,
  .pattern-family .production-copy h1 {
    font-size: clamp(42px, 11.5vw, 56px);
  }

  .production-copy > p:not(.production-eyebrow) {
    margin-top: 18px;
    font-size: 14px;
  }

  .production-hero-actions {
    margin-top: 22px;
  }

  .production-hero-actions .text-action {
    display: none;
  }

  .production-product {
    margin-top: 43px;
  }

  .production-composer {
    min-height: 108px;
    padding: 12px 12px 9px;
  }

  .production-input {
    min-height: 42px;
    font-size: 14px;
  }

  .production-reels > header > div:first-child {
    display: block;
  }

  .production-reels header small {
    display: block;
    margin-top: 3px;
  }

  .production-reel-grid {
    grid-template-columns: repeat(5, 154px);
  }

  .pattern-family .production-hero {
    min-height: 810px;
  }

  .pattern-family .production-product {
    min-height: 350px;
    margin-top: 55px;
  }

  .pattern-family .production-reel-grid {
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
  }

  .pattern-family .production-reel {
    width: 144px;
    min-width: 144px;
  }

  .pattern-family .production-reel:nth-child(n + 4) {
    display: none;
  }

  .pattern-family .production-composer {
    width: 100%;
    margin-top: -44px;
  }

  .pattern-ascent .ascent-section {
    width: 100%;
    padding: 132px 14px 88px;
  }

  .ascent-dome .ascent-section::before {
    top: -148px;
    left: -38%;
    width: 176%;
    height: 218px;
  }

  .ascent-dome .ascent-transition {
    top: -176px;
    width: 90vw;
    height: 112px;
  }

  .ascent-dome .ascent-transition span {
    bottom: 31px;
  }

  .ascent-horizon .ascent-section {
    padding-top: 112px;
  }

  .ascent-horizon .ascent-section::before {
    top: -94px;
    left: -60%;
    width: 220%;
    height: 156px;
  }

  .ascent-horizon .ascent-transition {
    top: -113px;
    width: 94vw;
    height: 74px;
  }

  .ascent-horizon .ascent-transition span {
    bottom: 19px;
    width: 82px;
  }

  .ascent-orb .ascent-section {
    padding-top: 136px;
  }

  .ascent-orb .ascent-section::before {
    top: -78px;
    left: -46%;
    width: 192%;
    height: 136px;
  }

  .ascent-orb .ascent-transition {
    top: -151px;
    width: 238px;
    height: 172px;
  }

  .ascent-orb .ascent-transition span {
    bottom: 29px;
    width: 72px;
    height: 72px;
  }

  .lander-section,
  .lander-story,
  .lander-pricing,
  .lander-final-cta {
    width: calc(100% - 28px);
  }

  .lander-section,
  .lander-pricing {
    padding: 88px 0;
  }

  .lander-section-heading h2,
  .lander-story-copy h2,
  .lander-final-cta h2,
  .lander-use-cases h2 {
    font-size: 42px;
  }

  .lander-section-heading > p:last-child,
  .lander-story-copy > p:not(.lander-kicker) {
    font-size: 15px;
  }

  .lander-story {
    gap: 45px;
    padding-bottom: 88px;
  }

  .lander-output-board {
    min-height: 490px;
    padding: 14px;
  }

  .output-reel {
    top: 24px;
    left: 20px;
    width: 142px;
  }

  .output-insight.hook {
    top: 39px;
    right: 16px;
    width: 52%;
  }

  .output-insight.plan {
    right: 18px;
    bottom: 48px;
    width: 72%;
  }

  .output-insight {
    padding: 13px;
  }

  .output-insight h3 {
    font-size: 16px;
  }

  .output-insight p {
    font-size: 11px;
  }

  .lander-use-cases {
    padding: 86px 14px;
  }

  .lander-pricing-grid {
    border-radius: 16px;
  }

  .lander-final-cta {
    margin-bottom: 42px;
    padding: 72px 18px;
    border-radius: 20px;
  }

  .production-footer {
    display: block;
    min-height: auto;
    padding: 28px 18px;
  }

  .production-footer nav {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
