@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900;950&display=swap");

@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("./assets/fonts/libre-caslon-condensed-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("./assets/fonts/libre-caslon-condensed-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --headline: "Libre Caslon Condensed", Georgia, "Times New Roman", serif;
  --body: Montserrat, Aptos, "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #0c1016;
  --muted: #555d68;
  --soft: #f6f7f9;
  --line: #dfe3e8;
  --line-strong: #111821;
  --gold: #c98524;
  --gold-soft: #fff1dc;
  --orange: #ff850f;
  --abs-yellow: #f7b313;
  --silver: #8f949b;
  --teal: #0d766e;
  --cta-green: #16884b;
  --blue: #315fff;
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(12, 16, 22, 0.1);
  --countdown-height: 42px;
  --body-copy-line-height: 1.1;
  --body-copy-paragraph-gap: clamp(14px, 1.5vw, 20px);
  --headline-swoosh-color: var(--orange);
  --headline-swoosh-width: min(100%, 320px);
  --headline-swoosh-height: clamp(18px, 2.2vw, 28px);
  --headline-swoosh-margin: 12px auto 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  text-align: center;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-150%);
}

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

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

.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: var(--countdown-height);
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px clamp(16px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: linear-gradient(90deg, #0b6f3b, #18a05d);
  box-shadow: 0 10px 24px rgba(9, 89, 48, 0.16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.countdown-bar span {
  color: rgba(255, 255, 255, 0.88);
}

.countdown-bar strong {
  display: inline-flex;
  min-width: 142px;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--body);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.site-header {
  --header-scroll-opacity: 1;
  --header-scroll-scale: 1;

  position: fixed;
  top: var(--countdown-height);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  opacity: var(--header-scroll-opacity);
  width: min(28vw, 300px);
  text-decoration: none;
  transform: translate(-50%, -50%) scale(var(--header-scroll-scale));
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.42)) drop-shadow(0 5px 14px rgba(12, 16, 22, 0.2));
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: clamp(18px, 4vw, 58px);
  display: grid;
  width: min(260px, calc(100vw - 32px));
  padding: 10px;
  gap: 4px;
  border: 1px solid rgba(12, 16, 22, 0.12);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.16);
  font-size: 14px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav a,
.nav-cta,
.button {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover {
  color: var(--ink);
  background: #fff7ed;
}

.site-nav a:hover::after {
  opacity: 0.88;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 30px 0 20px;
  border: 1px solid rgba(12, 16, 22, 0.9);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(12, 16, 22, 0.1);
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  grid-column: 2;
  justify-self: end;
  opacity: var(--header-scroll-opacity);
  transform: scale(var(--header-scroll-scale));
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle {
  grid-column: 3;
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  justify-self: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  filter: drop-shadow(0 2px 5px rgba(12, 16, 22, 0.6));
  opacity: var(--header-scroll-opacity);
  transform: scale(var(--header-scroll-scale));
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button.primary {
  color: var(--white);
  border-color: #0f6f41;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #39d176 0%, #16884b 62%, #0f6f41 100%);
  text-shadow: 0 1px 0 rgba(12, 16, 22, 0.3);
  box-shadow: 0 14px 30px rgba(15, 111, 65, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.button.secondary {
  border-color: rgba(143, 148, 155, 0.75);
  clip-path: none;
  padding-right: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
  box-shadow: 0 12px 26px rgba(12, 16, 22, 0.08), inset 0 1px 0 var(--white);
}

.nav-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 111, 65, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.site-header .nav-cta:hover {
  transform: translateY(-2px) scale(var(--header-scroll-scale));
}

@media (min-width: 761px) {
  .site-header.is-scrolled {
    --header-scroll-opacity: 0.2;
    --header-scroll-scale: 0.7;
  }
}

.button.secondary:hover {
  border-color: var(--orange);
  background: linear-gradient(180deg, #ffffff 0%, #fff5e8 100%);
  box-shadow: 0 14px 30px rgba(255, 133, 15, 0.14), inset 0 1px 0 var(--white);
  transform: translateY(-2px);
}

.section-cta {
  margin-top: 24px;
}

.precheckout-payment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.precheckout-payment-actions .button {
  min-height: 58px;
  padding: 0 34px 0 26px;
  font-size: 18px;
}

.precheckout-payment-actions .precheckout-pay-card {
  border-color: #dc6812;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, var(--abs-yellow) 0%, var(--orange) 55%, #e45c08 100%);
  box-shadow: 0 14px 30px rgba(255, 133, 15, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.precheckout-payment-actions .precheckout-pay-qr {
  min-width: 196px;
  padding-right: 26px;
  border-color: rgba(12, 16, 22, 0.28);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 12px 26px rgba(12, 16, 22, 0.1), inset 0 1px 0 var(--white);
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--headline);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  margin-right: auto;
  margin-bottom: 6px;
  margin-left: auto;
  font-size: clamp(36px, 3.8vw, 48px);
  line-height: 0.96;
}

h2 {
  max-width: 960px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.1;
}

h1,
h2,
h3 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

section,
main,
footer,
article,
details,
aside,
figure {
  background: var(--white);
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

main > section {
  position: relative;
}

main > section > * {
  position: relative;
  z-index: 1;
}

.hero {
  --hero-fade-height: clamp(70px, 9vw, 118px);
  --hero-min-height: calc(100svh - 76px);
  --hero-vertical-padding: 14px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: var(--hero-min-height);
  height: auto;
  align-content: stretch;
  align-items: stretch;
  justify-items: center;
  padding: 8px clamp(20px, 5vw, 72px) 6px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 133, 15, 0.16), transparent 28%),
    linear-gradient(180deg, #20242a 0%, #11161d 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: var(--hero-fade-height);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 22, 29, 0) 0%, rgba(17, 22, 29, 0.62) 28%, rgba(255, 255, 255, 0.74) 78%, #ffffff 100%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 1160px);
  min-height: calc(var(--hero-min-height) - var(--hero-vertical-padding));
  height: auto;
  flex-direction: column;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-copy h1 {
  padding-top: 80px;
  padding-bottom: 14px;
  color: #fff7ec;
  font-family: var(--headline);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  --headline-swoosh-width: min(86vw, 520px);
  --headline-swoosh-height: clamp(18px, 2.1vw, 30px);
  --headline-swoosh-margin: 14px auto 0;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.final-cta h2,
.letter-copy h2,
.founder-copy h2,
.fit-section h2,
.guarantee-panel h2,
.value-side-card h2,
.success-copy h1 {
  position: relative;
}

.hero-copy h1::after,
.section-heading h1::after,
.section-heading h2::after,
.final-cta h2::after,
.letter-copy h2::after,
.founder-copy h2::after,
.fit-section h2::after,
.guarantee-panel h2::after,
.value-side-card h2::after,
.success-copy h1::after {
  display: block;
  width: var(--headline-swoosh-width);
  height: var(--headline-swoosh-height);
  margin: var(--headline-swoosh-margin);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 24%, rgba(255, 255, 255, 0) 50%),
    var(--headline-swoosh-color);
  content: "";
  filter: drop-shadow(0 5px 8px rgba(12, 16, 22, 0.14));
  -webkit-mask: url("./assets/headline-swoosh-mask.svg") center / 100% 100% no-repeat;
  mask: url("./assets/headline-swoosh-mask.svg") center / 100% 100% no-repeat;
}

.section-heading h1,
.section-heading h2 {
  --headline-swoosh-width: min(100%, 340px);
}

.letter-copy h2 {
  --headline-swoosh-width: min(100%, 330px);
}

.not-workshop-section h2,
.founder-copy h2,
.fit-section h2,
.value-side-card h2 {
  --headline-swoosh-margin: 12px 0 0;
}

.fit-section h2 {
  --headline-swoosh-width: min(100%, 210px);
  --headline-swoosh-height: 18px;
}

.value-side-card h2 {
  --headline-swoosh-width: 112px;
  --headline-swoosh-height: 12px;
  --headline-swoosh-margin: 10px 0 0;
}

.hero-copy > p {
  max-width: 940px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 400;
  line-height: 1.3;
}

.hero-subheadline {
  max-width: 920px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--body);
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 950;
  line-height: 1.16;
}

.hero-media-card {
  position: relative;
  width: min(100%, 720px, calc((100svh - 278px) * 16 / 9 + 28px));
  min-width: min(100%, 360px);
  margin: 0 auto 10px;
  padding: 10px;
  border: 1px solid rgba(255, 133, 15, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 133, 15, 0.9), rgba(201, 133, 36, 0.82)) padding-box,
    linear-gradient(135deg, #ffd781, var(--orange), #d85a00) border-box;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-video-frame {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 169, 72, 0.92);
  border-radius: 12px 12px 6px 6px;
  background: #050608;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  position: relative;
}

.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050608;
}

.video-sound-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 133, 15, 0.85);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, var(--abs-yellow), var(--orange));
  box-shadow: 0 10px 24px rgba(12, 16, 22, 0.28);
  cursor: pointer;
  font: 950 12px/1 var(--body);
  letter-spacing: 0.01em;
}

.video-sound-toggle.is-hidden {
  display: none;
}

.sound-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.sound-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.workshop-snapshot {
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #111820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.workshop-snapshot span {
  display: inline-flex;
  flex: 1 1 0;
  min-width: 0;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 11px;
  line-height: 1.15;
}

.workshop-snapshot span:last-child {
  border-right: 0;
}

.workshop-snapshot strong {
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
}

.workshop-snapshot b {
  color: var(--white);
  font-weight: 950;
  line-height: 1.12;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  gap: 12px;
  justify-content: center;
}

.hero-scroll-cue {
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  color: #fff7ec;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
  text-shadow:
    0 0 14px rgba(57, 209, 118, 0.92),
    0 0 28px rgba(255, 255, 255, 0.46);
}

.hero-scroll-cue i {
  display: block;
  width: min(58vw, 340px);
  height: 24px;
  background: linear-gradient(90deg, rgba(57, 209, 118, 0), #39d176 18%, #ffffff 50%, #39d176 82%, rgba(57, 209, 118, 0));
  clip-path: polygon(0 0, 100% 0, 100% 6px, 56% 6px, 50% 100%, 44% 6px, 0 6px);
  filter: drop-shadow(0 0 10px rgba(57, 209, 118, 0.82)) drop-shadow(0 0 18px rgba(255, 255, 255, 0.4));
  -webkit-mask-image: linear-gradient(180deg, #000000 0%, #000000 58%, rgba(0, 0, 0, 0.7) 74%, transparent 100%);
  mask-image: linear-gradient(180deg, #000000 0%, #000000 58%, rgba(0, 0, 0, 0.7) 74%, transparent 100%);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 980px);
  justify-content: center;
  gap: 10px 12px;
}

.hero-proof span {
  min-height: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.35;
}

.section {
  padding: clamp(72px, 8.6vw, 126px) clamp(20px, 6vw, 86px);
  border-bottom: 0;
}

.section-heading {
  max-width: 1000px;
  margin-right: auto;
  margin-bottom: clamp(30px, 4vw, 56px);
  margin-left: auto;
}

.section-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.48;
}

.section-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editor-copy {
  max-width: 980px;
  margin: 0 auto;
  border-top: 8px solid var(--gold);
  padding-top: clamp(22px, 3vw, 36px);
}

.editor-copy p {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.16;
}

.problem-lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1180px;
  margin-top: 44px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-lines div {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.problem-lines div:last-child {
  border-right: 0;
}

.line-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.problem-lines p,
.section-close {
  color: var(--ink);
}

.section-close {
  max-width: 780px;
  margin: 34px auto 0;
  font-size: 20px;
}

.letter-section {
  padding-top: clamp(62px, 7.4vw, 104px);
  padding-bottom: clamp(62px, 7.4vw, 104px);
  --headline-swoosh-color: var(--orange);
}

#opening-letter {
  padding-top: calc(clamp(62px, 7.4vw, 104px) + 80px);
}

.letter-section:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
}

.not-workshop-section {
  padding-top: clamp(48px, 5.5vw, 76px);
  padding-bottom: clamp(48px, 5.5vw, 76px);
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.not-workshop-section .letter-copy {
  max-width: 920px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 133, 15, 0.28);
  border-left: 10px solid var(--orange);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 52px rgba(12, 16, 22, 0.08);
}

.not-workshop-section h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.2vw, 72px);
  text-align: left;
}

.not-workshop-section p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 400;
  line-height: 1.46;
}

.letter-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.letter-copy h2 {
  max-width: 900px;
  margin-bottom: 28px;
  text-align: center;
}

.letter-copy p {
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.5;
}

.letter-copy strong {
  color: var(--ink);
  font-weight: 950;
}

.letter-emphasis,
.letter-question {
  padding: 18px 20px;
  border-left: 8px solid var(--orange);
  background: #fff7ed;
  font-weight: 950;
}

.letter-question {
  font-family: var(--headline);
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1.04 !important;
}

.letter-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.ps-section {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.ps-section h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.founder-section {
  padding-top: clamp(48px, 5.5vw, 76px);
  padding-bottom: clamp(48px, 5.5vw, 76px);
}

.founder-layout {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  text-align: left;
}

.founder-photo {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  align-self: stretch;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 133, 36, 0.5);
  border-radius: 18px;
  background: #f6f7f9;
  box-shadow: 0 22px 54px rgba(12, 16, 22, 0.1);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
}

.founder-copy {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.founder-copy h2 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.94;
  text-align: left;
}

.founder-copy p {
  max-width: 720px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.38;
}

.founder-copy .section-number {
  display: block;
  text-align: left;
}

.founder-proof-list {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 18px 0;
}

.founder-proof-list span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.38;
}

.founder-proof-list span::before {
  content: none;
}

.founder-emphasis {
  padding: 16px 18px;
  border-left: 8px solid var(--orange);
  background: #fff7ed;
  font-weight: 950;
}

.founder-copy .section-cta {
  display: flex;
  width: fit-content;
  margin-right: 0;
  margin-left: 0;
}

.definition-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.definition-row > p {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.16;
}

.definition-row aside {
  padding: clamp(24px, 3vw, 38px);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--line);
}

.definition-row strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 0.98;
}

.definition-row span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.method-rail {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.method-rail article {
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.method-rail article:last-child {
  border-right: 0;
}

.method-rail span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-rail h3 {
  margin-top: 18px;
  font-family: var(--headline);
  font-size: clamp(46px, 5.5vw, 84px);
  line-height: 0.9;
}

.method-rail strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.42;
}

.method-rail p {
  margin-right: auto;
  margin-left: auto;
  max-width: 300px;
}

.receive-section .method-rail {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.receive-section .method-rail article {
  padding: clamp(14px, 1.7vw, 24px) clamp(8px, 2vw, 28px);
}

.receive-section .method-rail span {
  font-size: clamp(10px, 1vw, 12px);
}

.method-logo {
  display: block;
  width: auto;
  height: clamp(42px, 5vw, 64px);
  margin: 8px auto 6px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(12, 16, 22, 0.12));
}

.method-logo-a {
  height: clamp(44px, 5.2vw, 68px);
}

.method-logo-b {
  height: clamp(44px, 5.2vw, 66px);
}

.method-logo-s {
  height: clamp(38px, 4.8vw, 62px);
}

.receive-section .method-rail h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 0.98;
  text-wrap: balance;
}

.receive-section .method-rail p {
  max-width: 285px;
  margin: 0 auto 10px;
  font-size: clamp(12px, 1.35vw, 16px);
  line-height: 1.35;
}

.receive-section .method-rail strong {
  margin-top: 0;
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.25;
}

.quiz-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: quiz;
  border-top: 1px solid var(--line-strong);
}

.quiz-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  counter-increment: quiz;
}

.quiz-list li::before {
  color: var(--orange);
  font-weight: 950;
  content: "0" counter(quiz);
}

.folders-section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.folders-section .section-heading {
  margin-bottom: 24px;
}

.folders-section h2 {
  font-size: clamp(42px, 5.3vw, 68px);
}

.folders-section .section-heading p {
  max-width: 820px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.36;
}

.folder-rows {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.folder-rows article {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(255, 133, 15, 0.26);
  border-radius: 8px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 133, 15, 0.1), rgba(255, 255, 255, 0) 58%);
}

.folder-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffb21b, var(--orange));
  box-shadow: 0 12px 24px rgba(255, 133, 15, 0.18);
}

.folder-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.folder-rows h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.12;
}

.folder-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
}

.value-section {
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

.value-section .section-heading {
  margin-bottom: 18px;
}

.value-section h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.value-section .section-heading p {
  max-width: 820px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.3;
}

.value-table {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
}

.value-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 7px 0;
}

.value-table strong,
.value-table span {
  display: block;
}

.value-table strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.value-table span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.24;
}

.value-table em {
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
}

.value-total {
  max-width: 900px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 5px solid var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.investment-layout {
  display: grid;
  max-width: 950px;
  min-height: auto;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.investment-main {
  min-width: 0;
}

.investment-main .section-heading {
  margin-bottom: clamp(22px, 2.8vw, 36px);
}

.value-side-card {
  display: flex;
  order: 1;
  width: 390px;
  height: min(660px, calc(100svh - 40px));
  min-height: 560px;
  max-height: 660px;
  flex-direction: column;
  align-self: stretch;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(12, 16, 22, 0.18);
  text-align: left;
}

.value-side-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--headline);
  font-size: 28px;
  line-height: 0.95;
}

.value-side-card h2::after {
  display: block;
  width: var(--headline-swoosh-width);
  height: var(--headline-swoosh-height);
  margin: var(--headline-swoosh-margin);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 24%, rgba(255, 255, 255, 0) 50%),
    var(--headline-swoosh-color);
  content: "";
}

.value-side-card .value-table {
  display: grid;
  flex: 1;
  max-width: none;
  margin: 12px 0 0;
  grid-template-columns: 1fr;
  gap: 0;
}

.value-side-card .value-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(12, 16, 22, 0.11);
}

.value-side-card .value-table [role="row"]:last-child {
  border-bottom: 0;
}

.value-side-card .value-table strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.06;
}

.value-side-card .value-table em {
  color: var(--orange);
  font-size: 12px;
  text-align: right;
}

.value-side-card .value-total {
  max-width: none;
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 3px solid var(--gold);
  color: var(--muted);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 950;
  line-height: 1.16;
  text-align: left;
  text-transform: uppercase;
}

.value-side-card .value-total strong {
  display: block;
  margin-top: 4px;
  color: #16884b;
  font-family: var(--headline);
  font-size: 36px;
  line-height: 0.92;
}

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

.rhythm-visual {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.rhythm-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.42), rgba(5, 6, 8, 0.02) 44%, rgba(5, 6, 8, 0.18)),
    linear-gradient(180deg, rgba(255, 133, 15, 0.08), rgba(5, 6, 8, 0.18));
  content: "";
  pointer-events: none;
}

.rhythm-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.ai-window {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(22vw, 220px);
  padding: 12px 14px;
  border: 1px solid rgba(255, 133, 15, 0.34);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 38px rgba(12, 16, 22, 0.2);
  text-align: left;
  backdrop-filter: blur(6px);
}

.ai-window strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
}

.ai-window span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.ai-window-main {
  top: 9%;
  left: 8%;
  width: min(32vw, 340px);
  border-left-color: #16884b;
}

.ai-window-leads {
  top: 32%;
  left: 7%;
}

.ai-window-support {
  top: 52%;
  left: 14%;
}

.ai-window-ops {
  top: 14%;
  right: 9%;
}

.ai-window-admin {
  top: 36%;
  right: 6%;
}

.ai-window-sop {
  right: 16%;
  bottom: 12%;
}

.ai-window-proposal {
  bottom: 10%;
  left: 36%;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 42px;
  max-width: 1180px;
  margin: 0 auto;
}

.rhythm-grid article {
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
}

.rhythm-grid p {
  margin-bottom: 12px;
}

.rhythm-grid strong {
  color: var(--ink);
}

.example-split {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.example-process-visual {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.example-process-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(5, 6, 8, 0.06));
  content: "";
  pointer-events: none;
}

.example-process-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.process-step {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  width: min(20vw, 190px);
  padding: 10px 12px;
  border: 1px solid rgba(255, 133, 15, 0.32);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(12, 16, 22, 0.16);
  text-align: left;
  backdrop-filter: blur(6px);
}

.process-step strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
}

.process-step span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.step-inquiry {
  top: 16%;
  left: 5%;
}

.step-summary {
  top: 37%;
  left: 12%;
}

.step-missing {
  bottom: 13%;
  left: 24%;
}

.step-draft {
  top: 10%;
  right: 28%;
}

.step-approval {
  top: 34%;
  right: 17%;
  border-left-color: #16884b;
}

.step-next {
  right: 8%;
  bottom: 13%;
}

.example-split article,
.artifact-grid article,
.steps-list li,
.where-panel {
  border: 1px solid rgba(255, 133, 15, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 133, 15, 0.1), rgba(255, 255, 255, 0) 56%),
    var(--white);
  box-shadow: 0 16px 34px rgba(12, 16, 22, 0.06);
}

.example-split article {
  padding: clamp(24px, 3vw, 36px);
  text-align: left;
}

.example-split span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.example-split p {
  margin-bottom: 0;
  color: var(--ink);
}

.codex-visual {
  width: min(100%, 1120px);
  margin: 0 auto 38px;
}

.codex-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.receive-list {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.receive-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px;
  text-align: left;
  border: 1px solid rgba(255, 133, 15, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 133, 15, 0.11), rgba(255, 255, 255, 0) 48%),
    var(--white);
  box-shadow: 0 16px 34px rgba(12, 16, 22, 0.06);
}

.receive-list article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--abs-yellow), var(--orange));
  box-shadow: 0 10px 22px rgba(255, 133, 15, 0.24);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.receive-list h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.receive-list p {
  margin: 0;
  padding: 0;
  border-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.proof-section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
  --headline-swoosh-color: var(--gold);
}

.proof-section .section-heading {
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.proof-section .section-heading h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.proof-section .section-heading p {
  max-width: 680px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.36;
}

.proof-section .section-number {
  margin-bottom: 10px;
}

.proof-argument {
  display: grid;
  max-width: 980px;
  margin: 0 auto clamp(20px, 3vw, 30px);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.proof-argument p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
}

.proof-argument .letter-emphasis {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 16px 18px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.35;
}

.artifact-grid {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.artifact-grid article {
  min-height: 136px;
  padding: 16px 12px;
  text-align: left;
}

.artifact-grid strong,
.artifact-grid span {
  display: block;
}

.artifact-grid strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.artifact-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
}

.fit-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  justify-items: stretch;
}

.fit-section > div {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 16px 34px rgba(12, 16, 22, 0.06);
}

.fit-section > div:first-child {
  --headline-swoosh-color: #208f5e;
  border-color: rgba(32, 143, 94, 0.34);
  background:
    linear-gradient(135deg, rgba(32, 143, 94, 0.13), rgba(255, 255, 255, 0) 58%),
    #f7fffb;
}

.fit-section > div:last-child {
  --headline-swoosh-color: var(--orange);
  border-color: rgba(196, 48, 43, 0.34);
  background:
    linear-gradient(135deg, rgba(196, 48, 43, 0.12), rgba(255, 255, 255, 0) 58%),
    #fff8f7;
}

.fit-section h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.fit-section ul {
  margin: 24px 0 0;
  padding-left: 0;
  list-style: none;
}

.fit-section li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.45;
}

.fit-section li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.fit-section > div:first-child li::before {
  content: "\2713";
  background: #208f5e;
}

.fit-section > div:last-child li::before {
  content: "\00d7";
  background: #c4302b;
}

.price-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.price-strip-single {
  max-width: 850px;
  margin: 0 auto;
}

.price-strip > div {
  padding: clamp(24px, 3vw, 40px);
  border-right: 0;
}

.price-strip > div:last-child {
  border-right: 0;
}

.price-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.96;
}

.price-strip .investment-card {
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 28px 60px rgba(12, 16, 22, 0.16);
}

.investment-value-ladder {
  display: grid;
  width: min(100%, 760px);
  margin: 0 auto 26px;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.investment-value-ladder p {
  display: grid;
  gap: 7px;
  align-items: center;
  justify-items: center;
  width: min(100%, 680px);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.value-inline-card {
  width: 100%;
  margin: -2px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.value-inline-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.precheckout-page .value-inline-card h3 {
  text-align: center;
}

.value-inline-card .value-table {
  display: grid;
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.value-inline-card .value-table [role="row"] {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(12, 16, 22, 0.1);
}

.value-inline-card .value-icon {
  display: grid;
  width: 26px;
  height: 26px;
  margin: 0;
  place-items: center;
  color: var(--orange);
  background: transparent;
}

.value-inline-card .value-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.value-inline-card .value-table strong {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.value-inline-card .value-table em {
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.investment-value-ladder b {
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.investment-value-ladder .price-struck {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.investment-value-ladder .price-struck::after {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 116%;
  height: 4px;
  background: #d71920;
  content: "";
  transform: rotate(-10deg);
  transform-origin: center;
}

.investment-price-label {
  display: block;
  margin-top: 18px;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.price-strip .original-investment-price {
  position: relative;
  display: flex;
  width: max-content;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 2px auto 8px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.price-strip .original-investment-price span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: 0.5em;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-strip .original-investment-price s {
  position: relative;
  text-decoration: none;
}

.price-strip .original-investment-price s::after {
  position: absolute;
  top: 48%;
  left: -7%;
  width: 114%;
  height: 4px;
  background: #d71920;
  content: "";
  transform: rotate(-8deg);
  transform-origin: center;
}

.investment-payment-actions {
  align-items: start;
  margin-top: 20px;
}

.payment-option {
  display: grid;
  flex: 1 1 230px;
  max-width: 310px;
  justify-items: center;
  gap: 8px;
}

.payment-option .button {
  width: 100%;
}

.payment-option p {
  max-width: 280px;
  margin: 0;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.35;
  text-align: center;
}

.financing-plan-link {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.financing-plan-link a {
  color: #0f6f41;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.financing-plan-link a:hover {
  color: var(--orange);
}

.final-investment-price small {
  font-family: var(--body);
  font-size: 0.28em;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}

.payment-note {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--ink);
}

.investment-section .section-cta {
  min-height: 92px;
  margin-top: 28px;
  padding: 0 82px 0 58px;
  font-size: 28px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
}

.investment-section {
  --headline-swoosh-color: rgba(255, 255, 255, 0.88);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #ffb21b 0%, var(--orange) 48%, #d95706 100%);
  border-bottom: 0;
}

.investment-section.section {
  padding-top: clamp(48px, 5.4vw, 78px);
  padding-bottom: clamp(48px, 5.4vw, 78px);
}

.investment-section .section-number,
.investment-section h2,
.investment-section .section-heading p {
  color: var(--white);
}

.investment-section .section-heading h2::after {
  background: rgba(255, 255, 255, 0.76);
}

.investment-section .section-heading p,
.investment-section .price-strip p,
.investment-section .payment-note {
  color: rgba(255, 255, 255, 0.78);
}

.investment-section .price-strip {
  border-top-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.investment-section .price-strip span {
  color: var(--gold);
}

.investment-section .price-strip .final-investment-price {
  color: #16884b;
  font-size: clamp(52px, 6vw, 84px);
}

.investment-section .price-strip p {
  color: var(--muted);
}

.investment-section .button.primary {
  border-color: #0f6f41;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #2ec36b 0%, #16884b 62%, #0f6f41 100%);
  box-shadow: 0 18px 38px rgba(15, 111, 65, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.investment-section .button.primary:hover {
  box-shadow: 0 22px 46px rgba(15, 111, 65, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.investment-section .precheckout-payment-actions .precheckout-pay-card {
  border-color: #dc6812;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, var(--abs-yellow) 0%, var(--orange) 55%, #e45c08 100%);
  box-shadow: 0 14px 30px rgba(255, 133, 15, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.investment-section .precheckout-payment-actions .precheckout-pay-card:hover {
  box-shadow: 0 18px 38px rgba(255, 133, 15, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.investment-section .payment-note {
  width: min(100%, 476px);
  max-width: 476px;
  font-size: 12px;
  line-height: 1.45;
}

.precheckout-page .hero {
  padding-bottom: clamp(28px, 4vw, 54px);
}

.precheckout-page .investment-section {
  scroll-margin-top: calc(var(--countdown-height, 0px) + 88px);
}

.precheckout-page .guarantee-section {
  background:
    linear-gradient(135deg, rgba(255, 133, 15, 0.06), rgba(255, 255, 255, 0) 48%),
    var(--white);
}

.early-bird-page {
  --early-charcoal: #090b0f;
  --early-charcoal-soft: #12161d;
  --early-gold: #f4c257;
  --early-gold-soft: #ffe7a3;
  --early-gold-muted: #c99a3e;
}

.early-bird-page .site-header {
  display: none;
}

.early-bird-page .hero {
  --headline-swoosh-color: var(--early-gold);
  --hero-min-height: auto;
  padding-top: 4px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(244, 194, 87, 0.22), transparent 28%),
    radial-gradient(circle at 18% 34%, rgba(255, 133, 15, 0.18), transparent 26%),
    linear-gradient(180deg, #181b20 0%, var(--early-charcoal) 100%);
}

.early-bird-page .hero::after {
  display: none;
}

.early-bird-page .hero-copy {
  min-height: auto;
  padding-bottom: clamp(10px, 1.8vw, 18px);
}

.early-bird-page .hero-copy h1 {
  padding-top: clamp(54px, 7vw, 62px);
  padding-bottom: 2px;
  color: var(--early-gold-soft);
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 0.9;
  margin-bottom: 0;
  text-shadow: 0 3px 28px rgba(244, 194, 87, 0.18), 0 2px 18px rgba(0, 0, 0, 0.42);
}

.early-bird-page .hero-copy h1::after {
  display: none;
}

.early-bird-hero-logo {
  width: min(46vw, 280px);
  height: auto;
  margin: 0 auto 8px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.42));
}

.early-bird-page .early-bird-art-card {
  width: min(100%, 500px);
  max-width: 500px;
  padding: 6px;
  margin-bottom: 0;
  border-color: rgba(244, 194, 87, 0.76);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 231, 163, 0.18), rgba(244, 194, 87, 0.08)) padding-box,
    linear-gradient(135deg, #ffe7a3, var(--early-gold), #9e6f19) border-box;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 231, 163, 0.1) inset;
}

.early-bird-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(255, 231, 163, 0.35);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.early-bird-page .workshop-snapshot {
  margin-top: 6px;
  border-radius: 8px;
  border-color: rgba(255, 231, 163, 0.22);
  background: rgba(9, 11, 15, 0.94);
}

.early-bird-page .workshop-snapshot span {
  min-height: 36px;
  gap: 2px;
  padding: 5px 6px;
  color: var(--early-gold-soft);
  font-size: 9px;
  border-right-color: rgba(255, 231, 163, 0.16);
}

.early-bird-page .workshop-snapshot strong,
.early-bird-page .workshop-snapshot b {
  color: var(--early-gold-soft);
}

.early-bird-page .investment-section {
  --headline-swoosh-color: var(--early-gold);
  color: var(--early-gold-soft);
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 194, 87, 0.28), transparent 26%),
    radial-gradient(circle at 12% 30%, rgba(255, 133, 15, 0.16), transparent 24%),
    linear-gradient(180deg, #11151b 0%, var(--early-charcoal) 100%);
}

.early-bird-page .investment-section .section-number,
.early-bird-page .investment-section h2,
.early-bird-page .investment-section .section-heading p {
  color: var(--early-gold-soft);
}

.early-bird-page .investment-section .section-heading h2 {
  text-shadow: 0 2px 24px rgba(244, 194, 87, 0.2);
}

.early-bird-page .investment-section .section-heading h2::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 24%, rgba(255, 255, 255, 0) 50%),
    var(--early-gold);
}

.early-bird-page .investment-section .price-strip {
  border-top-color: rgba(255, 231, 163, 0.42);
  border-bottom-color: rgba(255, 231, 163, 0.42);
}

.early-bird-page .price-strip .investment-card {
  border-color: rgba(244, 194, 87, 0.44);
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 194, 87, 0.12), transparent 34%),
    linear-gradient(145deg, var(--early-charcoal-soft), var(--early-charcoal));
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 231, 163, 0.08) inset;
}

.early-bird-page .investment-card,
.early-bird-page .investment-card .value-inline-card h3,
.early-bird-page .investment-card .investment-price-label,
.early-bird-page .investment-card .investment-value-ladder b,
.early-bird-page .investment-card .investment-value-ladder .price-struck,
.early-bird-page .investment-card .value-inline-card .value-table strong,
.early-bird-page .investment-card .value-inline-card .value-table em {
  color: var(--early-gold-soft);
}

.early-bird-page .investment-card .value-inline-card h3,
.early-bird-page .investment-card .investment-price-label {
  color: var(--early-gold);
}

.early-bird-page .investment-card .original-investment-price {
  color: rgba(255, 231, 163, 0.76);
}

.early-bird-page .investment-card .original-investment-price s {
  color: var(--early-gold-soft);
}

.early-bird-page .investment-card .value-inline-card .value-table [role="row"] {
  border-bottom-color: rgba(255, 231, 163, 0.18);
}

.early-bird-page .investment-card .value-icon {
  color: var(--early-gold);
}

.early-bird-page .investment-section .price-strip p,
.early-bird-page .investment-card .payment-option p {
  color: rgba(255, 231, 163, 0.78) !important;
}

.early-bird-page .investment-section .price-strip .final-investment-price {
  color: var(--early-gold);
  text-shadow: 0 0 24px rgba(244, 194, 87, 0.28);
}

.early-bird-page .investment-section .precheckout-payment-actions .precheckout-pay-card {
  border-color: #ffe18a;
  color: #171107;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #ffe7a3 0%, var(--early-gold) 54%, #b87a1c 100%);
  box-shadow: 0 16px 34px rgba(244, 194, 87, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.early-bird-page .investment-card .button.secondary {
  border-color: rgba(255, 231, 163, 0.54);
  color: var(--early-gold-soft);
  background: rgba(255, 231, 163, 0.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.investment-section .value-side-card h2,
.investment-section .value-side-card .value-table strong,
.investment-section .value-side-card .value-total {
  color: var(--ink);
}

.investment-section .value-side-card .value-table em {
  color: var(--orange);
}

.steps-section {
  padding-top: clamp(22px, 2.6vw, 38px);
  padding-bottom: clamp(22px, 2.6vw, 38px);
}

.steps-section .section-heading {
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

.steps-section .section-number {
  margin-bottom: 6px;
}

.steps-section h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 52px);
}

.steps-section .section-heading p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.32;
}

.seat-limit-note {
  max-width: 980px;
  margin: 0 auto clamp(14px, 1.7vw, 22px);
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 133, 15, 0.32);
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  color: var(--ink);
  background: #fff7ed;
  box-shadow: 0 18px 42px rgba(255, 133, 15, 0.12);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.32;
  text-align: center;
}

.seat-limit-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-family: var(--headline);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 950;
  line-height: 0.98;
}

.seat-limit-note span {
  display: block;
}

.steps-list {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  min-height: 78px;
  padding: 28px 12px 12px;
  counter-increment: steps;
  text-align: left;
}

.steps-list li::before {
  position: absolute;
  top: 10px;
  left: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  content: "0" counter(steps);
}

.steps-list strong,
.steps-list span {
  display: block;
}

.steps-list strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.18;
}

.steps-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.guarantee-section {
  --headline-swoosh-color: var(--gold);
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 133, 15, 0.12), rgba(255, 255, 255, 0) 52%),
    var(--white);
}

.guarantee-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 133, 15, 0.38);
  border-radius: 8px;
  background: #fff8ef;
  box-shadow: var(--shadow);
}

.guarantee-badge {
  display: block;
  width: min(100%, clamp(260px, 42vw, 456px));
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 14px 22px rgba(12, 16, 22, 0.18));
}

.guarantee-panel .section-number {
  display: none;
}

.guarantee-panel h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(38px, 4vw, 58px);
}

.guarantee-panel p {
  max-width: 660px;
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.38;
}

.guarantee-policy-link {
  margin-top: 6px;
  margin-bottom: 0 !important;
  font-size: clamp(14px, 1.1vw, 16px) !important;
  font-weight: 400;
}

.guarantee-policy-link a {
  color: inherit;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.guarantee-policy-link a:hover {
  color: var(--gold);
}

.policy-section {
  background:
    linear-gradient(135deg, rgba(255, 133, 15, 0.09), rgba(255, 255, 255, 0) 48%),
    var(--white);
}

.policy-content {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 133, 15, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: left;
}

.policy-content h2 {
  max-width: none;
  margin-top: 28px;
  margin-bottom: 8px;
  font-family: var(--body);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.where-section {
  --headline-swoosh-color: var(--abs-yellow);
  position: relative;
  min-height: min(760px, calc(100svh - 76px));
  display: grid;
  align-content: center;
  overflow: hidden;
  background: url("./assets/artloft-venue.jpg") center / cover no-repeat;
}

.where-section .section-number {
  display: none;
}

.where-section h2,
.where-section .section-heading p,
.where-panel strong,
.where-panel span {
  color: var(--white);
}

.where-section .section-heading h2::after {
  background: linear-gradient(90deg, #ffd27c, var(--orange));
}

.where-section .section-heading {
  width: min(100%, 920px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(8, 16, 28, 0.62);
}

.where-panel {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(8, 16, 28, 0.62);
}

.where-panel strong {
  font-family: var(--headline);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.where-panel span {
  font-size: 18px;
  line-height: 1.45;
}

.breakthrough-cta-section {
  --headline-swoosh-color: var(--cta-green);
  display: grid;
  justify-items: center;
  gap: clamp(22px, 3vw, 34px);
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(76px, 8vw, 112px);
  background:
    linear-gradient(135deg, rgba(46, 195, 107, 0.14), rgba(255, 255, 255, 0) 54%),
    linear-gradient(180deg, #ffffff 0%, #f3fbf6 100%);
}

.breakthrough-cta-section .section-heading {
  margin-bottom: 0;
}

.breakthrough-cta-section h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.breakthrough-cta-section .section-heading h2::after {
  background: linear-gradient(90deg, #39d176, #0f6f41);
}

.breakthrough-product-visual {
  width: min(100%, 1080px);
  height: auto;
  margin: clamp(2px, 0.8vw, 10px) auto 0;
  background: transparent;
  filter: drop-shadow(0 22px 42px rgba(12, 16, 22, 0.18));
}

.breakthrough-cta-section .breakthrough-cta-button {
  width: min(100%, 560px);
  min-height: 92px;
  padding: 0 82px 0 58px;
  border-color: #0f6f41;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #39d176 0%, #16884b 62%, #0f6f41 100%);
  box-shadow: 0 18px 38px rgba(15, 111, 65, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.44);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.08;
}

.breakthrough-cta-section .breakthrough-cta-button:hover {
  box-shadow: 0 22px 46px rgba(15, 111, 65, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.payment-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.payment-page-section {
  min-height: calc(100vh - 120px);
  background: var(--white);
}

.owner-details-section {
  min-height: calc(100vh - 120px);
  background:
    linear-gradient(135deg, rgba(255, 133, 15, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.owner-details-form {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 133, 15, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: left;
}

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

.owner-details-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.owner-details-form input,
.owner-details-form select,
.owner-details-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: 500 15px/1.35 var(--body);
}

.owner-details-form textarea {
  min-height: 118px;
  resize: vertical;
}

.owner-details-submit {
  width: min(100%, 360px);
  min-height: 60px;
  margin: 8px auto 0;
  font-size: 18px;
}

.owner-details-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.payment-qr-grid {
  display: grid;
  max-width: 1560px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.payment-page-grid {
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-qr-card,
.payment-help-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.payment-qr-card {
  align-self: start;
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
  height: fit-content;
  justify-items: center;
  min-width: 0;
  padding: 12px;
}

.payment-brand-logo {
  display: grid;
  width: min(100%, 340px);
  min-height: 74px;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.payment-brand-logo img,
.payment-brand-logo object {
  width: auto;
  max-width: 82%;
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.payment-brand-logo object {
  width: 82%;
  height: 52px;
  pointer-events: none;
}

.logo-bpi {
  border-top: 4px solid #a5305e;
}

.logo-gcash {
  border-top: 4px solid #1286f3;
}

.logo-unionbank {
  border-top: 4px solid #cf803f;
}

.logo-gotyme {
  border-top: 4px solid #18c6d1;
}

.logo-chinabank {
  border-top: 4px solid #bb224c;
}

.logo-chinabank img {
  max-width: 92%;
  max-height: 52px;
}

.payment-page-actions {
  margin-top: 22px;
}

.payment-qr-heading,
.payment-qr-image {
  width: min(100%, 340px);
}

.payment-qr-image {
  display: grid;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  line-height: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.payment-qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.payment-qr-heading {
  display: grid;
  min-height: 58px;
  align-items: center;
  justify-items: center;
  border: 1px solid var(--line);
  color: var(--white);
  text-align: center;
}

.payment-qr-heading span {
  display: block;
  padding: 10px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand-bpi {
  background: #c8202f;
}

.brand-gcash {
  background: #007dff;
}

.brand-unionbank {
  background: #f58220;
}

.brand-gotyme {
  color: #242438;
  background: #16d5d2;
}

.brand-chinabank {
  background: #e11922;
}

.payment-help-copy strong {
  font-family: var(--headline);
  line-height: 0.98;
}

.payment-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.payment-help-actions a {
  display: inline-flex;
  width: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid rgba(143, 148, 155, 0.85);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
  text-decoration: none;
  box-shadow: inset 0 1px 0 var(--white);
}

.payment-help-actions img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 999px;
}

.payment-help-actions a:hover {
  border-color: var(--orange);
  background: linear-gradient(180deg, #ffffff 0%, #fff4e5 100%);
  transform: translateY(-1px);
}

.payment-help-widget {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 140;
  display: grid;
  justify-items: end;
  gap: 12px;
  width: auto;
  background: transparent;
  pointer-events: none;
}

.payment-help-toggle,
.payment-help-panel {
  pointer-events: auto;
}

.payment-help-toggle {
  display: inline-grid;
  width: 58px;
  height: 58px;
  min-height: 0;
  place-items: center;
  padding: 0;
  border: 1px solid #dc6812;
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, var(--abs-yellow) 0%, var(--orange) 55%, #e45c08 100%);
  box-shadow: 0 14px 30px rgba(255, 133, 15, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font: 950 28px/1 var(--body);
  text-shadow: 0 1px 0 rgba(12, 16, 22, 0.3);
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.payment-help-toggle:hover,
.payment-help-toggle[aria-expanded="true"] {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 133, 15, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.payment-help-panel {
  position: relative;
  z-index: 141;
  width: min(390px, calc(100vw - 32px));
  padding: 20px;
  border-color: rgba(12, 16, 22, 0.16);
  background: #fff;
  box-shadow: 0 24px 70px rgba(12, 16, 22, 0.24);
}

.payment-help-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 32px;
}

.payment-help-copy p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.payment-modal[hidden] {
  display: none;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 22, 0.56);
  backdrop-filter: blur(10px);
}

.payment-modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(143, 148, 155, 0.55);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(12, 16, 22, 0.28);
  text-align: center;
}

.payment-modal-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--abs-yellow), var(--orange), var(--silver));
  content: "";
}

.payment-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: 700 22px/1 var(--body);
}

.payment-modal-logo {
  width: min(260px, 72vw);
  height: auto;
  margin: 0 auto 18px;
}

.payment-modal-panel h2 {
  margin-bottom: 10px;
}

.payment-modal-panel p {
  max-width: 420px;
  margin: 0 auto 22px;
  color: var(--muted);
}

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

.proof-modal-panel {
  width: min(620px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
}

.proof-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.proof-form label:not(.proof-dropzone) {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.proof-form input[type="text"],
.proof-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: 500 15px/1.3 var(--body);
}

.proof-dropzone {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 22px;
  border: 2px dashed rgba(255, 133, 15, 0.62);
  border-radius: 8px;
  color: var(--ink);
  background: #fff7ed;
  cursor: pointer;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.proof-dropzone.is-dragging {
  border-color: var(--orange);
  background: #ffedd5;
  transform: translateY(-1px);
}

.proof-dropzone strong {
  font-size: 20px;
  line-height: 1.2;
}

.proof-dropzone span,
.proof-dropzone em,
.proof-form-status {
  color: var(--muted);
  font-size: 13px;
}

.proof-dropzone em {
  font-style: normal;
  font-weight: 800;
}

.proof-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.proof-form .button.primary {
  width: 100%;
  min-height: 56px;
}

.proof-form-status {
  min-height: 20px;
  margin: 0;
  text-align: center;
}

.proof-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.faq-list p {
  max-width: 820px;
  margin: 16px auto 0;
}

.final-cta {
  padding: clamp(80px, 10vw, 146px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--line-strong);
}

.final-cta div {
  max-width: 1020px;
  margin: 0 auto;
}

.final-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.42;
}

.site-footer {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  padding: 42px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  border-top: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 133, 15, 0.16), rgba(255, 255, 255, 0) 32%),
    #17191d;
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
}

.footer-system-logo {
  width: min(126px, 42vw);
  height: auto;
  margin-bottom: 8px;
}

.site-footer .footer-company {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 8px clamp(14px, 3vw, 34px);
  }

  .brand {
    width: min(30vw, 250px);
  }

  .nav-cta {
    grid-column: auto;
    grid-row: auto;
    align-self: center;
    min-height: 42px;
    padding: 0 26px 0 16px;
    font-size: 13px;
  }

  .site-nav {
    top: calc(100% + 8px);
    right: clamp(14px, 3vw, 34px);
    display: grid;
    gap: 4px;
    overflow: visible;
    padding: 10px;
    font-size: 13px;
  }

  .hero {
    --hero-min-height: calc(100svh - 62px);
  }

  .investment-layout {
    max-width: 760px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .investment-section .section-heading h2 {
    font-size: clamp(38px, 5.6vw, 56px);
  }

  .value-side-card {
    width: 390px;
    height: min(620px, calc(100svh - 30px));
    min-height: 520px;
  }

  .value-side-card .value-table [role="row"] {
    padding: 6px 0;
  }

  .value-side-card .value-total strong {
    font-size: 32px;
  }

  .problem-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-qr-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-lines div:nth-child(2n) {
    border-right: 0;
  }

  .definition-row,
  .rhythm-grid {
    grid-template-columns: 1fr;
  }

  .artifact-grid {
    max-width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .artifact-grid article {
    min-height: 126px;
    padding: 14px 10px;
  }

  .artifact-grid strong {
    font-size: 13px;
  }

  .artifact-grid span {
    font-size: 11px;
    line-height: 1.26;
  }

  .founder-layout {
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
    gap: 28px;
  }

  .founder-photo {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .countdown-bar {
    flex-direction: column;
    gap: 5px;
    padding: 7px 16px;
    font-size: 11px;
  }

  .countdown-bar strong {
    min-width: 132px;
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 12px 16px;
    gap: 8px;
  }

  .brand {
    width: min(34vw, 180px);
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    min-height: 40px;
    padding: 0 24px 0 14px;
    font-size: 12px;
  }

  .site-nav {
    top: calc(100% + 8px);
    right: 16px;
    display: grid;
    gap: 4px;
    overflow: visible;
    padding: 10px;
    white-space: nowrap;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero-scroll-cue {
    gap: 8px;
    font-size: 15px;
  }

  .hero-scroll-cue i {
    width: min(74vw, 300px);
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 5px, 56% 5px, 50% 100%, 44% 5px, 0 5px);
  }

  .hero {
    --hero-min-height: calc(100svh - 122px);
    --hero-vertical-padding: 18px;
    padding: 12px 20px 6px;
  }

  h1 {
    padding-top: 28px;
    font-size: clamp(17px, 4.45vw, 20px);
    line-height: 1.02;
    margin-bottom: 8px;
  }

  .hero-copy h1 {
    padding-top: 56px;
    padding-bottom: 4px;
    --headline-swoosh-width: min(76vw, 260px);
    --headline-swoosh-height: 16px;
    --headline-swoosh-margin: 8px auto 0;
  }

  .hero-copy > p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .hero-subheadline {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.15;
  }

  .hero-media-card {
    width: min(100%, 360px, calc((100svh - 300px) * 16 / 9 + 18px));
    min-width: min(100%, 300px);
    padding: 8px;
    margin-bottom: 8px;
  }

  .hero-video-frame {
    aspect-ratio: 16 / 9;
  }

  .video-sound-toggle {
    top: 8px;
    right: 8px;
    min-height: 32px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .sound-icon,
  .sound-icon svg {
    width: 17px;
    height: 17px;
  }

  .workshop-snapshot {
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 0;
    border-radius: 14px;
  }

  .workshop-snapshot span {
    flex: 1 1 calc(50% - 6px);
    min-height: 54px;
    padding: 6px 8px;
    border-right: 0;
    border-radius: 10px;
    background: rgba(17, 24, 32, 0.94);
    font-size: 10px;
  }

  .investment-layout {
    max-width: 420px;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .value-inline-card .value-table {
    grid-template-columns: 1fr;
  }

  .investment-section .section-cta {
    min-height: 72px;
    padding: 0 54px 0 34px;
    font-size: 20px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  }

  .breakthrough-cta-section .breakthrough-cta-button {
    width: min(100%, 340px);
    min-height: 76px;
    padding: 0 48px 0 30px;
    font-size: 19px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  }

  .breakthrough-product-visual {
    width: min(100%, 560px);
  }

  .precheckout-payment-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .precheckout-payment-actions .button {
    width: min(100%, 250px);
    min-height: 52px;
    font-size: 16px;
  }

  .investment-value-ladder {
    width: min(100%, 340px);
  }

  .investment-value-ladder p {
    grid-template-columns: 1fr;
    gap: 4px;
    justify-items: center;
    padding: 7px 10px;
  }

  .investment-value-ladder b {
    text-align: center;
  }

  .investment-value-ladder .price-struck {
    font-size: 27px;
  }

  .investment-section .payment-note {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .rhythm-visual {
    margin-bottom: 24px;
  }

  .ai-window {
    width: min(42vw, 156px);
    padding: 8px 9px;
    border-left-width: 4px;
  }

  .ai-window strong {
    font-size: 10px;
  }

  .ai-window span {
    font-size: 9px;
  }

  .ai-window-main {
    top: 7%;
    left: 5%;
    width: min(56vw, 220px);
  }

  .ai-window-leads {
    top: 31%;
    left: 4%;
  }

  .ai-window-support {
    top: 55%;
    left: 7%;
  }

  .ai-window-ops {
    top: 12%;
    right: 4%;
  }

  .ai-window-admin {
    top: 39%;
    right: 4%;
  }

  .ai-window-sop {
    right: 6%;
    bottom: 10%;
  }

  .ai-window-proposal {
    bottom: 9%;
    left: 34%;
  }

  .example-process-visual {
    margin-bottom: 22px;
  }

  .process-step {
    width: min(38vw, 138px);
    padding: 7px 8px;
    border-left-width: 4px;
  }

  .process-step strong {
    font-size: 9px;
  }

  .process-step span {
    font-size: 8px;
  }

  .step-inquiry {
    top: 9%;
    left: 4%;
  }

  .step-summary {
    top: 31%;
    left: 7%;
  }

  .step-missing {
    bottom: 10%;
    left: 12%;
  }

  .step-draft {
    top: 8%;
    right: 9%;
  }

  .step-approval {
    top: 34%;
    right: 5%;
  }

  .step-next {
    right: 6%;
    bottom: 9%;
  }

  h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .section-heading h1,
  .section-heading h2,
  .letter-copy h2,
  .guarantee-panel h2 {
    --headline-swoosh-width: min(84vw, 270px);
    --headline-swoosh-height: 18px;
    --headline-swoosh-margin: 10px auto 0;
  }

  .founder-copy h2 {
    --headline-swoosh-margin: 10px auto 0;
  }

  p,
  li {
    font-size: 16px;
  }

  .problem-lines,
  .example-split,
  .founder-layout,
  .fit-section,
  .receive-list,
  .artifact-grid,
  .price-strip,
  .owner-form-grid,
  .value-table,
  .payment-qr-grid,
  .value-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .artifact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-argument {
    grid-template-columns: 1fr;
  }

  .problem-lines div,
  .price-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-lines div:last-child,
  .price-strip > div:last-child {
    border-bottom: 0;
  }

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

  .founder-photo {
    width: min(100%, 300px);
    min-height: 0;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
  }

  .founder-copy,
  .founder-copy h2,
  .founder-copy .section-number,
  .founder-copy p {
    text-align: center;
  }

  .founder-proof-list,
  .founder-copy .section-cta {
    margin-right: auto;
    margin-left: auto;
  }

  .method-rail article {
    padding: clamp(12px, 3.8vw, 22px) clamp(8px, 2.5vw, 16px);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .method-rail article:last-child {
    border-right: 0;
  }

  .method-rail span {
    font-size: clamp(9px, 2.2vw, 11px);
    letter-spacing: 0.08em;
  }

  .method-rail h3 {
    margin-top: 10px;
    font-size: clamp(26px, 9.4vw, 44px);
  }

  .method-rail p {
    max-width: 18ch;
    margin-top: 12px;
    font-size: clamp(10px, 2.7vw, 13px);
    line-height: 1.35;
  }

  .method-rail strong {
    margin-top: 12px;
    font-size: clamp(10px, 2.7vw, 13px);
    line-height: 1.3;
  }

  .folder-rows article {
    grid-template-columns: 1fr;
  }

  .folder-rows {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .folder-rows article {
    padding: 12px 8px;
  }

  .folder-icon {
    width: 34px;
    height: 34px;
  }

  .folder-icon svg {
    width: 19px;
    height: 19px;
  }

  .folder-rows h3 {
    font-size: clamp(13px, 3.7vw, 18px);
  }

  .folder-rows p {
    font-size: clamp(10px, 2.9vw, 13px);
    line-height: 1.28;
  }

  .value-table [role="row"] {
    gap: 8px;
    padding: 10px 0;
  }

  .value-table em {
    color: var(--orange);
    text-align: left;
  }

  .value-side-card .value-table [role="row"] {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .value-side-card .value-table em {
    text-align: right;
  }

  .payment-qr-heading {
    min-height: auto;
  }

  .payment-help-widget {
    right: 12px;
    bottom: 10px;
    left: auto;
    z-index: 160;
    width: auto;
    justify-items: end;
  }

  .payment-help-toggle {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }

  .payment-help-panel {
    position: fixed;
    right: 12px;
    bottom: 72px;
    left: 12px;
    z-index: 161;
    width: auto;
    max-height: min(72vh, 520px);
    padding: 18px 16px;
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(12, 16, 22, 0.3);
  }

  .payment-help-copy strong,
  .payment-help-copy p {
    text-align: center;
  }

  .payment-help-copy strong {
    font-size: clamp(28px, 8vw, 38px);
  }

  .payment-help-actions {
    justify-content: center;
  }

  .payment-help-actions a {
    flex: 0 0 56px;
    width: 56px;
    min-height: 56px;
  }
}

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

  .brand {
    width: min(44vw, 180px);
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }
}

main p,
main li,
.site-footer p,
.payment-help-copy p,
.payment-modal-panel p {
  line-height: var(--body-copy-line-height) !important;
}

.letter-copy p:not(.letter-emphasis):not(.letter-question),
.founder-copy > p:not(.founder-emphasis),
.proof-argument p:not(.letter-emphasis),
.guarantee-panel p:not(.guarantee-policy-link),
.seat-limit-note {
  margin-bottom: var(--body-copy-paragraph-gap) !important;
}

.letter-emphasis,
.letter-question {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 760px) {
  .early-bird-page .hero {
    --hero-min-height: auto;
  }

  .early-bird-page .hero-copy h1 {
    padding-top: 54px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .early-bird-hero-logo {
    width: min(70vw, 270px);
    margin-bottom: 8px;
  }

  .early-bird-page .early-bird-art-card {
    width: min(100%, 360px);
  }

  .early-bird-page .early-bird-hero-image {
    aspect-ratio: 2.25 / 1;
    object-position: center 16%;
  }

  .early-bird-page .workshop-snapshot span {
    min-height: 38px;
  }
}

.thank-you-page {
  --thank-you-dark: #111820;
  --thank-you-panel: rgba(255, 255, 255, 0.1);
  --thank-you-panel-border: rgba(255, 255, 255, 0.2);
  overflow-x: hidden;
  background: var(--white);
  text-align: left;
}

.thank-you-page .confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.38;
}

.thank-you-page .site-header {
  top: 0;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(13, 21, 28, 0.86);
  backdrop-filter: blur(18px);
}

.thank-you-page .brand {
  width: min(27vw, 260px);
}

.thank-you-page .menu-toggle {
  color: var(--white);
  filter: none;
}

.thank-you-page .site-nav {
  text-align: left;
}

.success-main {
  overflow: hidden;
  background: var(--white);
}

.success-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(860px, 100svh);
  grid-template-columns: minmax(0, 920px);
  align-content: center;
  justify-content: center;
  justify-items: center;
  gap: clamp(28px, 4vw, 50px);
  padding: clamp(118px, 12vw, 160px) clamp(20px, 6vw, 86px) clamp(70px, 9vw, 110px);
  background:
    radial-gradient(circle at 18% 18%, rgba(57, 209, 118, 0.26), transparent 27%),
    radial-gradient(circle at 88% 30%, rgba(255, 133, 15, 0.18), transparent 24%),
    linear-gradient(135deg, #18232a 0%, #111820 47%, #0b1015 100%);
}

.success-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
}

.success-copy {
  max-width: 900px;
  color: var(--white);
  text-align: center;
}

.success-copy .hero-kicker {
  margin-bottom: 18px;
  color: #f7d58a;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1 !important;
  text-transform: uppercase;
}

.success-copy h1 {
  --headline-swoosh-color: #39d176;
  --headline-swoosh-width: min(100%, 360px);
  --headline-swoosh-height: clamp(18px, 2.1vw, 28px);
  --headline-swoosh-margin: 18px auto 0;
  max-width: 860px;
  margin: 0 auto 26px;
  color: #fff7ec;
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: 0.94;
  hyphens: none;
  overflow-wrap: normal;
  text-align: center;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
  word-break: normal;
}

.success-copy .lead {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.42 !important;
  text-align: center;
}

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

.success-confirmation-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 760px);
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--thank-you-panel-border);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(17, 24, 32, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-align: left;
}

.success-confirmation-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #39d176, var(--abs-yellow), var(--orange));
  content: "";
}

.confirmation-status {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(57, 209, 118, 0.44);
  border-radius: 999px;
  color: #c9ffe0;
  background: rgba(57, 209, 118, 0.16);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.success-confirmation-card h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--headline);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
  text-align: left;
}

.success-confirmation-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.success-confirmation-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.42 !important;
  text-align: left;
}

.success-confirmation-card li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #0e462c;
  background: #39d176;
  font-size: 12px;
  font-weight: 950;
  content: "\2713";
}

.success-confirmation-card strong {
  color: var(--white);
}

.success-next-steps,
.success-schedule {
  scroll-margin-top: 84px;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 86px);
  background: var(--white);
  text-align: center;
}

.success-next-steps .section-heading,
.success-schedule .section-heading {
  max-width: 980px;
}

.success-next-steps .section-heading h2,
.success-schedule .section-heading h2 {
  font-size: clamp(42px, 5.2vw, 78px);
}

.success-next-steps .section-heading p,
.success-schedule .section-heading p {
  line-height: 1.42 !important;
}

.next-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1220px);
  margin: 0 auto clamp(34px, 5vw, 66px);
  padding: 0;
  list-style: none;
}

.next-step-list li,
.schedule-grid article {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(12, 16, 22, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 42px rgba(12, 16, 22, 0.08);
  text-align: left;
}

.next-step-list > li > span,
.schedule-grid article > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.next-step-list h3,
.schedule-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.02;
  text-align: left;
}

.next-step-list p,
.schedule-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.42 !important;
  text-align: left;
}

.success-system-visual {
  width: min(100%, 860px);
  margin: 0 auto;
  background: transparent;
}

.success-system-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(12, 16, 22, 0.18));
}

.success-location {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: clamp(22px, 4vw, 58px);
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 86px);
  border-top: 1px solid rgba(12, 16, 22, 0.08);
  background: var(--white);
  scroll-margin-top: 84px;
}

.location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 520px;
  text-align: left;
}

.location-copy h2 {
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(44px, 5vw, 76px);
  text-align: left;
}

.location-copy p {
  max-width: 100%;
  margin-bottom: 20px;
  line-height: 1.42 !important;
  text-align: left;
}

.location-address {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
}

.location-copy .button {
  margin-top: 8px;
}

.location-map {
  min-height: clamp(340px, 38vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(12, 16, 22, 0.14);
  border-radius: 8px;
  background: #eef2f4;
  box-shadow: 0 24px 58px rgba(12, 16, 22, 0.12);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.success-schedule {
  border-top: 1px solid rgba(12, 16, 22, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(13, 118, 110, 0.08), transparent 32%),
    #f7f9fb;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.thank-you-footer {
  margin-top: 0;
}

@media (max-width: 1020px) {
  .thank-you-page .brand {
    width: min(31vw, 230px);
  }

  .success-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 128px;
  }

  .success-copy,
  .success-copy h1,
  .success-copy .lead {
    text-align: center;
  }

  .success-copy h1 {
    --headline-swoosh-margin: 16px auto 0;
    margin-right: auto;
    margin-left: auto;
  }

  .success-copy .lead,
  .success-actions,
  .success-confirmation-card {
    margin-right: auto;
    margin-left: auto;
  }

  .success-actions {
    justify-content: center;
  }

  .success-confirmation-card {
    width: min(100%, 680px);
  }

  .next-step-list,
  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .success-location {
    grid-template-columns: 1fr;
  }

  .location-copy {
    max-width: 720px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .location-copy h2,
  .location-copy p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .thank-you-page .site-header {
    padding: 12px 16px;
  }

  .thank-you-page .brand {
    width: min(42vw, 180px);
  }

  .thank-you-page .nav-cta {
    display: none;
  }

  .success-hero {
    padding: 112px 18px 58px;
  }

  .success-copy .hero-kicker {
    margin-bottom: 14px;
  }

  .success-copy h1 {
    --headline-swoosh-width: min(86vw, 280px);
    --headline-swoosh-height: 18px;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.94;
  }

  .success-copy .lead {
    font-size: 17px;
  }

  .success-actions .button {
    width: min(100%, 310px);
  }

  .success-confirmation-card {
    padding: 24px 20px;
  }

  .success-confirmation-card h2 {
    font-size: 38px;
  }

  .success-next-steps,
  .success-schedule {
    padding: 58px 18px;
  }

  .success-next-steps .section-heading h2,
  .success-schedule .section-heading h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .next-step-list,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .success-location {
    padding: 58px 18px;
  }

  .location-map {
    min-height: 320px;
  }
}
