/* Sky / gray: redundant base declarations and unused reveal animation removed. */
:root {
  --ink: #343a40;
  --ink-2: #505960;
  --paper: #f3f4f4;
  --white: #ffffff;
  --blue: #426a80;
  --blue-soft: #ddeffa;
  --coral: #426a80;
  --mint: #426a80;
  --line: #d5dce0;
  --muted: #5c656c;
  --shadow: 0 18px 48px rgba(52, 58, 64, 0.10);
  --radius: 24px;
  --display: "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
  --body: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

body::before {
  content: "";
  position: fixed;
  inset: 0px;
  z-index: -2;
  pointer-events: none;
  background-size: 32px 32px;
}

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

a {
  color: inherit;
}

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

button, input, select {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 74px;
  padding: 10px clamp(20px, 4vw, 64px);
  color: var(--ink);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms, background-color 180ms;
}

.site-header.is-scrolled {
  box-shadow: rgba(7, 23, 43, 0.08) 0px 10px 35px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  place-items: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand strong, .brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--display);
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding: 10px 2px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 7px;
  left: 0px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms;
}

.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0px 18px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.header-cta span {
  margin-left: 12px;
  color: rgb(138, 180, 255);
}

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  align-items: center;
  margin: 0px auto;
  padding: 72px 0px 64px;
}

.eyebrow {
  margin: 0px 0px 18px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: rgba(34, 181, 138, 0.16) 0px 0px 0px 6px;
  animation: 2.2s ease-out 0s infinite normal none running livePulse;
}

.hero h1, .section-heading h2, .screen-copy h3, .choice-card h2, .trust-copy h2, .final-cta h2 {
  margin: 0px;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
}

.hero h1 em {
  font-style: normal;
}

.hero-lede {
  margin: 30px 0px 0px;
  font-weight: 560;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0px 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms, box-shadow 150ms, background-color 150ms;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: rgba(7, 23, 43, 0.35) 6px 6px 0px;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0px 0px;
  padding: 0px;
  font-size: 13px;
  list-style: none;
}

.proof-list span {
  margin-right: 6px;
  font-weight: 900;
}

.hero-stage {
  position: relative;
  isolation: isolate;
}

.stage-grid, .final-cta-grid {
  position: absolute;
  inset: 0px;
  z-index: -1;
  background-size: 18px 18px;
}

.stage-label {
  position: absolute;
  z-index: 4;
  padding-left: 14px;
  border-left-width:;
  border-left-style:;
}

.stage-label-top {
  top: 10px;
  right: 18px;
}

.stage-label span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.stage-label strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.35;
}

.shot {
  position: absolute;
  overflow: hidden;
  padding: 0px;
  border-width: 1px;
  border-style: solid;
  border-image: none;
  border-radius: 18px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

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

.shot-desktop {
  aspect-ratio: 1280 / 820;
}

.shot-mobile {
  bottom: -10px;
  left: -5%;
  z-index: 2;
  width: 42%;
  aspect-ratio: 0.78 / 1;
  border: 7px solid var(--ink-2);
  border-radius: 26px;
  transform: rotate(2.4deg);
}

.shot-mobile img {
  object-position: 72% 50%;
}

.stage-ticket {
  position: absolute;
  z-index: 5;
  width: 154px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--white);
  border-top-width:;
  border-top-style:;
}

.stage-ticket::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -8px;
  left: -1px;
  height: 10px;
  background: linear-gradient(135deg, transparent 5px, var(--white) 0) 0 0 / 10px 10px repeat-x;
}

.stage-ticket span, .stage-ticket b {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.stage-ticket strong {
  display: block;
  margin: 6px 0px;
  font-size: 20px;
}

.stage-ticket b {
  color: var(--coral);
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 34px);
  min-height: 76px;
  padding: 18px 24px;
  border-top-width: 1px;
  border-top-style: solid;
  font-weight: 800;
}

.signal-strip i {
  position: relative;
  flex: 0 1 76px;
  height: 1px;
}

.signal-strip i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0px;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  animation: 2.8s linear 0s infinite normal none running signalRun;
}

.section {
  margin: 0px auto;
  padding-right: 0px;
  padding-left: 0px;
}

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

.section-heading > p:last-child, .section-heading-wide > p, .trust-copy > p:last-child {
  max-width: 620px;
  margin: 24px 0px 0px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading-wide {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: none;
  gap: 40px;
}

.section-heading-wide > p {
  max-width: 430px;
  margin-bottom: 6px;
}

.venue-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top-width:;
  border-top-style:;
  border-bottom-width:;
  border-bottom-style:;
}

.venue-card {
  position: relative;
  background: rgba(255, 255, 255, 0.52);
  border-right-width:;
  border-right-style:;
  transition: color 180ms, background-color 180ms, transform 180ms;
}

.venue-card:last-child {
  border-right: 0px;
}

.venue-card:hover {
  z-index: 1;
}

.venue-number {
  color: currentcolor;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  opacity: 0.65;
}

.venue-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-right: 0px;
  margin-bottom: 22px;
  margin-left: 0px;
  border-radius: 14px;
  font-size: 25px;
  filter: grayscale(0.1);
}

.venue-card h3 {
  margin: 0px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.venue-card p {
  min-height: 80px;
  margin: 12px 0px 22px;
  line-height: 1.6;
}

.venue-card strong {
  color: currentcolor;
}

.screens-section {
  max-width: none;
  padding-right: max(24px, -720px + 50vw);
  padding-left: max(24px, -720px + 50vw);
}

.screen-feature {
  display: grid;
  grid-template-columns: minmax(0px, 1.75fr) minmax(280px, 0.75fr);
  align-items: center;
}

.screen-feature-reverse {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0px, 1.75fr);
}

.screen-feature-reverse .screen-frame {
  grid-area: 1 / 2;
}

.screen-feature-reverse .screen-copy {
  grid-area: 1 / 1;
}

.screen-frame {
  display: block;
  overflow: hidden;
  padding: 0px;
  background: var(--ink);
  border-width: 1px;
  border-style: solid;
  border-image: none;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.screen-frame img {
  width: 100%;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.screen-frame:hover img, .screen-frame:focus-visible img {
  transform: scale(1.018);
}

.screen-copy {
  padding: 12px 0px;
}

.screen-index {
  display: block;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.screen-copy p {
  margin: 24px 0px;
  color: var(--muted);
  font-size: 17px;
}

.screen-copy ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.screen-copy li {
  position: relative;
  padding: 13px 0px 13px 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.screen-copy li:last-child {
  border-bottom: 1px solid var(--line);
}

.screen-copy li::before {
  content: "↳";
  position: absolute;
  top: 12px;
  left: 2px;
  color: var(--coral);
  font-family: var(--mono);
  font-weight: 900;
}

.flow-section {
  padding-bottom: 80px;
}

.flow-board {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  border-top-style:;
  border-top-width:;
  border-right-style:;
  border-right-width:;
  border-bottom-style:;
  border-bottom-width:;
  border-left-style:;
  border-left-width:;
  border-image-source:;
  border-image-slice:;
  border-image-width:;
  border-image-outset:;
  border-image-repeat:;
  background: var(--white);
}

.flow-list {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 124px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.flow-list li:last-child {
  border-bottom: 0px;
}

.flow-step, .flow-owner {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.flow-step {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 50%;
  place-items: center;
}

.flow-list strong {
  font-size: 19px;
}

.flow-list p {
  margin: 4px 0px 0px;
  color: var(--muted);
  font-size: 14px;
}

.flow-owner {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--blue-soft);
  border-radius: 6px;
}

.flow-promise {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
}

.flow-promise p {
  margin: 0px;
  color: rgb(159, 192, 255);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.flow-promise strong {
  font-family: var(--display);
  letter-spacing: -0.045em;
}

.flow-promise span {
  padding-top: 22px;
  color: rgb(183, 197, 211);
  border-top: 1px solid rgb(56, 80, 106);
  font-size: 14px;
}

.choice-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: none;
}

.choice-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.choice-card p {
  max-width: 620px;
  min-height: 86px;
  margin-top: 26px;
  margin-right: 0px;
  margin-left: 0px;
  font-size: 17px;
}

.choice-path {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 850;
}

.choice-path span {
  padding: 10px 13px;
  border-width: 1px;
  border-style: solid;
  border-image: none;
  border-radius: 7px;
}

.choice-path i {
  font-style: normal;
  opacity: 0.55;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.trust-grid article {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.6);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.trust-grid span {
  display: block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
}

.trust-grid strong {
  font-size: 19px;
}

.trust-grid p {
  margin: 8px 0px 0px;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 7vw, 120px);
  padding-top: 40px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 24px;
  align-items: center;
  min-height: 86px;
  padding: 18px 4px;
  font-size: 17px;
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  font-size: 20px;
  transition: transform 180ms;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 780px;
  margin: -4px 46px 26px 4px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  min-height: 610px;
}

.final-cta h2 {
  max-width: 1000px;
}

.final-cta > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0px 0px;
  font-size: 18px;
}

.contact-form {
  max-width: 900px;
  margin-top: 34px;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(191, 233, 249, 0.84);
  border-radius: 18px;
  box-shadow: rgba(3, 24, 44, 0.24) 10px 10px 0px;
}

.contact-form-heading span, .contact-success-kicker {
  display: block;
  color: var(--ink-2);
  font-weight: 900;
}

.contact-form-heading strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.contact-form label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  border-width: 1px;
  border-style: solid;
  border-image: none;
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms, box-shadow 160ms, background-color 160ms;
}

.contact-form input, .contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  background: var(--white);
  border-color: var(--ink-2);
  box-shadow: rgba(69, 169, 212, 0.24) 0px 0px 0px 3px;
}

.contact-form-message {
  margin-top: 16px;
}

.contact-form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0px, 0px, 0px, 0px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.contact-form-submit-row .button {
  min-width: 160px;
}

.contact-form-submit-row .button:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.contact-form-status {
  margin: 0px;
  color: rgb(155, 46, 35);
  font-size: 13px;
  font-weight: 750;
}

.contact-form-status[data-tone="pending"] {
  color: var(--ink-2);
}

.contact-form-note {
  margin: 16px 0px 0px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-success {
  max-width: 900px;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  border-radius: 18px;
  box-shadow: rgba(3, 24, 44, 0.24) 10px 10px 0px;
}

.contact-success h3 {
  margin: 18px 0px 0px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-success > p:not(.contact-success-kicker):not(.contact-success-note) {
  margin: 22px 0px 0px;
  color: var(--muted);
  font-size: 17px;
}

.contact-success > p strong {
  color: var(--ink);
}

.contact-success-note {
  margin: 16px 0px 0px;
  color: var(--muted);
  font-size: 14px;
}

.contact-success-reset {
  min-height: 44px;
  margin-top: 28px;
  padding: 0px;
  color: var(--ink);
  background: transparent;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-image: none;
  border-bottom: 2px solid var(--coral);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.contact-success-reset span {
  margin-left: 10px;
  color: var(--coral);
}

.contact-actions {
  display: grid;
  max-width: 900px;
  margin-top: 36px;
}

.contact-action {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 160ms, box-shadow 160ms;
}

.contact-action-phone {
  border-color: rgb(110, 145, 189);
}

.contact-action-guide {
  color: var(--ink);
  border-color: var(--ink-2);
}

.contact-action > span {
  color: var(--blue);
  font-weight: 900;
}

.contact-action-phone > span {
  color: rgb(159, 192, 255);
}

.contact-action-guide > span {
  color: var(--ink-2);
}

.contact-action strong {
  display: block;
  margin-top: 15px;
  font-family: var(--display);
  letter-spacing: -0.025em;
}

.contact-action small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.contact-action-phone small {
  color: rgb(174, 190, 208);
}

.contact-action-guide small {
  color: var(--muted);
}

.contact-action b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 23, 43, 0.18);
  font-size: 13px;
}

.contact-action-phone b {
  border-top-color: rgb(56, 80, 106);
}

.contact-action i {
  color: var(--coral);
  font-style: normal;
}

.existing-owner-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 22px;
  color: rgb(238, 244, 255);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.existing-owner-link span {
  color: rgb(185, 206, 255);
}

.final-ticket {
  position: relative;
  color: var(--ink);
  background: var(--white);
}

.final-ticket::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -12px;
  left: -1px;
  height: 14px;
  background: linear-gradient(135deg, transparent 7px, var(--white) 0) 0 0 / 14px 14px repeat-x;
}

.final-ticket span, .final-ticket small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.final-ticket > strong {
  display: block;
  margin-right: 0px;
  margin-bottom: 32px;
  margin-left: 0px;
  font-family: var(--display);
  letter-spacing: -0.04em;
}

.final-ticket ol {
  margin: 0px 0px 32px;
  padding: 0px;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.final-ticket li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 9px 0px;
  border-bottom: 1px solid rgba(7, 23, 43, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.final-ticket li b {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.final-ticket small {
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

footer {
  display: grid;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 30px max(24px, -720px + 50vw);
}

footer p {
  margin: 0px;
  font-size: 13px;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

footer > div a {
  font-size: 12px;
  text-decoration: none;
}

.lightbox {
  width: min(94vw, 1500px);
  max-width: none;
  padding: 14px;
  background: var(--ink);
  border: 1px solid rgb(83, 106, 130);
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 40px 120px;
}

.lightbox::backdrop {
  background: rgba(2, 8, 18, 0.84);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox p {
  margin: 12px 58px 2px 4px;
  color: rgb(174, 190, 208);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0px;
  color: var(--white);
  background: rgba(7, 23, 43, 0.88);
  border: 1px solid rgb(123, 142, 162);
  border-radius: 50%;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

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

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

  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0px;
    padding-top: 70px;
  }

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

  .hero-stage {
    min-height: 590px;
  }

  .shot-desktop {
    right: -4%;
    width: 88%;
  }

  .shot-mobile {
    left: 1%;
    width: 38%;
  }

  .venue-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .venue-card:nth-child(3) {
    border-right: 0px;
  }

  .venue-card:nth-child(n+4) {
    border-top: 1px solid var(--ink);
  }

  .venue-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .screen-feature, .screen-feature-reverse {
    grid-template-columns: 1fr;
  }

  .screen-feature-reverse .screen-frame, .screen-feature-reverse .screen-copy {
    grid-area: auto / 1;
  }

  .screen-feature-reverse .screen-frame {
    grid-row: 1;
  }

  .screen-copy {
    max-width: 760px;
  }

  .flow-board, .trust-section, .faq-section {
    grid-template-columns: 1fr;
  }

  .flow-promise {
    min-height: 390px;
  }
}

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

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 7px;
  }

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

  .header-cta span {
    display: none;
  }

  .hero-grid {
    width: min(100% - 32px, 680px);
    padding: 56px 0px 34px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.4vw, 70px);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .proof-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-stage {
    min-height: 420px;
    margin-top: 12px;
  }

  .stage-label-top {
    top: 0px;
    right: 0px;
  }

  .shot-desktop {
    right: -17%;
    bottom: 34px;
    width: 112%;
  }

  .shot-mobile {
    bottom: 8px;
    left: -4%;
    width: 49%;
    border-width: 5px;
    border-radius: 18px;
  }

  .stage-ticket {
    right: 0px;
    width: 126px;
    padding: 12px 14px;
  }

  .stage-ticket strong {
    font-size: 16px;
  }

  .signal-strip {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 12px;
    padding-right: 20px;
    padding-left: 20px;
    scrollbar-width: none;
  }

  .signal-strip span {
    flex: 0 0 auto;
  }

  .signal-strip i {
    flex: 0 0 34px;
  }

  .section {
    width: min(100% - 32px, 680px);
    padding: 86px 0px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2, .trust-copy h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .section-heading > p:last-child, .section-heading-wide > p, .trust-copy > p:last-child {
    font-size: 16px;
  }

  .section-heading-wide {
    display: block;
  }

  .section-heading-wide > p {
    margin-top: 20px;
  }

  .venue-rail {
    grid-template-columns: 1fr;
  }

  .venue-card, .venue-card:nth-child(3) {
    min-height: 270px;
    border-right: 0px;
    border-bottom: 1px solid var(--ink);
  }

  .venue-card:nth-child(n+4) {
    border-top: 0px;
  }

  .venue-card:nth-child(4) {
    grid-column: auto;
  }

  .venue-icon {
    margin-top: 30px;
  }

  .venue-card p {
    min-height: 0px;
  }

  .screens-section {
    width: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .screen-feature {
    gap: 30px;
    margin-top: 72px;
  }

  .screen-frame {
    border-radius: 14px;
  }

  .screen-frame img {
    min-height: 230px;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .screen-copy h3 {
    font-size: 38px;
  }

  .flow-list li {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    padding: 20px 16px;
  }

  .flow-owner {
    grid-column: 2;
    justify-self: start;
  }

  .flow-promise {
    min-height: 370px;
    padding: 28px 22px;
  }

  .choice-section {
    grid-template-columns: 1fr;
    width: auto;
  }

  .choice-card {
    min-height: 460px;
    padding: 64px 22px;
  }

  .choice-label {
    margin-bottom: 52px;
  }

  .choice-card p {
    min-height: 0px;
  }

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

  .trust-grid article {
    min-height: 180px;
  }

  .trust-grid span {
    margin-bottom: 38px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 15px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    min-height: 0px;
    padding: 84px 20px 100px;
  }

  .final-cta h2 {
    font-size: clamp(46px, 13vw, 66px);
  }

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

  .contact-form {
    margin-top: 28px;
    padding: 22px 18px;
    border-radius: 14px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form-submit-row {
    display: grid;
    align-items: stretch;
    gap: 12px;
  }

  .contact-form-submit-row .button {
    width: 100%;
  }

  .contact-success {
    margin-top: 28px;
    padding: 28px 22px;
    border-radius: 14px;
  }

  .contact-action {
    min-height: 178px;
  }

  .final-ticket {
    width: min(100%, 310px);
    min-height: 330px;
    margin: 20px auto 0px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }

  footer > div {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body::before {
  opacity: 0;
  background-image: linear-gradient(rgba(12, 45, 75, 0.043) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 45, 75, 0.043) 1px, transparent 1px);
}

.site-header {
  background: rgba(243, 244, 244, 0.96);
  border-bottom-color: rgba(12, 45, 75, 0.14);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: none;
}

.desktop-nav a {
  color: var(--ink-2);
}

.hero {
  color: var(--ink);
  background: rgb(221, 239, 250);
  border-bottom: 0px;
}

.hero .eyebrow {
  color: var(--ink-2);
}

.hero h1 em {
  color: inherit;
  text-decoration: none;
}

.hero-lede {
  color: var(--ink-2);
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: none;
}

.button-secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.3);
}

.proof-list {
  color: var(--ink-2);
}

.proof-list span {
  color: var(--coral);
}

.stage-grid, .final-cta-grid {
  opacity: 0;
  background-image: radial-gradient(circle, rgba(12, 45, 75, 0.36) 1px, transparent 1.5px);
}

.stage-label {
  border-left-color: var(--coral);
}

.stage-label span {
  color: var(--ink-2);
}

.shot {
  background: var(--paper);
  border-color: var(--ink-2);
}

.signal-strip {
  color: var(--ink);
  background: rgb(237, 242, 245);
  border-top-color: var(--line);
}

.venue-card.is-featured {
  color: var(--ink);
  background: var(--blue-soft);
}

.venue-card:hover {
  color: var(--ink);
  background: rgb(232, 238, 241);
  box-shadow: none;
  transform: none;
}

.screens-section {
  background: rgba(255, 255, 255, 0.8);
}

.screen-index {
  color: var(--ink-2);
}

.flow-step {
  background: var(--ink-2);
}

.choice-card-menu {
  color: var(--ink);
  background: var(--blue-soft);
}

.choice-card-menu p {
  color: var(--ink-2);
}

.choice-card-meeting {
  color: var(--ink);
  background: rgb(229, 232, 234);
}

.final-cta {
  color: var(--ink);
  background: var(--blue-soft);
}

.final-cta .eyebrow {
  color: var(--muted);
}

.contact-action-guide i {
  color: var(--coral);
}

.brand-logo {
  width: 64px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-emoji {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.icon-label, .contact-success-kicker.icon-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.venue-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand small {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0px;
}

.eyebrow, .screen-index, .choice-label {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0px;
}

.hero-grid {
  width: min(1320px, 100% - 80px);
  grid-template-columns: minmax(0px, 1fr) minmax(0px, 1.1fr);
  min-height: 650px;
  gap: 48px;
}

.hero h1 {
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 520px;
  font-size: 19px;
  line-height: 1.85;
}

.hero-stage {
  min-height: 470px;
}

.shot-desktop {
  right: 0px;
  bottom: 58px;
  width: 100%;
  transform: none;
  border: 6px solid rgb(80, 89, 96);
  border-radius: 16px;
}

.shot-mobile {
  display: none;
}

.stage-label-top {
  display: none;
}

.stage-label span, .stage-ticket span, .stage-ticket b {
  font-family: var(--body);
  letter-spacing: 0px;
}

.stage-ticket {
  right: 20px;
  bottom: 0px;
  transform: none;
  box-shadow: rgba(52, 58, 64, 0.08) 0px 8px 24px;
  border-top-color: rgb(169, 205, 221);
}

.live-dot, .signal-strip i::after {
  animation: auto ease 0s 1 normal none running none;
  box-shadow: none;
}

.signal-strip {
  font-family: var(--body);
  letter-spacing: 0px;
  font-size: 14px;
}

.signal-strip i {
  background: rgb(168, 184, 194);
}

.section {
  width: min(1280px, 100% - 80px);
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading h2, .trust-copy h2 {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.25;
}

.section-heading {
  margin-bottom: 40px;
}

.venue-rail {
  border-color: var(--line);
}

.venue-card {
  padding: 24px 20px;
  min-height: 290px;
  border-color: var(--line);
}

.venue-number {
  display: none;
}

.venue-icon {
  margin-top: 4px;
  background: transparent;
  border: 0px;
  place-items: start;
}

.venue-card p {
  opacity: 1;
  color: var(--muted);
  font-size: 15px;
}

.venue-card strong {
  font-family: var(--body);
  letter-spacing: 0px;
  font-size: 12px;
}

.screens-section {
  width: 100%;
  padding-inline: max(40px, -640px + 50vw);
}

.screen-feature {
  margin-top: 72px;
  gap: 48px;
}

.screen-copy h3 {
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.3;
}

.screen-frame {
  border-color: var(--line);
  border-radius: 12px;
}

.screen-frame img {
  min-height: 0px;
  object-fit: contain;
}

.flow-board {
  border-color: var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.flow-promise {
  background: rgb(229, 232, 234);
  color: var(--ink);
  min-height: 400px;
}

.flow-promise p, .flow-promise span {
  color: var(--muted);
  border-color: rgb(185, 194, 200);
}

.flow-promise strong {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.3;
}

.choice-section {
  width: 100%;
  padding: 0px;
}

.choice-card {
  min-height: 420px;
  padding: 64px max(40px, -640px + 50vw);
}

.choice-card h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.25;
}

.choice-label {
  margin-bottom: 30px;
  opacity: 1;
}

.choice-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

.choice-path {
  flex-wrap: wrap;
  font-family: var(--body);
  letter-spacing: 0px;
}

.choice-path span {
  border-color: rgb(174, 191, 200);
}

.trust-grid, .trust-grid article {
  border-color: var(--line);
}

.trust-grid span {
  margin-bottom: 28px;
}

.faq-list, .faq-list details {
  border-color: var(--line);
}

.final-cta {
  grid-template-columns: minmax(0px, 1fr) 260px;
  align-items: start;
  gap: 48px;
  padding: 88px max(40px, -640px + 50vw);
}

.final-cta h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.25;
}

.final-cta > div > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-form, .contact-success {
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-form input, .contact-form select, .contact-form textarea {
  background: rgb(247, 248, 249);
  border-color: rgb(188, 199, 205);
  font: 16px/1.5 var(--body);
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: rgb(104, 118, 126);
}

.contact-form-heading strong, .contact-success h3 {
  line-height: 1.3;
}

.contact-form-heading span, .contact-success-kicker {
  font-family: var(--body);
  letter-spacing: 0px;
  font-size: 12px;
}

.contact-actions {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-action {
  min-width: 0px;
  min-height: 166px;
  padding: 20px;
  border: 1px solid rgb(188, 203, 211);
  box-shadow: none;
}

.contact-action:hover, .contact-action:focus-visible {
  transform: none;
  box-shadow: none;
  border-color: var(--ink);
}

.contact-action-guide {
  grid-column: 1 / -1;
  min-height: 130px;
  background: transparent;
}

.contact-action-phone {
  background: rgb(232, 237, 239);
  color: var(--ink);
}

.contact-action-phone small, .contact-action-phone > span {
  color: var(--muted);
}

.contact-action strong {
  font-size: 21px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-success strong {
  overflow-wrap: anywhere;
}

.contact-action > span {
  font-family: var(--body);
  letter-spacing: 0px;
  font-size: 12px;
}

.existing-owner-link, .existing-owner-link span {
  color: var(--ink);
}

.final-ticket {
  margin-top: 150px;
  min-height: 320px;
  padding: 24px;
  transform: none;
  box-shadow: none;
  border-top: 5px solid rgb(169, 205, 221);
}

.final-ticket > strong {
  line-height: 1.3;
  font-size: 30px;
  margin-top: 30px;
}

footer {
  background: rgb(229, 232, 234);
  color: var(--muted);
  grid-template-columns: 1fr auto;
}

.brand-footer {
  color: var(--ink);
}

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

footer > div {
  flex-wrap: wrap;
}

.button:hover, .button:focus-visible {
  transform: none;
  filter: brightness(0.94);
}

.button, .header-cta {
  min-height: 48px;
  line-height: 1.4;
}

.contact-form-submit-row .button {
  color: rgb(255, 255, 255);
  background: var(--ink);
  box-shadow: none;
  gap: 10px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    min-height: 540px;
    max-width: 760px;
    width: 100%;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-ticket {
    display: none;
  }

  .screen-feature, .screen-feature-reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero-grid {
    width: calc(100% - 40px);
    padding: 44px 0px 36px;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(34px, 8.6vw, 48px);
  }

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

  .hero-stage {
    min-height: 300px;
    margin: 0px;
  }

  .stage-label strong {
    font-size: 14px;
  }

  .stage-label strong br {
    display: none;
  }

  .shot-desktop {
    bottom: 40px;
    border-width: 4px;
  }

  .stage-ticket {
    width: 118px;
    padding: 8px 12px;
    right: 12px;
  }

  .stage-ticket strong {
    margin: 2px 0px;
  }

  .signal-strip {
    font-size: 12px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 64px 0px;
  }

  .section-heading h2, .trust-copy h2 {
    font-size: 34px;
  }

  .screens-section {
    width: 100%;
    padding-inline: 20px;
  }

  .screen-feature {
    gap: 24px;
    margin-top: 48px;
  }

  .screen-copy h3 {
    font-size: 30px;
  }

  .venue-card {
    min-height: 0px;
    padding: 24px 20px;
    border-color: var(--line);
  }

  .venue-icon {
    margin: 0px 0px 12px;
  }

  .venue-card p {
    margin-bottom: 16px;
  }

  .choice-section {
    width: 100%;
    padding: 0px;
  }

  .choice-card {
    min-height: 0px;
    padding: 48px 24px;
  }

  .choice-card h2 {
    font-size: 34px;
  }

  .final-cta {
    padding: 64px 20px;
    gap: 0px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

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

  .contact-success h3 {
    font-size: 30px;
  }

  .contact-action {
    min-height: 154px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

.contact-form, .contact-success, #privacy {
  scroll-margin-top: 96px;
}

.privacy-notice {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}

.privacy-notice summary {
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-notice p {
  overflow-wrap: anywhere;
}

.contact-form .privacy-consent {
  flex-direction: row;
  align-items: center;
  margin-top: 16px;
  min-height: 44px;
  line-height: 1.6;
  cursor: pointer;
}

.contact-form .privacy-consent input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  accent-color: var(--ink);
}
