:root {
  --bg-light: #f5f0e5;
  --bg-dark: #061312;
  --bg-accent: #0e3d39;
  --text-on-light: #101612;
  --text-on-dark: #fbf5e8;
  --muted-on-dark: rgba(251, 245, 232, 0.74);
  --muted-on-light: #56645e;
  --gold: #ffb443;
  --gold-hot: #ffd56f;
  --jade: #20c7a5;
  --red: #ff714d;
  --blue: #6ec7ff;
  --cta: #ff8a3d;
  --cta-hot: #ffc14f;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-heavy: "Archivo Black", Impact, sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background: var(--bg-dark);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text-on-dark);
  background: var(--bg-dark);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

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

img,
video,
canvas {
  display: block;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(32, 199, 165, 0.16), transparent 22rem),
    #03100f;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  font-family: var(--font-heavy);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader-brand img {
  width: clamp(92px, 14vw, 150px);
  filter: drop-shadow(0 24px 44px rgba(32, 199, 165, 0.26));
}

.loader-bar {
  width: min(340px, 68vw);
  height: 4px;
  background: rgba(247, 239, 224, 0.14);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--jade), var(--blue), var(--cta-hot));
  transition: width 0.22s ease;
}

.loader-percent {
  color: var(--gold-hot);
  font-family: var(--font-heavy);
  font-size: 0.85rem;
}

.scroll-guide {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.35rem;
  min-width: 170px;
  padding: 0.75rem 0.85rem;
  color: var(--gold-hot);
  background: rgba(3, 4, 5, 0.78);
  border: 1px solid rgba(216, 173, 84, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  font-family: var(--font-heavy);
  pointer-events: none;
}

.scroll-guide span:first-child {
  color: rgba(247, 239, 224, 0.66);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-guide-value {
  font-size: 1.35rem;
  line-height: 1;
}

.scroll-guide small {
  color: rgba(247, 239, 224, 0.56);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.25rem);
  background: linear-gradient(180deg, rgba(3, 18, 17, 0.88), rgba(3, 18, 17, 0));
}

.site-header.is-scrolled {
  background: rgba(4, 28, 26, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 199, 165, 0.18);
}

.brand-mark,
.site-header nav,
.nav-cta,
.cta-button {
  display: flex;
  align-items: center;
}

.brand-mark {
  min-width: 0;
  gap: 0.72rem;
  font-family: var(--font-heavy);
  font-size: 0.94rem;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-mark span {
  white-space: nowrap;
}

.site-header nav {
  gap: clamp(0.7rem, 2.4vw, 1.8rem);
  color: rgba(247, 239, 224, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 79, 0.86), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-header nav a:hover {
  color: var(--gold-hot);
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.cta-button {
  position: relative;
  justify-content: center;
  gap: 0.6rem;
  min-height: 44px;
  border: 1px solid rgba(255, 193, 79, 0.56);
  background: linear-gradient(135deg, var(--cta-hot), var(--cta));
  color: #160b04;
  font-family: var(--font-heavy);
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta::before,
.cta-button::before,
.footer-button::before,
.plan-button::before {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -55%;
  z-index: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg);
}

.nav-cta > *,
.cta-button > *,
.footer-button > *,
.plan-button > * {
  position: relative;
  z-index: 1;
}

.nav-cta {
  min-width: 92px;
  padding: 0.76rem 0.92rem;
}

.nav-cta:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(255, 138, 61, 0.3);
}

.nav-cta:hover::before,
.cta-button:hover::before,
.footer-button:hover::before,
.plan-button:hover::before {
  animation: buttonSheen 0.72s ease forwards;
}

.nav-cta svg,
.cta-button svg {
  width: 18px;
  height: 18px;
}

.hero-standalone {
  position: relative;
  z-index: 10;
  display: grid;
  min-height: 100svh;
  place-items: center start;
  overflow: hidden;
  padding: 8rem clamp(1rem, 6vw, 5.5rem) 5rem;
  color: var(--text-on-light);
  background:
    radial-gradient(circle at 78% 18%, rgba(32, 199, 165, 0.2), transparent 25rem),
    radial-gradient(circle at 18% 82%, rgba(255, 138, 61, 0.16), transparent 22rem),
    linear-gradient(135deg, #fbf6ec 0%, #dcebe3 48%, #b8d0c4 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(22, 19, 15, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 19, 15, 0.18) 1px, transparent 1px);
  background-size: 4.8vw 4.8vw;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-content {
  position: relative;
  width: min(1100px, 100%);
}

.section-label {
  display: block;
  margin: 0 0 1rem;
  color: var(--gold-hot);
  font-family: var(--font-heavy);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-standalone .section-label {
  color: #8e5516;
}

.hero-heading,
.section-heading {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-heading {
  display: grid;
  font-family: var(--font-heavy);
  font-size: clamp(5.7rem, 13vw, 12rem);
  text-transform: uppercase;
}

.hero-heading span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 2px var(--text-on-light);
}

.hero-tagline {
  margin: 1rem 0 0;
  color: #083f3b;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 6.2rem);
  font-style: italic;
  line-height: 0.92;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 1.25rem 0 0;
  color: var(--muted-on-light);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.62;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(22, 19, 15, 0.32);
  color: var(--text-on-light);
  transform: translateX(-50%);
  animation: pulseArrow 1.6s ease-in-out infinite;
}

.canvas-wrap,
#dark-overlay,
#cinematic-polish,
.marquee-wrap,
.mascot-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.canvas-wrap {
  z-index: 1;
  overflow: hidden;
  background: var(--bg-dark);
  clip-path: circle(0% at 50% 50%);
}

#canvas {
  width: 100%;
  height: 100%;
}

#dark-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 44%, rgba(3, 5, 8, 0.34), rgba(3, 5, 8, 0.82) 68%, rgba(2, 3, 5, 0.96) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.42), rgba(3, 6, 10, 0.94));
  opacity: 0;
}

#cinematic-polish {
  --polish-drift: 0px;
  --polish-opacity: 0;
  --polish-shift: -24vw;
  z-index: 6;
  overflow: hidden;
  background:
    linear-gradient(104deg, transparent 0 36%, rgba(255, 213, 111, 0.1) 43%, rgba(74, 213, 220, 0.075) 47%, transparent 57%),
    linear-gradient(180deg, rgba(255, 245, 232, 0.055), transparent 18%, transparent 74%, rgba(2, 13, 16, 0.32));
  mix-blend-mode: screen;
  opacity: var(--polish-opacity);
  transform: translate3d(var(--polish-shift), 0, 0);
  will-change: opacity, transform;
}

#cinematic-polish::before,
#cinematic-polish::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#cinematic-polish::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 76px, rgba(255, 255, 255, 0.032) 77px, transparent 79px),
    repeating-linear-gradient(0deg, transparent 0 88px, rgba(255, 193, 79, 0.028) 89px, transparent 91px);
  mix-blend-mode: soft-light;
  opacity: 0.42;
  transform: translate3d(calc(var(--polish-shift) * -0.35), var(--polish-drift), 0);
}

#cinematic-polish::after {
  background: linear-gradient(118deg, transparent 20%, rgba(255, 193, 79, 0.13) 21%, transparent 24%, transparent 100%);
  opacity: 0.5;
  transform: translate3d(calc(var(--polish-shift) * 0.62), 0, 0);
}

.marquee-wrap {
  z-index: 4;
  display: flex;
  align-items: center;
  opacity: 0;
  overflow: hidden;
}

.lite-mode .marquee-wrap {
  display: none;
}

.marquee-text {
  width: max-content;
  color: rgba(247, 239, 224, 0.095);
  font-family: var(--font-heavy);
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 0.8;
  white-space: nowrap;
}

.mascot-stage {
  z-index: 5;
  opacity: 0;
}

.station-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 84px;
  height: 72px;
  border: 1px solid rgba(255, 213, 106, 0.34);
  color: var(--gold-hot);
  background: rgba(5, 6, 8, 0.34);
}

.station-icon svg {
  width: 32px;
  height: 32px;
}

.station-icon--computer {
  left: 14vw;
  bottom: 24vh;
}

.station-icon--chalk {
  left: 35vw;
  top: 17vh;
  color: var(--jade);
}

.station-icon--screen {
  right: 33vw;
  top: 18vh;
  color: var(--blue);
}

.station-icon--vault {
  right: 12vw;
  bottom: 22vh;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.tristin {
  --x: 19vw;
  --y: 64vh;
  --scale: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 88px;
  height: 170px;
  transform: translate3d(var(--x), var(--y), 0) translate(-50%, -100%) scale(var(--scale));
  transform-origin: 50% 100%;
}

.tristin-shadow {
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 76px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(5px);
  transform: translateX(-50%);
}

.tristin-body {
  position: absolute;
  inset: 0;
}

.head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 52px;
  height: 54px;
  border: 2px solid rgba(247, 239, 224, 0.55);
  border-radius: 44% 44% 48% 48%;
  background: linear-gradient(145deg, #d49a6c, #89563e);
  transform: translateX(-50%);
}

.head::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -9px;
  width: 62px;
  height: 23px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(135deg, var(--gold-hot), #342719);
}

.head::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 7px;
  width: 24px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold-hot);
}

.head span {
  position: absolute;
  left: 18px;
  top: 33px;
  width: 17px;
  height: 7px;
  border-bottom: 2px solid rgba(20, 10, 4, 0.76);
  border-radius: 50%;
}

.torso {
  position: absolute;
  left: 50%;
  top: 52px;
  width: 58px;
  height: 76px;
  border: 2px solid rgba(255, 213, 106, 0.32);
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(145deg, #13191f, #07090c 72%);
  transform: translateX(-50%);
}

.torso::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 10px;
  height: 44px;
  background: linear-gradient(var(--jade), #14776c);
  clip-path: polygon(50% 0, 100% 20%, 68% 100%, 32% 100%, 0 20%);
  transform: translateX(-50%);
}

.arm,
.leg {
  position: absolute;
  border-radius: 999px;
  background: #101820;
  transform-origin: 50% 0;
}

.arm {
  top: 62px;
  width: 14px;
  height: 58px;
  border: 1px solid rgba(247, 239, 224, 0.13);
}

.arm-left {
  left: 10px;
  transform: rotate(12deg);
}

.arm-right {
  right: 10px;
  transform: rotate(-12deg);
}

.leg {
  top: 124px;
  width: 16px;
  height: 50px;
  background: #06080b;
}

.leg-left {
  left: 29px;
}

.leg-right {
  right: 29px;
}

.tristin.is-walking .tristin-body {
  animation: walkBob 0.42s ease-in-out infinite;
}

.tristin.is-walking .arm-left,
.tristin.is-walking .leg-right {
  animation: limbA 0.42s ease-in-out infinite;
}

.tristin.is-walking .arm-right,
.tristin.is-walking .leg-left {
  animation: limbB 0.42s ease-in-out infinite;
}

#scroll-container {
  position: relative;
  z-index: 10;
  height: 900vh;
}

.scroll-section {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  opacity: 0;
  visibility: hidden;
}

.section-inner {
  max-width: 40vw;
}

.align-left {
  padding-left: 5vw;
  padding-right: 55vw;
}

.align-right {
  padding-left: 55vw;
  padding-right: 5vw;
}

.section-heading {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(4rem, 5.2vw, 5.8rem);
  font-weight: 400;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.56);
}

.section-body {
  margin: 1.3rem 0 0;
  color: var(--text-on-dark);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.72;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.78);
}

.section-note {
  width: fit-content;
  max-width: 100%;
  margin: 1rem 0 0;
  color: var(--gold-hot);
  font-family: var(--font-heavy);
  font-size: 0.82rem;
  line-height: 1.45;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.85);
}

.section-stats {
  place-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 4vw, 4rem);
  width: min(1140px, 100%);
}

.stat {
  text-align: center;
}

.stat-number {
  color: var(--gold-hot);
  font-family: var(--font-heavy);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
}

.stat-suffix {
  margin-left: 0.2rem;
  color: var(--jade);
  font-family: var(--font-heavy);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}

.stat-label {
  display: block;
  margin-top: 0.7rem;
  color: rgba(247, 239, 224, 0.74);
  font-family: var(--font-heavy);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-cta .section-inner {
  display: grid;
  justify-items: start;
  row-gap: clamp(0.7rem, 1.2vw, 1rem);
  max-width: 48vw;
}

.section-cta .section-label,
.section-cta .section-heading,
.section-cta .section-body {
  margin-bottom: 0;
}

.cta-button {
  width: fit-content;
  min-width: 220px;
  min-height: 56px;
  margin-top: 1.8rem;
  padding: 1rem 1.25rem;
  transform: translateY(0);
}

.section-cta .cta-button {
  margin-top: clamp(0.45rem, 0.8vw, 0.8rem);
  transform: translateY(0) rotate(0deg);
  transform-origin: center;
}

.section-cta .cta-button:hover {
  transform: translateY(-3px) rotate(0deg);
}

.section-footer {
  align-items: end;
  padding: 0;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2.2rem) 0 0;
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at 80% 10%, rgba(32, 199, 165, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(4, 18, 17, 0.96), rgba(11, 54, 50, 0.82), rgba(4, 18, 17, 0.92));
  border-top: 1px solid rgba(255, 180, 67, 0.34);
  box-shadow: 0 -38px 90px rgba(0, 0, 0, 0.42);
}

.footer-topline,
.footer-main,
.footer-bottom {
  display: grid;
  width: min(1240px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin-left: auto;
  margin-right: auto;
}

.footer-topline {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(247, 239, 224, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--text-on-dark);
  font-family: var(--font-heavy);
  font-size: 0.94rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 14px 24px rgba(32, 199, 165, 0.28));
}

.footer-topline p {
  justify-self: end;
  margin: 0;
  color: var(--gold-hot);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 1;
}

.footer-main {
  grid-template-columns: minmax(0, 1.3fr) auto minmax(220px, 0.55fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: end;
  padding-top: clamp(1.5rem, 4vw, 2.6rem);
  padding-bottom: clamp(1.35rem, 3vw, 2rem);
}

.footer-statement {
  max-width: 620px;
}

.footer-statement h2 {
  margin: 0.55rem 0 0;
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.9;
}

.footer-statement p {
  max-width: 560px;
  margin: 1rem 0 0;
  color: rgba(247, 239, 224, 0.74);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  font-weight: 800;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  min-width: 150px;
  font-family: var(--font-heavy);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(247, 239, 224, 0.68);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-hot);
  transform: translateX(4px);
}

.footer-action {
  display: grid;
  justify-items: start;
  gap: 0.72rem;
}

.footer-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  min-width: 170px;
  padding: 0.9rem 1.15rem;
  color: #160b04;
  font-family: var(--font-heavy);
  background: linear-gradient(135deg, var(--cta-hot), var(--cta));
  border: 1px solid rgba(255, 193, 79, 0.56);
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(255, 138, 61, 0.28);
}

.footer-button svg {
  width: 18px;
  height: 18px;
}

.footer-action small,
.footer-bottom {
  color: rgba(247, 239, 224, 0.55);
  font-size: 0.74rem;
  font-weight: 800;
}

.footer-bottom {
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(247, 239, 224, 0.1);
}

.footer-bottom span:last-child {
  justify-self: end;
  color: rgba(255, 213, 106, 0.7);
}

.section-disclaimer {
  margin: 1.35rem 0 0;
  color: rgba(247, 239, 224, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.section-disclaimer a {
  color: var(--gold-hot);
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.pricing-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.pricing-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(32, 199, 165, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(255, 138, 61, 0.18), transparent 24rem),
    rgba(3, 16, 15, 0.76);
  backdrop-filter: blur(20px) saturate(0.86);
}

.pricing-panel {
  position: relative;
  width: min(1260px, 100%);
  max-height: calc(100svh - 1.5rem);
  overflow: auto;
  padding: clamp(1rem, 2.4vw, 2rem);
  color: var(--text-on-light);
  background:
    radial-gradient(circle at 82% 10%, rgba(32, 199, 165, 0.12), transparent 24rem),
    linear-gradient(145deg, rgba(251, 246, 236, 0.99), rgba(230, 238, 229, 0.97)),
    rgba(245, 240, 229, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.58);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.32s ease;
}

.pricing-modal.is-open .pricing-panel {
  transform: translateY(0) scale(1);
}

.pricing-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(14, 61, 57, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--text-on-light);
  cursor: pointer;
}

.pricing-close svg {
  width: 20px;
  height: 20px;
}

.pricing-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: fit-content;
  margin: 0 auto clamp(0.8rem, 1.6vw, 1.1rem);
  padding: 0.42rem 0.85rem 0.42rem 0.48rem;
  color: var(--text-on-light);
  font-family: var(--font-heavy);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(14, 61, 57, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(6, 19, 18, 0.08);
}

.pricing-kicker img {
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.pricing-heading-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.62rem;
  margin-bottom: clamp(0.85rem, 2.2vw, 1.25rem);
  text-align: center;
}

.pricing-heading-row h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.35rem, 4.6vw, 3.65rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.pricing-heading-row .section-label {
  color: #9a5b13;
}

.pricing-heading-row p,
.plan-savings {
  margin: 0;
  max-width: 620px;
  color: rgba(16, 22, 18, 0.66);
  font-weight: 800;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 385px;
  padding: clamp(1.15rem, 1.9vw, 1.65rem);
  color: var(--text-on-light);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(14, 61, 57, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 19, 18, 0.1);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(32, 199, 165, 0.12), transparent 42%),
    linear-gradient(116deg, transparent 20%, rgba(255, 255, 255, 0.44) 31%, transparent 43%);
  background-position: center, 145% 0;
  background-size: auto, 230% 100%;
  opacity: 0.58;
  transition: background-position 0.7s ease, opacity 0.22s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 193, 79, 0.38);
  box-shadow: 0 24px 58px rgba(6, 19, 18, 0.16);
  transform: translateY(-3px);
}

.pricing-card:hover::before {
  background-position: center, -45% 0;
  opacity: 0.76;
}

.pricing-card.featured {
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at 78% 16%, rgba(110, 199, 255, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 180, 67, 0.14), rgba(32, 199, 165, 0.12)),
    linear-gradient(145deg, rgba(5, 31, 29, 0.98), rgba(15, 61, 57, 0.98));
  border-color: rgba(255, 180, 67, 0.54);
}

.plan-label,
.plan-ribbon {
  width: fit-content;
  color: #9a5b13;
  font-family: var(--font-heavy);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card.featured .plan-label {
  color: var(--gold-hot);
}

.plan-ribbon {
  justify-self: end;
  padding: 0.42rem 0.58rem;
  color: #160b04;
  background: linear-gradient(135deg, var(--cta-hot), var(--gold));
  border: 1px solid rgba(255, 193, 79, 0.5);
  border-radius: 3px;
}

.pricing-card h3 {
  margin: 0.75rem 0 0.82rem;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.plan-price {
  display: grid;
  gap: 0.32rem;
  margin-bottom: 0.78rem;
}

.plan-price span {
  color: #c46900;
  font-family: var(--font-heavy);
  font-size: clamp(3rem, 5.4vw, 4.45rem);
  line-height: 0.9;
}

.pricing-card.featured .plan-price span {
  color: var(--gold-hot);
}

.plan-price small {
  color: rgba(16, 22, 18, 0.6);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.pricing-card.featured .plan-price small,
.pricing-card.featured .plan-savings {
  color: rgba(247, 239, 224, 0.72);
}

.pricing-card ul {
  display: grid;
  gap: 0.58rem;
  margin: 0.85rem 0 1rem;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 0.62rem;
  align-items: center;
  color: rgba(16, 22, 18, 0.72);
  font-weight: 800;
}

.pricing-card.featured li {
  color: rgba(247, 239, 224, 0.84);
}

.pricing-card li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--jade);
}

.pricing-disclaimer {
  max-width: 980px;
  margin: 1rem auto 0;
  color: rgba(16, 22, 18, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.55;
}

.pricing-disclaimer a {
  color: #9a5b13;
}

.plan-button {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0.95rem 1rem;
  margin-top: auto;
  color: #160b04;
  font-family: var(--font-heavy);
  background: linear-gradient(135deg, rgba(255, 193, 79, 0.96), rgba(255, 138, 61, 0.92));
  border: 1px solid rgba(255, 138, 61, 0.52);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(255, 138, 61, 0.2);
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 138, 61, 0.3);
}

.plan-button.primary {
  color: #160b04;
  background: linear-gradient(135deg, var(--cta-hot), var(--cta));
  border-color: rgba(255, 193, 79, 0.6);
}

body.pricing-open {
  overflow: hidden;
}

#frame-source {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@keyframes pulseArrow {
  50% {
    transform: translate(-50%, 8px);
  }
}

@keyframes buttonSheen {
  0% {
    left: -55%;
    opacity: 0;
  }

  24% {
    opacity: 0.78;
  }

  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes walkBob {
  50% {
    transform: translateY(-4px);
  }
}

@keyframes limbA {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes limbB {
  50% {
    transform: rotate(-20deg);
  }
}

@media (max-width: 920px) {
  .site-header nav {
    display: none;
  }

  #scroll-container {
    height: 640vh;
  }

  .hero-heading {
    font-size: clamp(4.8rem, 18vw, 8rem);
  }

  .section-inner,
  .section-cta .section-inner {
    max-width: min(640px, 100%);
  }

  .align-left,
  .align-right {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .scroll-section {
    align-items: end;
    min-height: 92vh;
    padding-top: 5rem;
    padding-bottom: 7.4rem;
  }

  .section-heading {
    font-size: clamp(3.1rem, 12vw, 5.6rem);
  }

  .section-body {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .section-footer {
    padding: 0;
  }

  .footer-topline,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-topline p,
  .footer-bottom span:last-child {
    justify-self: start;
  }

  .footer-main {
    gap: 1.5rem;
    align-items: start;
  }

  .footer-statement h2 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .pricing-modal {
    padding: 0.75rem;
  }

  .pricing-panel {
    max-height: calc(100svh - 1.5rem);
  }

  .pricing-heading-row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-heading-row {
    align-items: start;
  }

  .pricing-card {
    min-height: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .station-icon {
    width: 62px;
    height: 54px;
  }

  .station-icon--computer {
    left: 7vw;
    bottom: 32vh;
  }

  .station-icon--chalk {
    left: 31vw;
    top: 14vh;
  }

  .station-icon--screen {
    right: 23vw;
    top: 15vh;
  }

  .station-icon--vault {
    right: 7vw;
    bottom: 31vh;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.75rem 0.85rem;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .brand-mark span {
    max-width: 118px;
    white-space: normal;
    font-size: 0.76rem;
    line-height: 1.05;
  }

  .nav-cta {
    min-width: 76px;
    min-height: 40px;
    padding: 0.62rem 0.72rem;
  }

  .hero-standalone {
    padding: 6.6rem 1rem 5rem;
    place-items: end start;
  }

  .hero-heading span:nth-child(2) {
    -webkit-text-stroke-width: 1px;
  }

  .hero-tagline {
    font-size: clamp(2rem, 12vw, 4rem);
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .marquee-text {
    font-size: 5.1rem;
  }

  .tristin {
    width: 68px;
    height: 132px;
  }

  .head {
    width: 40px;
    height: 42px;
  }

  .head::before {
    width: 48px;
    height: 18px;
  }

  .head::after {
    right: -16px;
    top: 5px;
  }

  .head span {
    left: 14px;
    top: 26px;
  }

  .torso {
    top: 41px;
    width: 44px;
    height: 58px;
  }

  .arm {
    top: 50px;
    height: 44px;
  }

  .leg {
    top: 96px;
    width: 13px;
    height: 40px;
  }

  .leg-left {
    left: 22px;
  }

  .leg-right {
    right: 22px;
  }

  .cta-button {
    width: 100%;
  }

  .site-footer {
    padding-top: 1rem;
  }

  .footer-topline,
  .footer-main,
  .footer-bottom {
    width: calc(100% - 2rem);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-topline {
    gap: 0.85rem;
  }

  .footer-brand span {
    font-size: 0.82rem;
  }

  .footer-topline p {
    font-size: clamp(1.45rem, 8vw, 2.4rem);
  }

  .footer-button {
    width: 100%;
  }

  .pricing-kicker {
    padding-right: 3rem;
  }

  .pricing-heading-row h2 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .plan-price small {
    max-width: 14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cinematic-polish {
    display: none;
  }

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