:root {
  --ink: #050505;
  --paper: #fbfcfe;
  --white: #ffffff;
  --muted: #aeb5bf;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(5, 5, 5, 0.14);
  --amber: #ffc734;
  --amber-deep: #f0a80e;
  --blue: #0e5dc4;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::selection {
  background: var(--amber);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  left: clamp(20px, 3.75vw, 48px);
  top: clamp(26px, 3.90625vw, 50px);
  z-index: 3;
  display: block;
  width: 182px;
  height: 24px;
  padding: 0;
  color: var(--white);
  background: transparent;
}

.site-header.is-scrolled {
  min-height: 24px;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.site-header .brand {
  gap: 0;
  width: 182px;
  height: 24px;
  font-size: 0;
}

.brand-logo {
  display: block;
  width: 182px;
  height: 24px;
  overflow: visible;
}

.brand sup {
  align-self: flex-start;
  margin-left: -5px;
  font-size: 7px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(3, 4px);
  align-items: end;
  gap: 2px;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  height: 10px;
  background: currentColor;
}

.brand-mark span:nth-child(2) {
  height: 14px;
}

.brand-mark span:nth-child(3) {
  height: 8px;
}

.nav-links {
  display: none;
  gap: clamp(18px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.site-header .header-cta {
  display: none;
}

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

.nav-links a:hover,
.solution-link:hover,
.footer-column a:hover {
  color: var(--amber);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 112px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 199, 52, 0.44);
  outline-offset: 3px;
}

.button-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}

.button-primary:hover {
  background: #ffdc63;
  border-color: #ffdc63;
}

.button-quiet {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button-large {
  min-height: 50px;
  padding-inline: 22px;
}

.hero {
  position: relative;
  width: 100%;
  height: clamp(520px, 62.5vw, 800px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  isolation: isolate;
  padding: 0;
  overflow: hidden;
  background: #000000;
  color: var(--white);
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  top: 50%;
  left: 50%;
  width: 144.84375%;
  height: 112.8888889%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-scrim {
  display: block;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 33.73%, #000000 94.38%);
  z-index: 1;
}

.hero-copy {
  position: absolute;
  left: clamp(20px, 3.75vw, 48px);
  top: calc(50% - 145px - 0.5px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(610px, calc(100% - 40px));
  height: 290px;
  gap: 24px;
  padding: 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.hero .eyebrow {
  display: none;
}

.hero h1,
.signals h2,
.waitlist h2,
.feature-showcase h2,
.contact h2 {
  margin: 0;
  font-family: "Domine", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  width: 100%;
  max-width: 610px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 3.75vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero p {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.hero-actions {
  display: none;
}

.solutions {
  position: relative;
  padding: 0;
  background: #000000;
  color: var(--white);
}

.solution-panel {
  position: relative;
  height: clamp(420px, 41.015625vw, 525px);
  overflow: hidden;
  background: #000000;
}

.solution-panel + .solution-panel {
  margin-top: 18px;
}

.solution-panel + .solution-panel::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  z-index: 4;
  height: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 199, 52, 0.18), rgba(255, 199, 52, 0) 22%),
    #000000;
  pointer-events: none;
}

.solution-panel-transfer {
  height: clamp(420px, 41.015625vw, 525px);
}

.solution-panel-media {
  position: absolute;
  inset-block: 0;
  z-index: 0;
  overflow: hidden;
}

.solution-panel-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.84) 24%, rgba(0, 0, 0, 0) 52%);
  pointer-events: none;
}

.solution-panel-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.solution-panel-identity .solution-panel-media {
  right: 0;
  width: min(61.5625%, 788px);
}

.solution-panel-identity .solution-panel-media img {
  object-position: center;
}

.solution-panel-bot .solution-panel-media {
  right: 0;
  width: min(61.5625%, 788px);
}

.solution-panel-bot .solution-panel-media::before {
  background:
    linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 19.48%),
    linear-gradient(270deg, rgba(0, 0, 0, 0) 69.88%, #000000 100%);
}

.solution-panel-bot .solution-panel-media img {
  object-position: center;
}

.solution-panel-transfer .solution-panel-media {
  right: 0;
  width: min(61.5625%, 788px);
}

.solution-panel-transfer .solution-panel-media img {
  object-position: right center;
}

.solution-panel-transfer .solution-panel-copy {
  top: 50%;
  transform: translateY(-50%);
}

.solution-panel-transfer .solution-panel-copy .solution-panel-body {
  margin-top: 18px;
}

.solution-panel-transfer .patent-label {
  margin-top: 18px;
}

.solution-panel-copy {
  position: absolute;
  left: clamp(64px, 5vw, 96px);
  top: calc(50% - 42.5px);
  z-index: 2;
  width: min(470px, calc(100% - 128px));
  transform: translateY(-50%);
}

.solution-panel-copy p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.2;
}

.solution-panel-copy h2 {
  max-width: 470px;
  margin: 0;
  font-family: "Domine", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.solution-panel-copy .solution-panel-lede,
.solution-panel-copy .solution-panel-body {
  max-width: 470px;
  margin: 8px 0 0;
  color: #ffc93c;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.solution-panel-copy .solution-panel-body {
  max-width: 470px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.solution-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 0 7px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.solution-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: var(--amber);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.solution-cta::after {
  content: "->";
  color: var(--amber);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
  transition: transform 180ms ease;
}

.solution-cta:hover,
.solution-cta:focus-visible {
  color: var(--amber);
  transform: translateX(2px);
}

.solution-cta:hover::before,
.solution-cta:focus-visible::before {
  transform: scaleX(1.12);
}

.solution-cta:hover::after,
.solution-cta:focus-visible::after {
  transform: translateX(4px);
}

.patent-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1.4px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signals {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(36px, 6vw, 88px);
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 112px 0;
}

.trust-layer {
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  column-gap: clamp(40px, 5vw, 72px);
  row-gap: 34px;
  align-items: start;
}

.trust-layer-copy {
  grid-column: 1;
}

.trust-layer-copy p {
  max-width: 560px;
}

.trust-layer-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.1);
  background: #f8f6f0;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.trust-layer-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.trust-layer-list {
  grid-column: 1;
  max-width: 600px;
}

.signals .kicker,
.waitlist .kicker,
.contact .kicker {
  color: var(--blue);
}

.signals h2,
.waitlist h2,
.contact h2 {
  margin-top: 12px;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.08;
}

.trust-layer h2 {
  max-width: 610px;
  font-size: clamp(34px, 3.8vw, 50px);
}

.signals-copy p,
.waitlist-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 19px;
  line-height: 1.55;
}

.signal-list {
  display: grid;
  gap: 0;
}

.signal-list div {
  padding: 28px 0 30px;
  border-top: 1px solid var(--line-dark);
}

.signal-list div:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.signal-list strong {
  display: block;
  color: var(--amber-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.signal-list h3 {
  margin: 10px 0 0;
  font-size: 25px;
  line-height: 1.1;
}

.signal-list p {
  max-width: 570px;
  margin: 10px 0 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 17px;
  line-height: 1.45;
}

.feature-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 742px;
  padding: 48px;
  gap: 32px;
  background: #ffffff;
  color: #1b2028;
}

.feature-showcase-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1080px, 100%);
  gap: 16px;
  text-align: center;
}

.feature-showcase h2 {
  font-size: clamp(34px, 3.125vw, 40px);
  line-height: 1.3;
}

.feature-showcase-compact h2 {
  max-width: 1060px;
  color: #1b2028;
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 2.25vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.feature-showcase p {
  max-width: 750px;
  margin: 0;
  color: rgba(27, 32, 40, 0.6);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-showcase-image {
  width: min(1184px, 100%);
  aspect-ratio: 888 / 500;
  border-radius: var(--radius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 20px 52px rgba(27, 32, 40, 0.08);
}

@media (min-width: 641px) {
  .feature-showcase-image {
    background-image: url("assets/ticketrecipe-feature-infographic-v2-1776.jpg");
  }
}

.journey-mobile-viewer {
  display: none;
}

.waitlist {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 76px clamp(20px, 4vw, 48px);
  background: #f8f1df;
}

.bmc-panel {
  min-height: 460px;
  overflow: hidden;
  padding: 64px 20px;
  isolation: isolate;
  background: #fbfcfe;
}

.bmc-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
    url("assets/bmc-support-bg-v2.png") center / cover no-repeat,
    #11151c;
}

.bmc-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 199, 52, 0.12), rgba(255, 199, 52, 0) 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.waitlist-copy {
  width: min(100%, 720px);
  text-align: center;
}

.bmc-panel .waitlist-copy {
  position: relative;
  width: min(1100px, calc(100% - 40px));
  color: var(--white);
}

.bmc-panel .bmc-tagline {
  margin: 24px 0 0;
  color: #ffffff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.waitlist h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.bmc-panel h2 {
  color: var(--white);
  font-size: 32px;
  line-height: 1.625;
  letter-spacing: -0.02em;
  text-align: center;
}

.coffee-button {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.coffee-button a {
  display: inline-block;
  line-height: 0;
}

.coffee-button img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius);
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 12px;
  width: min(100%, 640px);
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 560px);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: 112px clamp(20px, 4vw, 48px);
  background: var(--paper);
}

.contact-copy {
  justify-self: end;
  width: min(100%, 560px);
}

.contact-form {
  display: grid;
  gap: 22px;
  width: min(100%, 560px);
  padding: 28px;
  border: 1px solid rgba(14, 93, 196, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(5, 5, 5, 0.86);
  font-size: 15px;
  font-weight: 600;
}

.contact-form em {
  color: #e03131;
  font-style: normal;
}

.contact-form button {
  width: 100%;
  min-height: 48px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  background: #000000;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.section-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-scrim {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 33.73%, #000000 94.38%);
  }

  .hero-copy {
    width: min(100% - 40px, 620px);
  }

  .solution-panel-copy {
    left: 40px;
    width: min(720px, calc(100% - 80px));
  }

  .signals,
  .waitlist,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .waitlist-copy,
  .contact-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 24px;
    top: 50px;
    width: 167px;
    height: auto;
  }

  .site-header .brand,
  .brand-logo {
    display: block;
    width: 167px;
    height: auto;
  }

  .site-header .header-cta {
    display: none;
  }

  .hero {
    height: 560px;
    min-height: 0;
  }

  .hero-bg {
    width: 1854px;
    height: 1016px;
    top: -214px;
    left: -705px;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .hero-scrim {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 33.73%, #000000 94.38%);
  }

  .hero-copy {
    display: flex;
    left: 24px;
    top: 162px;
    width: calc(100% - 48px);
    max-width: 345px;
    height: auto;
    gap: 0;
    justify-content: flex-start;
  }

  .hero h1 {
    width: 345px;
    max-width: 100%;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .hero p {
    font-size: 17px;
  }

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

  .solution-panel {
    height: 560px;
    min-height: 0;
  }

  .solution-panel-transfer {
    height: 620px;
  }

  .solution-panel-identity .solution-panel-media,
  .solution-panel-bot .solution-panel-media,
  .solution-panel-transfer .solution-panel-media {
    inset: auto 0 0;
    width: 100%;
    height: 262px;
  }

  .solution-panel-identity .solution-panel-media::before,
  .solution-panel-transfer .solution-panel-media::before,
  .solution-panel-bot .solution-panel-media::before {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 21.37%);
  }

  .solution-panel-identity .solution-panel-media img,
  .solution-panel-bot .solution-panel-media img,
  .solution-panel-transfer .solution-panel-media img {
    object-fit: cover;
    object-position: center;
  }

  .solution-panel-copy {
    left: 20px;
    top: 32px;
    width: calc(100% - 40px);
    max-width: 345px;
    transform: none;
  }

  .solution-panel-transfer .solution-panel-copy {
    top: 32px;
    transform: none;
  }

  .solution-panel-copy p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.3;
  }

  .solution-panel-copy h2 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  .solution-panel-copy .solution-panel-lede {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.3;
  }

  .solution-panel-copy .solution-panel-body {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.3;
  }

  .solution-panel-transfer .solution-panel-body {
    margin-top: 12px;
  }

  .solution-cta {
    margin-top: 2.8vw;
    padding-bottom: 0.9vw;
    font-size: 2.4vw;
  }

  .patent-label {
    min-height: 30px;
    margin-top: 16px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .solution-panel-copy .button {
    min-width: 9.375vw;
    min-height: 3.75vw;
    margin-top: 3.28125vw;
    padding: 0 1.875vw;
    border-radius: 0.625vw;
    font-size: 1.25vw;
  }

  .signals,
  .waitlist,
  .contact,
  .site-footer {
    width: auto;
    padding: 72px 20px;
  }

  .site-footer {
    min-height: 40px;
    padding: 0 20px;
  }

  .feature-showcase {
    min-height: auto;
    padding: 48px 24px;
    gap: 32px;
  }

  .feature-showcase h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.16;
  }

  .feature-showcase-compact h2 {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .feature-showcase p {
    font-size: 16px;
    line-height: 1.35;
  }

  .feature-showcase-image {
    display: none;
    background-image: none;
  }

  .journey-mobile-viewer {
    display: grid;
    width: 100%;
    gap: 14px;
  }

  .journey-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .journey-tabs button {
    appearance: none;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 201, 60, 0.46);
    border-radius: 8px;
    background: #fffdf7;
    color: rgba(27, 32, 40, 0.72);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition:
      background 180ms ease,
      color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .journey-tabs button:not(.is-active):active {
    background: #fff4cf;
    border-color: rgba(255, 201, 60, 0.74);
    color: #1b2028;
  }

  .journey-tabs button.is-active {
    color: #050505;
    background: #ffc93c;
    border-color: #ffc93c;
    box-shadow: 0 8px 18px rgba(255, 201, 60, 0.24);
  }

  .journey-tabs button:focus-visible {
    outline: 2px solid rgba(27, 32, 40, 0.7);
    outline-offset: 3px;
  }

  .journey-stage-frame {
    position: relative;
    aspect-ratio: 1572 / 2080;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(27, 32, 40, 0.1);
    border-radius: var(--radius);
    background: #fbf7ed;
    box-shadow: 0 18px 40px rgba(27, 32, 40, 0.08);
  }

  .journey-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    object-fit: contain;
    object-position: center;
    padding: 0;
    transition: opacity 180ms ease;
  }

  .journey-stage-copy {
    min-height: 44px;
    text-align: center;
  }

  .journey-copy {
    display: none;
    max-width: 300px;
    margin: 0 auto;
    color: rgba(27, 32, 40, 0.62);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
  }

  .journey-mobile-viewer[data-active-stage="identity"] .journey-copy-identity,
  .journey-mobile-viewer[data-active-stage="queue"] .journey-copy-queue,
  .journey-mobile-viewer[data-active-stage="resale"] .journey-copy-resale {
    display: block;
  }

  .bmc-panel {
    min-height: 320px;
    padding: 48px 24px;
  }

  .bmc-panel h2 {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  .bmc-panel .bmc-tagline {
    margin-top: 20px;
    font-size: 15px;
  }

  .bmc-panel .coffee-button {
    margin-top: 24px;
  }

  .trust-layer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-layer-copy,
  .trust-layer-visual,
  .trust-layer-list {
    grid-column: 1;
    grid-row: auto;
  }

  .trust-layer-visual img {
    aspect-ratio: 1.42;
  }

  .signals h2,
  .waitlist h2,
  .contact h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .trust-layer h2 {
    font-size: clamp(32px, 8.8vw, 42px);
  }

  .waitlist h2 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

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