:root {
  --navy: #07172b;
  --navy-deep: #090a11;
  --coral: #fa6d15;
  --coral-dark: #d62e05;
  --teal: #70d5cc;
  --teal-dark: #397e84;
  --gold: #fdd11c;
  --cream: #fcf6e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --mist: #edf7f5;
  --sand: #ede3d5;
  --ink-muted: #596676;
  --line: rgba(7, 23, 43, 0.12);
  --shadow-sm: 0 14px 36px rgba(7, 23, 43, 0.08);
  --shadow-lg: 0 30px 90px rgba(7, 23, 43, 0.16);
  --radius-sm: 0.875rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --section: min(1240px, calc(100% - 3rem));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 4%, rgba(112, 213, 204, 0.24), transparent 31rem),
    radial-gradient(circle at 78% 6%, rgba(250, 109, 21, 0.18), transparent 30rem),
    var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: radial-gradient(rgba(7, 23, 43, 0.13) 0.5px, transparent 0.5px);
  background-size: 7px 7px;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

h1, h2, h3, strong, .button, .eyebrow, nav a {
  font-family: "Fredoka", sans-serif;
}

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

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 999px;
  transform: translateY(-180%);
}

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

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

.section { width: var(--section); margin-inline: auto; }

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light { color: #a5e1d6; }

.site-header {
  position: relative;
  top: auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 2rem));
  min-height: 78px;
  margin: 0.75rem auto 0;
  padding: 0.55rem 0.8rem 0.55rem 1rem;
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand { display: block; width: 160px; flex: 0 0 auto; }
.brand img { width: 100%; height: 62px; object-fit: contain; object-position: left center; }

nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
nav a { font-size: 0.86rem; font-weight: 800; text-decoration: none; }
nav a:not(.nav-cta):hover { color: var(--coral-dark); }

.nav-cta {
  padding: 0.78rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 690px;
  padding: 4rem 0 6rem;
}

.hero-copy { position: relative; z-index: 2; }

.hero h1 {
  max-width: 650px;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 6.4vw, 6.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero h1::after { color: var(--coral); content: ""; }

.hero-word {
  display: block;
  width: fit-content;
  min-width: 4.5ch;
  overflow: visible;
  transform-origin: left center;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 1.8rem;
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-deep); background: var(--coral); box-shadow: 0 14px 30px rgba(255, 93, 67, 0.27); }
.button-primary:hover { background: #ff735d; box-shadow: 0 17px 36px rgba(255, 93, 67, 0.32); }
.button-light { color: var(--navy-deep); background: var(--white); box-shadow: var(--shadow-sm); }

.hero-proof {
  display: flex;
  gap: 1.2rem;
  margin: 1.5rem 0 0;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li { display: flex; align-items: center; gap: 0.4rem; }
.hero-proof li::before { color: var(--teal-dark); content: "✓"; font-weight: 900; }

.hero-visual { position: relative; min-height: 565px; display: grid; place-items: center; }

.hero-halo { position: absolute; border: 1px solid rgba(11, 41, 72, 0.1); border-radius: 50%; }
.halo-one { width: 560px; height: 560px; }
.halo-two { width: 470px; height: 470px; border-style: dashed; animation: orbit 32s linear infinite; }

.device-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 530px);
  overflow: hidden;
  border: 1px solid rgba(11, 41, 72, 0.14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: width 420ms ease, border-radius 420ms ease, border-width 420ms ease, background 300ms ease, color 300ms ease;
}

.device-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 42px;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(11, 41, 72, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.device-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(11, 41, 72, 0.18); }
.device-bar b { margin-left: auto; color: var(--ink-muted); font-size: 0.7rem; }

.device-canvas { position: relative; height: 440px; overflow: hidden; transition: height 420ms ease, background 300ms ease; }
.device-website .device-canvas { background: linear-gradient(145deg, #fffdf9, #fff1df); }
.device-tablet .device-canvas { height: 452px; background: linear-gradient(145deg, #d9fff6, #a9e7df 52%, #fff1df); }
.device-phone .device-canvas { height: 472px; background: linear-gradient(160deg, #fff8ed 0 34%, #ff9d4d 34% 67%, #cdfbf5 67%); }
.device-tablet { width: min(84%, 440px); border: 12px solid var(--navy); border-radius: 2.7rem; }
.device-phone { width: min(58%, 292px); border: 8px solid var(--navy); border-radius: 3.1rem; }
.device-tablet .device-bar { position: relative; height: 40px; border-bottom: 0; border-radius: 2rem 2rem 0 0; background: rgba(255, 255, 255, 0.94); }
.device-tablet .device-bar span { display: none; }
.device-tablet .device-bar::before { position: absolute; inset: 14px auto auto 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 3px rgba(7, 23, 43, 0.08); content: ""; transform: translateX(-50%); }
.device-tablet .device-bar b { display: none; }
.device-phone .device-bar { position: relative; height: 44px; border-bottom: 0; background: rgba(255, 255, 255, 0.94); }
.device-phone .device-bar span { display: none; }
.device-phone .device-bar::before { position: absolute; inset: 11px auto auto 50%; width: 64px; height: 19px; border-radius: 999px; background: var(--navy); content: ""; transform: translateX(-50%); }
.device-phone .device-bar b { position: relative; z-index: 2; }

.demo-copy { position: absolute; top: 2rem; left: 2rem; z-index: 2; display: grid; max-width: 180px; gap: 0.35rem; }
.demo-copy small { color: currentColor; opacity: 0.66; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.demo-copy strong { font-size: 1.35rem; line-height: 1.05; }
.hero-character { position: absolute; right: -0.5rem; bottom: -0.5rem; width: 76%; height: 94%; object-fit: contain; object-position: bottom right; filter: drop-shadow(0 18px 20px rgba(7, 30, 53, 0.18)); }
.device-tablet .hero-character { right: calc(2% - 15px); bottom: 1.25rem; width: 84%; height: 84%; object-position: bottom center; }
.device-phone .hero-character { right: -8%; width: 116%; height: 88%; object-position: bottom center; }
.device-tablet .device-canvas::after { position: absolute; z-index: 4; left: 50%; bottom: 0.55rem; width: 72px; height: 5px; border-radius: 999px; background: rgba(7, 23, 43, 0.48); content: ""; transform: translateX(-50%); }
.device-tablet .demo-copy { top: 1.5rem; left: 1.5rem; max-width: 150px; }
.device-phone .demo-copy { top: 1.2rem; left: 1.1rem; max-width: 115px; }
.device-phone .demo-copy strong { font-size: 1.05rem; }
.surface-label { position: absolute; right: 1rem; top: 1rem; z-index: 3; padding: 0.45rem 0.65rem; border: 1px solid rgba(11, 41, 72, 0.1); border-radius: 999px; color: var(--navy); background: rgba(255, 255, 255, 0.85); font-size: 0.67rem; font-weight: 700; }

.device-switcher { position: absolute; z-index: 5; right: 0.6rem; top: 50%; display: grid; gap: 0.45rem; padding: 0.55rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.88); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); transform: translateY(-50%); }
.device-switcher button { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 0; border-radius: 50%; color: var(--ink-muted); background: transparent; cursor: pointer; }
.device-switcher button.is-active { color: var(--navy); background: var(--gold); box-shadow: 0 0 0 3px rgba(253, 209, 28, 0.18); }
.device-icon { position: relative; display: block; border: 2px solid currentColor; }
.icon-website { width: 17px; height: 12px; border-radius: 2px; }
.icon-website::after { position: absolute; left: 3px; right: 3px; bottom: -5px; height: 2px; border-radius: 2px; background: currentColor; content: ""; }
.icon-tablet { width: 14px; height: 18px; border-radius: 3px; }
.icon-phone { width: 10px; height: 18px; border-radius: 3px; }

.hero-visual-note { position: absolute; z-index: 4; left: 0; bottom: 2.3rem; display: grid; gap: 0.1rem; margin: 0; padding: 0.75rem 0.9rem; border: 1px solid rgba(11, 41, 72, 0.1); border-radius: 0.9rem; background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-sm); transform: rotate(-2deg); }
.hero-visual-note strong { font-size: 0.85rem; }
.hero-visual-note span { color: var(--ink-muted); font-size: 0.68rem; }

.examples { padding: 5.5rem 0; border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.48); overflow: hidden; }
.examples-heading { display: grid; grid-template-columns: 1fr 0.75fr; column-gap: 3rem; align-items: end; margin-bottom: 2rem; }
.examples-heading .eyebrow { grid-column: 1 / -1; }
.examples-heading h2, .reuse-row-heading h3, .section-heading h2, .problem h2, .precheck h2, .faq h2, .assurance-card h2, .final-card h2 { margin-bottom: 0; font-size: clamp(2.5rem, 4vw, 4.4rem); line-height: 1; letter-spacing: -0.045em; }
.examples-heading > p:last-child, .reuse-row-heading > p, .section-heading > p:last-child { max-width: 520px; margin: 0; color: var(--ink-muted); line-height: 1.65; }

.marquee-shell { overflow-x: auto; overflow-y: hidden; padding: 0.7rem 0 2rem; mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); scrollbar-width: none; cursor: grab; touch-action: pan-x pan-y; overscroll-behavior-x: contain; }
.marquee-shell::-webkit-scrollbar { display: none; }
.marquee-shell.is-dragging { cursor: grabbing; user-select: none; }
.marquee-shell img { -webkit-user-drag: none; user-select: none; }
.marquee-row { display: flex; width: max-content; gap: 1rem; }
.carousel-controls { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 0.55rem; }
.carousel-controls > span { margin-right: auto; color: var(--ink-muted); font-size: 0.8rem; }
.carousel-controls button, .trio-playback button { min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 0.9rem; color: var(--navy); background: var(--paper); font: 700 0.75rem Manrope, sans-serif; cursor: pointer; }
.carousel-controls button:disabled, .trio-playback button:disabled { cursor: default; opacity: 0.65; }
.marquee-shell:focus-visible { outline: 2px solid var(--teal); outline-offset: -3px; mask-image: none; }
.trio-playback { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin: 0.8rem 1rem 0; font-size: 0.7rem; color: var(--ink-muted); }
.trio-playback button { flex: 0 0 auto; }
.reactions-visual figure { display: grid; justify-items: center; margin: 0; width: 27%; }
.reactions-visual figure img { width: 100%; height: 105px; object-fit: contain; }
.reactions-visual figcaption { font: 700 0.65rem Manrope, sans-serif; }
.delivery-visual { flex-wrap: wrap; padding: 0.75rem; }
.options-return { padding-bottom: 5rem; }
.site-footer > a:not(.brand) { justify-self: center; }

.action-card {
  width: 230px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(7, 30, 53, 0.06);
}

.action-media { position: relative; display: grid; place-items: center; height: 245px; overflow: hidden; }
.action-media img { width: 90%; height: 95%; object-fit: contain; filter: drop-shadow(0 12px 15px rgba(7, 30, 53, 0.14)); }
.action-media { background: var(--paper); }
.action-meta { display: flex; align-items: center; justify-content: flex-start; padding: 0.95rem 1rem 1rem; }
.action-meta strong { font-size: 0.95rem; }

.reuse-row-heading { padding-top: 2.5rem; margin-bottom: 2rem; }
.reuse-row-heading > div { max-width: 860px; }
.reuse-row-heading h3 { font-size: clamp(2.2rem, 3.6vw, 3.8rem); }

.scenario-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: 390px 430px; gap: 1.25rem; }
.scenario-card { display: flex; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); flex-direction: column; }
.scenario-website { grid-column: span 8; }
.scenario-welcome { grid-column: span 4; grid-row: span 2; }
.scenario-infographic, .scenario-ad { grid-column: span 4; }
.scenario-card > footer { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 68px; padding: 1rem 1.2rem; border-top: 1px solid var(--line); background: var(--paper); }
.scenario-card > footer strong { font-size: 1rem; }
.scenario-card > footer span { max-width: 68%; color: var(--ink-muted); font-size: 0.72rem; line-height: 1.35; text-align: right; }
.scenario-character { position: absolute; z-index: 4; object-fit: contain; filter: drop-shadow(0 15px 18px rgba(7, 23, 43, 0.2)); }

.scenario-browser { position: relative; min-height: 0; flex: 1; overflow: hidden; background: linear-gradient(145deg, var(--paper) 0 64%, rgba(112, 213, 204, 0.34) 64% 100%); }
.scenario-chrome { display: flex; align-items: center; gap: 0.35rem; height: 34px; padding: 0 0.8rem; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.76); }
.scenario-chrome i { width: 7px; height: 7px; border-radius: 50%; background: var(--sand); }
.scenario-chrome i:first-child { background: var(--coral); }
.scenario-chrome i:nth-child(2) { background: var(--gold); }
.scenario-chrome i:nth-child(3) { background: var(--teal); }
.scenario-chrome span { margin-left: 0.5rem; color: var(--ink-muted); font-size: 0.56rem; }
.scenario-site-nav { position: relative; z-index: 2; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; color: var(--navy); font-size: 0.6rem; }
.scenario-site-nav b { margin-right: auto; letter-spacing: 0.08em; }
.scenario-site-nav em { padding: 0.45rem 0.65rem; border-radius: 999px; color: var(--paper); background: var(--navy); font-style: normal; font-weight: 800; }
.scenario-copy { position: relative; z-index: 3; display: grid; align-content: start; width: 58%; padding: 1.25rem 0 0 2rem; }
.scenario-copy small { margin-bottom: 0.6rem; color: var(--teal-dark); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; }
.scenario-copy strong { max-width: 290px; font-size: clamp(1.8rem, 2.7vw, 2.5rem); line-height: 0.94; letter-spacing: -0.025em; }
.scenario-copy > span { width: fit-content; margin-top: 0.8rem; padding: 0.58rem 0.78rem; border-radius: 999px; color: var(--navy); background: var(--gold); font-size: 0.66rem; font-weight: 800; }
.scenario-character-guide { right: 1.2rem; bottom: -1.45rem; width: 39%; height: 268px; }
.scenario-orbit { position: absolute; z-index: 1; right: -3rem; bottom: -7rem; border: 1px solid rgba(57, 126, 132, 0.22); border-radius: 50%; }
.scenario-orbit.orbit-one { width: 320px; height: 320px; }
.scenario-orbit.orbit-two { right: 0.5rem; bottom: -3.5rem; width: 250px; height: 250px; }

.welcome-stage { position: relative; display: grid; min-height: 0; flex: 1; place-items: center; overflow: hidden; color: var(--cream); background: radial-gradient(circle at 28% 18%, rgba(253, 209, 28, 0.22), transparent 10rem), linear-gradient(155deg, #ddf5f1, #fff5e8 58%, #ffd8bf); }
.welcome-stage::before { position: absolute; width: 320px; height: 620px; border: 1px solid rgba(7, 23, 43, 0.08); border-radius: 48%; content: ""; transform: rotate(18deg); }
.welcome-phone { position: relative; width: min(82%, 330px); height: calc(100% - 3rem); overflow: hidden; border: 12px solid var(--navy); border-radius: 2.8rem; color: var(--cream); background: radial-gradient(circle at 70% 58%, rgba(112, 213, 204, 0.25), transparent 12rem), linear-gradient(180deg, #132c49, var(--navy)); box-shadow: 0 22px 48px rgba(7, 23, 43, 0.22); }
.welcome-status { position: relative; z-index: 7; display: flex; align-items: center; justify-content: space-between; height: 38px; padding: 0 1.05rem; font-size: 0.58rem; font-weight: 800; }
.welcome-status i { position: absolute; top: 7px; left: 50%; width: 74px; height: 20px; border-radius: 999px; background: #020812; transform: translateX(-50%); }
.welcome-status b { font-size: 0.42rem; letter-spacing: 0.08em; }
.welcome-content { position: relative; z-index: 3; width: 100%; padding: 2rem 1.4rem 0; }
.welcome-content > small { color: var(--teal); font-size: 0.56rem; font-weight: 800; letter-spacing: 0.12em; }
.welcome-content > strong { display: block; margin-top: 0.65rem; color: var(--cream); font-size: clamp(1.8rem, 2.5vw, 2.45rem); line-height: 0.98; }
.welcome-content > p { margin: 0.65rem 0 0; color: rgba(252, 246, 233, 0.66); font-size: 0.72rem; }
.scenario-character-wave { right: 0; bottom: 5.1rem; width: 93%; height: 405px; }
.welcome-toast { position: absolute; z-index: 5; left: 1rem; right: 1rem; bottom: 4.4rem; display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 0.9rem; color: var(--navy); background: rgba(255, 253, 248, 0.94); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24); }
.welcome-toast > i { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--teal); font-style: normal; font-weight: 900; }
.welcome-toast span { display: grid; }
.welcome-toast small { color: var(--teal-dark); font-size: 0.5rem; font-weight: 800; letter-spacing: 0.1em; }
.welcome-toast strong { font-size: 0.72rem; }
.welcome-app-rail { position: absolute; z-index: 7; inset: auto 0 0; display: flex; align-items: center; justify-content: space-around; height: 52px; border-top: 1px solid rgba(255, 255, 255, 0.1); background: rgba(5, 17, 33, 0.88); }
.welcome-app-rail > * { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; color: rgba(252, 246, 233, 0.48); font-size: 0.8rem; font-style: normal; }
.welcome-app-rail b { color: var(--navy); background: var(--gold); }

.infographic-stage { position: relative; min-height: 0; flex: 1; overflow: hidden; background: linear-gradient(145deg, var(--cream), #daf3ee); }
.infographic-stage::before { position: absolute; inset: 1rem; border: 1px solid rgba(7, 23, 43, 0.12); border-radius: 1.1rem; content: ""; }
.infographic-stage header { position: relative; z-index: 3; padding: 1.6rem 0 0 1.6rem; }
.infographic-stage header small { color: var(--coral-dark); font-size: 0.58rem; font-weight: 900; letter-spacing: 0.12em; }
.infographic-stage header strong { display: block; max-width: 220px; margin-top: 0.45rem; font-size: clamp(1.5rem, 2vw, 1.9rem); line-height: 0.94; }
.info-metric { position: absolute; z-index: 3; top: 7.7rem; left: 1.6rem; display: grid; }
.info-metric b { color: var(--coral-dark); font-family: "Fredoka", sans-serif; font-size: clamp(3rem, 4.4vw, 3.8rem); line-height: 0.8; }
.info-metric span { margin-top: 0.55rem; color: var(--ink-muted); font-size: 0.6rem; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.info-bars { position: absolute; z-index: 5; right: 1.35rem; bottom: 1.55rem; left: 1.6rem; display: grid; gap: 0.45rem; width: 53%; }
.info-bars > span { display: grid; grid-template-columns: 56px 1fr 18px; align-items: center; gap: 0.4rem; }
.info-bars small, .info-bars b { font-size: 0.47rem; font-weight: 900; }
.info-bars i { position: relative; height: 7px; overflow: hidden; border-radius: 999px; background: rgba(7, 23, 43, 0.1); }
.info-bars i::after { position: absolute; inset: 0 auto 0 0; width: var(--bar); border-radius: inherit; background: var(--teal-dark); content: ""; }
.info-bars > span:nth-child(2) i::after { background: var(--coral); }
.info-bars > span:nth-child(3) i::after { background: var(--gold); }
.info-source { position: absolute; z-index: 5; right: 1.35rem; bottom: 1.3rem; width: 26%; margin: 0; color: var(--ink-muted); font-size: 0.43rem; text-align: right; }
.scenario-character-think { right: -0.65rem; bottom: 3.6rem; width: 46%; height: 210px; }
.info-ring { position: absolute; right: -5rem; top: 3.5rem; width: 230px; height: 230px; border: 30px solid rgba(250, 109, 21, 0.1); border-radius: 50%; }

.ad-stage { position: relative; min-height: 0; flex: 1; overflow: hidden; color: var(--navy); background: linear-gradient(135deg, var(--gold) 0 48%, var(--coral) 48% 100%); }
.ad-stage::before { position: absolute; inset: 1.15rem; border: 2px solid rgba(7, 23, 43, 0.76); border-radius: 1.2rem; content: ""; }
.ad-copy { position: relative; z-index: 3; width: 60%; padding: 2.4rem 0 0 2rem; }
.ad-copy small { font-size: 0.58rem; font-weight: 900; letter-spacing: 0.13em; }
.ad-copy strong { display: block; max-width: 260px; margin-top: 0.5rem; font-size: clamp(1.85rem, 2.8vw, 2.7rem); line-height: 0.88; letter-spacing: -0.035em; }
.ad-copy p { margin: 0.9rem 0; font-size: 0.72rem; font-weight: 700; line-height: 1.5; }
.ad-copy > span { display: inline-flex; padding: 0.6rem 0.75rem; border-radius: 999px; color: var(--cream); background: var(--navy); font-size: 0.58rem; font-weight: 900; }
.scenario-character-jump { right: -0.8rem; bottom: -1.65rem; width: 49%; height: 285px; }
.ad-burst { position: absolute; z-index: 2; width: 44px; height: 10px; border-radius: 999px; background: var(--gold); transform: rotate(-24deg); }
.ad-burst.burst-one { right: 2.4rem; top: 3rem; }
.ad-burst.burst-two { right: 1.2rem; top: 5rem; width: 28px; transform: rotate(18deg); }
.ad-burst.burst-three { right: 6.5rem; bottom: 2rem; width: 36px; transform: rotate(34deg); }
.scenario-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 1.25rem; padding: 0; list-style: none; }
.scenario-benefits li { display: flex; align-items: center; justify-content: center; gap: 0.55rem; min-height: 52px; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.62); font-size: 0.76rem; font-weight: 800; text-align: center; }
.scenario-benefits li::before { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--navy); background: var(--teal); content: "✓"; }

.problem { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; padding-block: 8rem; }
.problem-copy > p:not(.eyebrow) { max-width: 480px; margin: 1.5rem 0; color: var(--ink-muted); font-size: 1.05rem; line-height: 1.7; }
.problem blockquote { margin: 2rem 0 0; padding-left: 1.1rem; border-left: 4px solid var(--coral); font-family: "Fredoka", sans-serif; font-size: 1.2rem; font-weight: 600; line-height: 1.35; }

.static-slop-board { position: relative; overflow: hidden; padding: 1rem 1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.72); box-shadow: var(--shadow-sm); }
.slop-toolbar { display: flex; align-items: center; gap: 0.38rem; min-height: 34px; padding: 0 0.35rem 0.8rem; border-bottom: 1px solid var(--line); }
.slop-toolbar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(7, 23, 43, 0.18); }
.slop-toolbar b { margin-left: 0.35rem; color: rgba(7, 23, 43, 0.36); font-size: 0.62rem; font-weight: 700; }
.slop-pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; padding: 1rem 0 1.1rem; }
.slop-pages article { display: grid; align-content: start; min-height: 205px; padding: 1rem; border: 1px solid rgba(7, 23, 43, 0.08); border-radius: 1rem; background: linear-gradient(145deg, #fffdf8 42%, #eaf7f4 42% 64%, #fff0e3 64%); opacity: 0.72; }
.slop-pages article:nth-child(2) { opacity: 0.48; }
.slop-pages article:nth-child(3) { opacity: 0.28; }
.slop-pages small { color: var(--teal-dark); font-size: 0.52rem; font-weight: 800; letter-spacing: 0.1em; }
.slop-pages strong { max-width: 120px; margin: 0.65rem 0 1rem; color: var(--navy); font-family: "Fredoka", sans-serif; font-size: 1rem; line-height: 1.05; }
.slop-pages i { width: 86%; height: 5px; margin-bottom: 0.45rem; border-radius: 999px; background: rgba(7, 23, 43, 0.12); }
.slop-pages i:nth-of-type(2) { width: 62%; }
.slop-pages b { align-self: end; justify-self: start; margin-top: 1rem; padding: 0.4rem 0.6rem; border-radius: 999px; color: var(--navy); background: var(--gold); font-size: 0.52rem; }
.attention-meter { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.7rem; padding: 0.75rem 0.85rem; border-radius: 0.85rem; color: var(--ink-muted); background: rgba(7, 23, 43, 0.045); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; }
.attention-meter > i { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(7, 23, 43, 0.1); }
.attention-meter > i b { display: block; width: 22%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--coral)); }
.attention-meter > strong { color: var(--coral); font-size: 0.66rem; }
.slop-verdict { position: absolute; right: 1.6rem; bottom: 4.25rem; display: flex; align-items: center; gap: 0.65rem; max-width: 230px; padding: 0.8rem 0.9rem; border-radius: 1rem; color: var(--white); background: var(--navy); box-shadow: 0 14px 28px rgba(7, 23, 43, 0.2); transform: rotate(-1.5deg); }
.slop-verdict > span { color: var(--gold); font-size: 1.2rem; }
.slop-verdict strong, .slop-verdict small { display: block; }
.slop-verdict strong { font-family: "Fredoka", sans-serif; font-size: 0.95rem; font-weight: 600; }
.slop-verdict small { margin-top: 0.12rem; color: rgba(255, 255, 255, 0.65); font-size: 0.58rem; }

.moments, .outputs { color: var(--white); background: var(--navy-deep); }
.moments-inner, .outputs-inner { padding-block: 7rem; }
.section-heading { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 3rem; }
.section-heading h2 { max-width: 760px; margin-bottom: 1.2rem; }
.moments .section-heading h2, .outputs .section-heading h2 { color: var(--white); }
.moments .section-heading > p:last-child, .outputs .section-heading > p:last-child { color: rgba(255, 255, 255, 0.66); }
.moment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1rem; }
.moments-intro { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(2.5rem, 7vw, 7rem); margin-bottom: 3rem; }
.moments-heading h2 { max-width: 720px; margin-bottom: 1.2rem; color: var(--white); font-size: clamp(2.5rem, 4vw, 4.4rem); font-weight: 600; line-height: 1; letter-spacing: -0.025em; }
.moments-heading > p:last-child { max-width: 560px; margin: 0; color: rgba(255, 255, 255, 0.66); line-height: 1.65; }
.moment-source { position: relative; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(150px, 1.15fr); align-items: center; min-height: 280px; overflow: visible; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.055); }
.moment-source img { align-self: end; width: 100%; height: 270px; object-fit: contain; filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.25)); }
.moment-source > div { padding: 1.4rem 1.4rem 1.4rem 0; }
.moment-source small { display: block; margin-bottom: 0.65rem; color: #bcebe4; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.moment-source strong { display: block; color: var(--white); font-family: "Fredoka", sans-serif; font-size: 1.35rem; line-height: 1.1; }
.moment-source p { margin: 0.7rem 0 0; color: rgba(255, 255, 255, 0.66); font-size: 0.78rem; line-height: 1.5; }
.moment-source > span { position: absolute; z-index: 2; right: -1.25rem; bottom: -1.25rem; display: grid; place-items: center; width: 52px; height: 52px; border: 5px solid var(--navy); border-radius: 50%; color: var(--navy); background: var(--gold); font-family: "Fredoka", sans-serif; font-size: 1.45rem; font-weight: 700; }
.moment-card { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.06); }
.moment-media { position: relative; height: 250px; background: radial-gradient(circle at 50% 45%, rgba(66, 185, 165, 0.18), transparent 62%); }
.moment-media img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.24)); }
.moment-card:nth-child(2) .moment-media { background: radial-gradient(circle at 50% 45%, rgba(255, 93, 67, 0.22), transparent 62%); }
.moment-card:nth-child(3) .moment-media { background: radial-gradient(circle at 50% 45%, rgba(255, 181, 27, 0.2), transparent 62%); }
.moment-card:nth-child(4) .moment-media { background: radial-gradient(circle at 50% 45%, rgba(108, 163, 210, 0.2), transparent 62%); }
.moment-meta { padding: 1rem 1.1rem 1.2rem; }
.moment-meta small { color: #a5e1d6; font-size: 0.63rem; font-weight: 800; text-transform: uppercase; }
.moment-meta strong { display: block; margin-top: 0.35rem; color: var(--white); }

.no-prompt { display: grid; grid-template-columns: auto 1fr auto auto 1fr auto auto 1fr auto; align-items: center; gap: 0.7rem; margin: -0.5rem 0 1.25rem; padding: 1rem 1.1rem; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1rem; color: rgba(255, 255, 255, 0.78); background: rgba(255, 255, 255, 0.04); font-size: 0.75rem; }
.no-prompt > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--navy-deep); background: var(--teal); font-family: "Fredoka", sans-serif; font-weight: 700; }
.no-prompt i { height: 1px; background: rgba(255, 255, 255, 0.18); }
.no-prompt b { justify-self: end; padding: 0.45rem 0.65rem; border-radius: 999px; color: var(--navy-deep); background: var(--gold); font-size: 0.63rem; text-transform: uppercase; }

.how { padding-block: 7rem; border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.5); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.step-grid > li { position: relative; padding: 1.1rem 1.1rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: 0 10px 26px rgba(7, 30, 53, 0.05); }
.step-grid > li > span { position: absolute; z-index: 2; top: 1.7rem; right: 1.7rem; color: rgba(7, 23, 43, 0.25); font-family: "Fredoka", sans-serif; font-size: 0.8rem; font-weight: 700; }
.step-grid h3 { margin: 1rem 0 0.55rem; font-size: 1.4rem; }
.step-grid p { margin: 0; color: var(--ink-muted); font-size: 0.88rem; line-height: 1.6; }
.step-visual { display: grid; place-items: center; height: 190px; border-radius: 1.1rem; background: #f5eee4; }
.upload-visual { align-content: center; gap: 0.8rem; border: 1px dashed rgba(11, 41, 72, 0.2); }
.upload-visual i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: var(--white); background: var(--coral); font-size: 1.8rem; font-style: normal; }
.upload-visual b { font-size: 0.7rem; }
.reactions-visual { display: flex; align-items: center; justify-content: center; gap: 0.7rem; }
.reactions-visual i { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); font-style: normal; }
.reactions-visual i:first-child { outline: 3px solid var(--teal); }
.delivery-visual { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.delivery-visual i { padding: 0.6rem; border-radius: 0.55rem; color: var(--white); background: var(--navy); font-size: 0.6rem; font-style: normal; font-weight: 700; }

.precheck { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; padding-block: 8rem; }
.precheck-copy > p:not(.eyebrow, .upload-status) { margin: 1.4rem 0 1.5rem; color: var(--ink-muted); line-height: 1.7; }
#character-upload { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.upload-control { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.8rem; width: 100%; padding: 0.8rem 1rem; border: 1px dashed rgba(11, 41, 72, 0.28); border-radius: 1rem; background: rgba(255, 255, 255, 0.62); cursor: pointer; }
.upload-control:hover { border-color: var(--teal-dark); }
.upload-control .upload-label { font-family: "Fredoka", sans-serif; font-weight: 600; }
.upload-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--navy); background: var(--gold); font-family: "Manrope", sans-serif; font-size: 1rem; font-weight: 800; line-height: 1; box-shadow: 0 7px 16px rgba(253, 209, 28, 0.2); }
.upload-control small, .upload-status { color: var(--ink-muted); font-size: 0.72rem; }
.upload-status { min-height: 1.2em; margin: 0.65rem 0 1.2rem; }
.upload-status.is-error { color: #a02b1e; }
.input-guidance { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.input-guidance strong { width: 100%; margin-bottom: 0.2rem; font-size: 0.72rem; }
.input-guidance span { padding: 0.4rem 0.55rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-muted); background: rgba(255, 255, 255, 0.58); font-size: 0.63rem; }

.precheck-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.62); box-shadow: var(--shadow-sm); }
.preview-cell { position: relative; display: grid; place-items: center; height: 250px; overflow: hidden; border: 1px solid var(--line); border-radius: 1.15rem; }
.preview-cell > span { position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2; padding: 0.32rem 0.5rem; border-radius: 999px; color: var(--navy); background: rgba(255, 255, 255, 0.84); font-size: 0.58rem; font-weight: 800; }
.preview-cell > div { display: grid; justify-items: center; gap: 0.65rem; color: rgba(7, 23, 43, 0.4); font-family: "Fredoka", sans-serif; font-size: 0.8rem; font-weight: 600; }
.preview-cell > div .upload-icon { width: 42px; height: 42px; }
.preview-dark > div { color: rgba(255, 255, 255, 0.74); }
.preview-cell img { display: none; width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 12px 15px rgba(7, 30, 53, 0.18)); }
.precheck-board.has-image .preview-cell img { display: block; }
.precheck-board.has-image [data-preview-empty] { display: none; }
.preview-light { background: #fffaf2; }
.preview-dark { background: var(--navy-deep); }
.preview-color { background: var(--coral); }
.preview-checker { background-color: white; background-image: linear-gradient(45deg, #e6e6e6 25%, transparent 25%), linear-gradient(-45deg, #e6e6e6 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e6e6e6 75%), linear-gradient(-45deg, transparent 75%, #e6e6e6 75%); background-size: 20px 20px; background-position: 0 0, 0 10px, 10px -10px, -10px 0; }
.preview-ready { display: none; grid-column: 1 / -1; align-items: center; grid-template-columns: auto 1fr; gap: 0.3rem 1rem; padding: 1rem; border: 1px solid rgba(66, 185, 165, 0.35); border-radius: 1rem; background: rgba(66, 185, 165, 0.12); }
.precheck-board.has-image .preview-ready { display: grid; }
.preview-ready small { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--navy); background: var(--teal); font-weight: 800; text-transform: uppercase; }
.preview-ready strong { font-size: 1rem; }
.preview-ready > div { grid-column: 2; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.preview-ready button { padding: 0.38rem 0.58rem; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: var(--white); cursor: pointer; font-size: 0.62rem; font-weight: 700; }
.preview-ready button.is-active { color: var(--navy-deep); background: var(--gold); }
.preview-ready p { grid-column: 2; margin: 0.4rem 0 0; color: var(--ink-muted); font-size: 0.68rem; }

.output-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; }
.output-card { min-height: 220px; padding: 1.2rem; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1.2rem; background: rgba(255, 255, 255, 0.06); }
.output-card span { display: inline-block; margin-bottom: 3rem; padding: 0.35rem 0.5rem; border-radius: 999px; color: var(--navy-deep); background: var(--teal); font-size: 0.58rem; font-weight: 800; text-transform: uppercase; }
.output-card h3 { margin-bottom: 0.6rem; color: var(--white); font-size: 1.05rem; }
.output-card p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 0.75rem; line-height: 1.55; }
.output-card:first-child { border-color: rgba(255, 181, 27, 0.5); background: rgba(255, 181, 27, 0.08); }
.output-card:first-child span { background: var(--gold); }

.assurance { padding-block: 7rem 3rem; }
.assurance-card { display: grid; grid-template-columns: 1fr 0.7fr; gap: 4rem; padding: clamp(2rem, 5vw, 4.5rem); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, var(--teal-dark), #16665f); box-shadow: var(--shadow-lg); }
.assurance-card > div > p:last-child { max-width: 650px; margin: 1.3rem 0 0; color: rgba(255, 255, 255, 0.78); line-height: 1.65; }
.assurance-card ul { align-self: center; display: grid; gap: 0.9rem; margin: 0; padding: 0; list-style: none; }
.assurance-card li { display: flex; gap: 0.6rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(255, 255, 255, 0.16); font-weight: 600; }
.assurance-card li::before { color: var(--gold); content: "✓"; }

.faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); padding-block: 6rem 8rem; }
.faq-list { display: grid; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.25rem 3rem 1.25rem 0; cursor: pointer; font-family: "Fredoka", sans-serif; font-size: 1.05rem; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 0; content: "+"; color: var(--coral-dark); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 680px; margin: 0 0 1.4rem; color: var(--ink-muted); font-size: 0.88rem; line-height: 1.7; }

.final-cta { padding-bottom: 5rem; }
.final-card { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 3rem; overflow: hidden; padding: clamp(2rem, 5vw, 4.6rem); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, var(--coral-dark), var(--coral)); box-shadow: var(--shadow-lg); }
.final-card > div { position: relative; z-index: 2; max-width: 720px; }
.final-card p:last-child { max-width: 580px; margin: 1.2rem 0 0; color: rgba(255, 255, 255, 0.83); line-height: 1.6; }
.final-card .button { position: relative; z-index: 2; flex: 0 0 auto; }
.final-action-stack { position: relative; z-index: 2; display: grid; justify-items: center; gap: 0.8rem; width: min(32%, 320px); flex: 0 0 auto; }
.final-brand-mark { width: min(100%, 260px); height: auto; aspect-ratio: 3 / 2; object-fit: contain; filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.24)); }
.final-orbit { position: absolute; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; }
.orbit-a { width: 380px; height: 380px; right: -160px; top: -220px; }
.orbit-b { width: 520px; height: 520px; right: -230px; top: -290px; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; width: var(--section); margin: 0 auto; padding: 1.7rem 0 2.2rem; border-top: 1px solid var(--line); color: var(--ink-muted); font-size: 0.72rem; }
.footer-brand { width: 105px; }
.footer-brand img { height: 48px; }
.site-footer p { margin: 0; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.footer-links a { color: inherit; }
.upload-consent { display: flex; align-items: flex-start; gap: .65rem; margin: 0 0 .8rem; color: var(--ink-muted); font-size: .74rem; line-height: 1.45; }
.upload-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--ink); }
.upload-consent a { color: var(--ink); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* V2: bright animation-studio direction */
.site-header {
  position: relative;
  top: auto;
  width: min(1320px, calc(100% - 1.5rem));
  min-height: 104px;
  margin-top: 0;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 0.72rem;
  color: var(--navy);
  text-decoration: none;
}

.brand .brand-logo {
  width: 200px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: drop-shadow(0 9px 12px rgba(7, 23, 43, 0.12));
}

.brand-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--navy), 0 7px 14px rgba(7, 23, 43, 0.14);
  font-family: "Fredoka", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  transform: rotate(-3deg);
}

.brand-name {
  display: grid;
  font-family: "Fredoka", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.brand-name b { color: var(--coral-dark); font-weight: 600; }

nav a { font-family: "Manrope", sans-serif; font-weight: 700; }
.nav-cta { color: var(--navy); background: var(--gold); box-shadow: 0 8px 18px rgba(253, 209, 28, 0.22); }
.nav-cta:hover { color: var(--navy); background: #ffe15c; transform: translateY(-1px); }

.hero { min-height: 720px; padding: 4.5rem 0 6.5rem; }
.hero h1 { font-weight: 600; letter-spacing: -0.03em; }
.hero h1 em { display: block; color: var(--coral-dark); font-style: normal; }
.hero-lede { font-weight: 500; }
.button { font-family: "Manrope", sans-serif; font-weight: 800; }
.button-primary { color: var(--navy); background: var(--gold); box-shadow: 0 14px 32px rgba(253, 209, 28, 0.28); }
.button-primary:hover { background: #ffe15c; box-shadow: 0 18px 38px rgba(253, 209, 28, 0.34); }
.hero-proof li::before { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--teal); font-size: 0.65rem; }

.hero-visual::before {
  position: absolute;
  inset: 4% -8% 0;
  content: "";
  border-radius: 48% 52% 45% 55%;
  background:
    radial-gradient(circle at 24% 28%, rgba(112, 213, 204, 0.42), transparent 40%),
    radial-gradient(circle at 75% 30%, rgba(250, 109, 21, 0.3), transparent 43%),
    rgba(255, 255, 255, 0.28);
  filter: blur(2px);
  transform: rotate(-4deg);
}
.hero-halo { border-color: rgba(7, 23, 43, 0.14); }
.halo-two { border-color: rgba(250, 109, 21, 0.32); }
.device-shell { border-color: rgba(7, 23, 43, 0.16); box-shadow: 0 32px 90px rgba(7, 23, 43, 0.18), 0 0 0 8px rgba(255, 255, 255, 0.36); }
.device-website { border-radius: 2rem; }
.device-website .device-canvas { background: linear-gradient(145deg, var(--paper), var(--cream)); }
.device-tablet .device-canvas { background: var(--paper) url("assets/backgrounds/tablet-flow-light-v2.webp") center / cover no-repeat; }
.device-phone .device-canvas { background: linear-gradient(160deg, var(--paper) 0 34%, #ff9d4d 34% 67%, #cdfbf5 67%); }
.device-switcher { border-color: rgba(7, 23, 43, 0.14); background: rgba(255, 253, 248, 0.92); }
.hero-visual-note { left: -1.2rem; bottom: 1.5rem; border: 1px solid rgba(255,255,255,.12); color: var(--cream); background: var(--navy); box-shadow: 0 18px 36px rgba(7,23,43,.2); }
.hero-visual-note span { color: rgba(252, 246, 233, 0.7); }

.examples { padding: 6.5rem 0; background: rgba(255, 255, 255, 0.58); }
.eyebrow { color: var(--teal-dark); font-family: "Manrope", sans-serif; font-weight: 800; }
.eyebrow::before { display: inline-block; width: 7px; height: 7px; margin-right: 0.55rem; border-radius: 50%; background: var(--gold); content: ""; vertical-align: 0.06em; box-shadow: 0 0 0 4px rgba(253, 209, 28, 0.14); }
.eyebrow.light { color: #bcebe4; }
.examples-heading h2, .reuse-row-heading h3, .section-heading h2, .problem h2, .precheck h2, .faq h2, .assurance-card h2, .final-card h2 { font-weight: 600; letter-spacing: -0.025em; }
.action-card { border-color: rgba(7, 23, 43, 0.1); background: var(--paper); box-shadow: 0 16px 34px rgba(7, 23, 43, 0.07); }
.action-media { background: var(--paper); }

.problem { padding-block: 9rem; }
.problem blockquote { border-left-color: var(--gold); }
.static-slop-board { border-color: rgba(7, 23, 43, 0.1); background: rgba(252, 246, 233, 0.72); }

.moments, .outputs { color: var(--cream); background: var(--navy); }
.moments { position: relative; overflow: hidden; }
.moments::before { position: absolute; inset: 0; pointer-events: none; content: ""; background: radial-gradient(circle at 18% 24%, rgba(112,213,204,.12), transparent 30rem), radial-gradient(circle at 82% 76%, rgba(250,109,21,.12), transparent 28rem); }
.moments-inner, .outputs-inner { position: relative; padding-block: 7.5rem; }
.moment-card { border-color: rgba(255,255,255,.14); border-radius: 1.5rem; background: rgba(255,255,255,.055); }
.moment-media { background: radial-gradient(circle at 50% 45%, rgba(112, 213, 204, 0.18), transparent 62%); }
.moment-card:nth-child(2) .moment-media { background: radial-gradient(circle at 50% 45%, rgba(250, 109, 21, 0.25), transparent 62%); }
.moment-card:nth-child(3) .moment-media { background: radial-gradient(circle at 50% 45%, rgba(253, 209, 28, 0.22), transparent 62%); }
.no-prompt > span { background: var(--gold); }

.trio-section {
  position: relative;
  overflow: hidden;
  padding-block: 8rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 18%, rgba(112, 213, 204, 0.2), transparent 25rem),
    radial-gradient(circle at 88% 76%, rgba(250, 109, 21, 0.14), transparent 28rem),
    rgba(255, 255, 255, 0.68);
}
.trio-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(rgba(7, 23, 43, 0.14) 0.5px, transparent 0.5px);
  background-size: 8px 8px;
}
.trio-inner { position: relative; }
.trio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3rem;
}
.trio-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.trio-intro > p {
  max-width: 590px;
  margin: 0 0 1.4rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.trio-proof { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.trio-proof li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(7, 23, 43, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(7, 23, 43, 0.05);
}
.trio-proof strong { margin-right: 0.28rem; color: var(--coral-dark); font-size: 0.9rem; }
.trio-comparison {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.42fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(7, 23, 43, 0.11);
  border-radius: 2.2rem;
  background: rgba(252, 246, 233, 0.78);
  box-shadow: var(--shadow-lg);
}
.trio-source-card,
.trio-result-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 43, 0.11);
  border-radius: 1.55rem;
  background: var(--paper);
}
.trio-source-card > header,
.trio-result-card > header {
  display: flex;
  min-height: 72px;
  padding: 1rem 1.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}
.trio-source-card header div,
.trio-result-card header div { display: grid; gap: 0.16rem; }
.trio-source-card header small,
.trio-result-card header small {
  color: var(--teal-dark);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trio-source-card header strong,
.trio-result-card header strong { font-size: 1rem; font-weight: 600; }
.trio-source-card header > span,
.trio-live {
  flex: 0 0 auto;
  padding: 0.38rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-muted);
  background: var(--white);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.trio-live { color: var(--navy); background: rgba(112, 213, 204, 0.2); }
.trio-live i { display: inline-block; width: 6px; height: 6px; margin-right: 0.3rem; border-radius: 50%; background: var(--teal-dark); box-shadow: 0 0 0 3px rgba(112, 213, 204, 0.25); }
.trio-source-stage {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background-color: #f4f4f2;
  background-image:
    linear-gradient(45deg, #e3e6e5 25%, transparent 25%),
    linear-gradient(-45deg, #e3e6e5 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e3e6e5 75%),
    linear-gradient(-45deg, transparent 75%, #e3e6e5 75%);
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
  background-size: 18px 18px;
}
.trio-source-stage img { width: min(100%, 390px); height: auto; filter: drop-shadow(0 20px 22px rgba(7, 23, 43, 0.14)); }
.trio-source-card > p { min-height: 68px; margin: 0; padding: 1rem 1.1rem; color: var(--ink-muted); font-size: 0.75rem; line-height: 1.55; }
.trio-product-window { margin: 1rem 1rem 0; overflow: hidden; border: 1px solid rgba(7, 23, 43, 0.12); border-radius: 1.35rem; background: var(--white); box-shadow: 0 18px 45px rgba(7, 23, 43, 0.1); }
.trio-window-bar { display: grid; grid-template-columns: 1fr auto 1fr; min-height: 42px; padding: 0 0.85rem; align-items: center; color: var(--ink-muted); background: #f4f6f6; font-size: 0.57rem; }
.trio-window-bar > span { display: flex; gap: 0.3rem; }
.trio-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.trio-window-bar i:nth-child(2) { background: var(--gold); }
.trio-window-bar i:nth-child(3) { background: var(--teal); }
.trio-window-bar b { font-weight: 700; }
.trio-window-bar em { justify-self: end; font-style: normal; }
.trio-product-canvas {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper) 0 48%, #c9f3ed 48% 68%, #ff8d41 68%);
}
.trio-product-canvas::before {
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(7, 23, 43, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 46px rgba(255,255,255,.18), 0 0 0 92px rgba(7,23,43,.04);
}
.trio-product-copy { position: absolute; top: clamp(1.8rem, 5vw, 3.5rem); left: clamp(1.2rem, 4vw, 3rem); z-index: 2; display: grid; max-width: 235px; }
.trio-product-copy small { color: var(--teal-dark); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.12em; }
.trio-product-copy strong { margin-top: 0.55rem; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; line-height: 0.9; letter-spacing: -0.035em; }
.trio-product-copy span { width: fit-content; margin-top: 1rem; padding: 0.45rem 0.65rem; border-radius: 999px; color: var(--navy); background: var(--gold); font-size: 0.68rem; font-weight: 900; }
.trio-product-canvas > img { position: absolute; right: -2%; bottom: -12%; z-index: 1; width: min(64%, 470px); height: auto; filter: drop-shadow(0 24px 24px rgba(7, 23, 43, 0.18)); }
.trio-spark { position: absolute; z-index: 3; width: 20px; height: 7px; border-radius: 999px; background: var(--gold); transform: rotate(-35deg); }
.spark-one { top: 17%; right: 8%; }
.spark-two { top: 23%; right: 4%; transform: rotate(18deg) scale(0.72); }
.trio-reactions { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 1rem; }
.trio-reactions button { min-height: 38px; padding: 0.5rem 0.75rem; border: 1px solid rgba(7, 23, 43, 0.13); border-radius: 999px; color: var(--navy); background: var(--white); cursor: pointer; font-size: 0.68rem; font-weight: 800; transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease; }
.trio-reactions button:hover { transform: translateY(-2px); border-color: var(--teal-dark); }
.trio-reactions button.is-active { color: var(--white); border-color: var(--navy); background: var(--navy); }

.how { padding-block: 8rem; background: rgba(255,255,255,.58); }
.step-grid > li { border-color: rgba(7,23,43,.1); border-radius: 1.5rem; background: var(--paper); }
.step-visual { background: var(--cream); }
.upload-visual i { color: var(--navy); background: var(--gold); }
.reactions-visual i:first-child { outline-color: var(--teal); }
.delivery-visual i { background: var(--navy); }

.precheck { padding-block: 9rem; }
.upload-control { border-color: rgba(7,23,43,.24); background: rgba(255,255,255,.7); }
.upload-control:hover { border-color: var(--coral); }
.precheck-board { border-color: rgba(7,23,43,.1); background: rgba(252,246,233,.68); }
.preview-light { background: var(--paper); }
.preview-dark { background: var(--navy); }
.preview-color { background: var(--coral); }
.preview-ready { border-color: rgba(112,213,204,.5); background: rgba(112,213,204,.16); }
.preview-ready small { color: var(--navy); background: var(--gold); }

.outputs { position: relative; overflow: hidden; }
.outputs::after { position: absolute; right: -9rem; bottom: -13rem; width: 32rem; height: 32rem; border: 1px solid rgba(253,209,28,.2); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(250,109,21,.035), 0 0 0 140px rgba(112,213,204,.025); }
.output-card:first-child { border-color: rgba(253, 209, 28, 0.55); background: rgba(253, 209, 28, 0.08); }
.output-card span { color: var(--navy); background: var(--teal); }
.output-card:first-child span { background: var(--gold); }

.assurance-card { color: var(--navy); background: linear-gradient(135deg, var(--gold), #ffe77a 58%, #d9f7f2); box-shadow: 0 28px 70px rgba(7,23,43,.14); }
.assurance-card .eyebrow { color: var(--navy); }
.assurance-card .eyebrow::before { background: var(--coral); box-shadow: 0 0 0 4px rgba(250,109,21,.14); }
.assurance-card > div > p:last-child { color: rgba(7,23,43,.72); }
.assurance-card li { border-bottom-color: rgba(7,23,43,.14); }
.assurance-card li::before { color: var(--coral-dark); }

.faq-list summary::after { color: var(--coral-dark); }
.final-card { color: var(--cream); background: radial-gradient(circle at 80% 20%, #183856, transparent 32rem), var(--navy); }
.final-card p:last-child { color: rgba(252,246,233,.74); }
.button-light { color: var(--navy); background: var(--gold); box-shadow: 0 14px 30px rgba(253,209,28,.2); }
.final-orbit { border-color: rgba(253,209,28,.22); }

.footer-brand { width: auto; }
.footer-brand .brand-logo { width: 138px; }
.site-footer { color: var(--ink-muted); }

.button-dark { color: var(--cream); background: var(--navy); box-shadow: 0 12px 28px rgba(7, 23, 43, 0.18); }
.button-dark:hover { background: #12314f; }
.beta-access { display: grid; grid-template-columns: 1fr auto; gap: 0.7rem; margin: 0 0 1.25rem; padding: 0.85rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(255,255,255,.66); }
.beta-access label { min-width: 0; }
.beta-access label > span { display: block; margin: 0 0 0.45rem; color: var(--ink-muted); font-size: 0.68rem; font-weight: 800; }
.beta-access input { width: 100%; min-height: 46px; padding: 0.7rem 0.85rem; border: 1px solid rgba(7,23,43,.2); border-radius: 0.75rem; color: var(--navy); background: var(--white); text-transform: uppercase; outline: none; }
.beta-access input:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(112,213,204,.22); }
.beta-access .button { align-self: end; min-height: 46px; padding: 0.72rem 1rem; border: 0; cursor: pointer; }
.beta-access p { grid-column: 1 / -1; margin: 0; color: var(--ink-muted); font-size: 0.67rem; line-height: 1.45; }
.beta-access.is-unlocked { border-color: rgba(112,213,204,.55); background: rgba(112,213,204,.14); }
.beta-access.is-unlocked input, .beta-access.is-unlocked button { display: none; }
.beta-access.is-unlocked label > span { margin: 0; color: var(--teal-dark); }
.beta-access.is-error p { color: #a02b1e; }
.upload-step[hidden] { display: none; }
.preview-ready > .approval-copy { display: block; }
.preview-ready > .approval-copy p { margin: 0.25rem 0 0; }
.preview-ready > .approval-actions { display: flex; gap: 0.5rem; }
.preview-ready .approval-actions button { min-height: 38px; padding-inline: 0.8rem; }
.preview-ready .approval-actions .approval-primary { border-color: var(--navy); color: var(--cream); background: var(--navy); }
.preview-ready.is-approved { border-color: rgba(112,213,204,.7); background: rgba(112,213,204,.17); }
.preview-ready.is-approved > .approval-copy, .preview-ready.is-approved > .approval-actions { display: none; }
.preview-ready > .generation-controls { grid-column: 2; display: grid; gap: 0.8rem; width: 100%; }
.preview-ready > .generation-controls[hidden] { display: none; }
.generation-heading { display: grid; gap: 0.2rem; }
.generation-heading span { color: var(--ink-muted); font-size: 0.67rem; }
.preview-ready .action-picker { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.preview-ready .generation-button { width: fit-content; min-height: 46px; padding: 0.75rem 1rem; border: 0; border-radius: 999px; font-size: 0.78rem; }
.preview-ready .generation-button span { margin-left: 0.3rem; font-family: inherit; }
.preview-ready > .generation-status { grid-column: 2; display: block; width: 100%; padding: 0.85rem; border-radius: 0.8rem; color: var(--navy); background: rgba(255,255,255,.72); font-size: 0.72rem; line-height: 1.55; }
.preview-ready > .generation-status[hidden] { display: none; }
.generation-status a { font-weight: 800; }
.precheck-board.is-busy .preview-cell img { opacity: 0.36; }
.precheck-board.is-busy::after { grid-column: 1 / -1; content: "Finding the character and rebuilding soft edges…"; padding: 0.8rem; border-radius: 0.8rem; color: var(--navy); background: var(--gold); font-size: 0.72rem; font-weight: 800; text-align: center; }

.pricing { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem,7vw,7rem); align-items: start; padding-block: 8rem 4rem; }
.pricing-heading h2 { margin-bottom: 0; font-size: clamp(2.5rem,4vw,4.4rem); line-height: 1; letter-spacing: -.035em; }
.pricing-heading > p:last-child { max-width: 580px; margin: 1.4rem 0 0; color: var(--ink-muted); line-height: 1.7; }
.pricing-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.price-card { position: relative; min-height: 430px; padding: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); }
.price-card > span { display: inline-flex; padding: .38rem .55rem; border-radius: 999px; color: var(--navy); background: var(--teal); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.price-card h3 { margin: 2.6rem 0 .2rem; font-size: 1.65rem; }
.price-card > strong { display: block; font-size: 3rem; line-height: 1; }
.price-card > p { min-height: 76px; margin: 1rem 0 1.5rem; color: var(--ink-muted); font-size: .82rem; line-height: 1.6; }
.price-card ul { display: grid; gap: .75rem; margin: 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: flex; gap: .55rem; color: var(--ink-muted); font-size: .75rem; }
.price-card li::before { color: var(--teal-dark); content: "✓"; font-weight: 900; }
.price-card-featured { color: var(--cream); border-color: rgba(253,209,28,.35); background: radial-gradient(circle at 80% 0,rgba(112,213,204,.25),transparent 14rem),var(--navy); box-shadow: var(--shadow-lg); }
.price-card-featured > span { background: var(--gold); }
.price-card-featured > p, .price-card-featured li { color: rgba(252,246,233,.72); }
.price-card-featured ul { border-color: rgba(252,246,233,.16); }
.price-card-featured li::before { color: var(--gold); }

.delivery-dialog { width: min(calc(100% - 1.2rem),520px); padding: 0; border: 1px solid rgba(7,23,43,.14); border-radius: var(--radius-lg); color: var(--navy); background: var(--paper); box-shadow: 0 36px 120px rgba(7,23,43,.35); }
.delivery-dialog::backdrop { background: rgba(7,23,43,.66); backdrop-filter: blur(8px); }
.delivery-dialog form { position: relative; padding: clamp(1.5rem,6vw,3rem); }
.delivery-dialog h2 { margin: 0 0 .8rem; font-size: clamp(2rem,8vw,3rem); line-height: .98; }
.delivery-dialog form > p:not(.eyebrow,.dialog-error) { color: var(--ink-muted); line-height: 1.65; }
.delivery-dialog label { display: grid; gap: .5rem; margin: 1.5rem 0 0; font-size: .75rem; font-weight: 800; }
.delivery-dialog input { min-height: 52px; padding: .8rem 1rem; border: 1px solid rgba(7,23,43,.2); border-radius: .85rem; color: var(--navy); background: var(--white); outline: none; }
.delivery-dialog input:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(112,213,204,.22); }
.delivery-dialog .button { width: 100%; justify-content: center; min-height: 52px; margin-top: .8rem; border: 0; cursor: pointer; }
.delivery-dialog form > small { display: block; margin-top: 1rem; color: var(--ink-muted); font-size: .62rem; line-height: 1.5; }
.dialog-close { position: absolute; top: 1rem; right: 1rem; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: var(--white); cursor: pointer; font-size: 1.3rem; }
.dialog-error { min-height: 1.2em; margin: .55rem 0 0; color: #a02b1e; font-size: .72rem; }

@keyframes marquee { to { transform: translateX(calc(-50% - 0.5rem)); } }
@keyframes orbit { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 650px; }
  .hero h1 { font-size: clamp(3.5rem, 6.3vw, 5rem); }
  .hero-halo { transform: scale(0.85); }
  .hero-visual-note { left: -1rem; }
  .problem, .precheck { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .problem-copy, .precheck-copy { max-width: 700px; }
  .moment-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-intro { grid-template-columns: 1fr; }
  .moment-source { max-width: 660px; }
  .output-grid { grid-template-columns: repeat(3, 1fr); }
  .trio-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .trio-comparison { grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr); }
  .trio-source-stage, .trio-product-canvas { min-height: 390px; }
  .trio-product-canvas > img { width: 68%; }
}

@media (max-width: 820px) {
  :root { --section: min(100% - 2rem, 680px); }
  .site-header { min-height: 86px; }
  .brand { width: auto; }
  .brand .brand-logo { width: 126px; }
  nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 0.65rem 0.85rem; font-size: 0.72rem; }
  .hero { grid-template-columns: 1fr; gap: 1.8rem; min-height: auto; padding: 3rem 0 5rem; }
  .hero-copy { text-align: center; }
  .hero-word { margin-inline: auto; transform-origin: center; }
  .hero h1, .hero-lede { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .device-shell { width: min(100%, 520px); }
  .hero-visual-note { left: max(0px, calc(50% - 280px)); bottom: 0; }
  .examples-heading, .reuse-row-heading, .assurance-card, .faq { grid-template-columns: 1fr; gap: 1.2rem; }
  .scenario-grid { grid-template-columns: 1fr; grid-template-rows: none; max-width: 680px; }
  .scenario-website, .scenario-welcome, .scenario-infographic, .scenario-ad { grid-column: auto; grid-row: auto; }
  .scenario-browser, .infographic-stage, .ad-stage { min-height: 390px; }
  .welcome-stage { min-height: 700px; }
  .scenario-character-wave { right: 5%; bottom: 6.8rem; width: 90%; height: 330px; }
  .scenario-benefits { grid-template-columns: 1fr; max-width: 680px; }
  .problem { padding-block: 6rem; }
  .problem-copy { text-align: center; }
  .problem-copy > p:not(.eyebrow), .problem blockquote { margin-inline: auto; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid > li { display: grid; grid-template-columns: 200px 1fr; gap: 0 1.2rem; }
  .step-visual { grid-row: span 2; }
  .output-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { max-width: 680px; }
  .faq { padding-block: 5rem 7rem; }
  .final-card { align-items: flex-start; flex-direction: column; }
  .final-action-stack { width: min(100%, 320px); justify-items: start; }
  .trio-section { padding-block: 6rem; }
  .trio-comparison { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .trio-source-stage { min-height: 380px; }
  .trio-product-canvas { min-height: 470px; }
  .trio-product-canvas > img { right: -1%; width: min(68%, 450px); }
}

@media (max-width: 560px) {
  :root { --section: calc(100% - 1.2rem); }
  .site-header { width: calc(100% - 0.8rem); min-height: 82px; margin-top: 0; padding-inline: 0.25rem; }
  .brand { width: auto; gap: 0.55rem; }
  .brand .brand-logo { width: 116px; }
  .brand-badge { width: 38px; height: 38px; font-size: 0.76rem; }
  .brand-name { font-size: 0.83rem; }
  .nav-cta { max-width: 150px; text-align: center; line-height: 1.1; }
  .hero { padding-top: 2rem; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 4.4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-proof { gap: 0.65rem; font-size: 0.66rem; }
  .hero-visual { min-height: 440px; }
  .halo-one { width: 420px; height: 420px; }
  .halo-two { width: 350px; height: 350px; }
  .device-canvas { height: 355px; }
  .hero-character { width: 82%; }
  .demo-copy { top: 1.3rem; left: 1.2rem; max-width: 140px; }
  .demo-copy strong { font-size: 1.05rem; }
  .device-switcher { right: -0.2rem; }
  .device-tablet { width: min(86%, 390px); }
  .device-phone { width: min(72%, 260px); }
  .device-tablet .device-canvas { height: 390px; }
  .device-phone .device-canvas { height: 410px; }
  .hero-visual-note { left: 0.6rem; bottom: -0.2rem; }
  .trio-section { padding-block: 4.5rem; }
  .trio-heading { margin-bottom: 2rem; }
  .trio-heading h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .trio-proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trio-proof li { justify-content: center; text-align: center; }
  .trio-proof li:last-child { grid-column: 1 / -1; }
  .trio-comparison { padding: 0.55rem; border-radius: 1.5rem; }
  .trio-source-card, .trio-result-card { border-radius: 1.1rem; }
  .trio-source-stage { min-height: 310px; }
  .trio-source-stage img { width: min(100%, 300px); }
  .trio-product-window { margin: 0.65rem 0.65rem 0; }
  .trio-product-canvas { min-height: 430px; background: linear-gradient(152deg, var(--paper) 0 43%, #c9f3ed 43% 62%, #ff8d41 62%); }
  .trio-product-copy { top: 1.5rem; left: 1.2rem; max-width: 180px; }
  .trio-product-copy strong { font-size: 2.3rem; }
  .trio-product-canvas > img { right: -10%; bottom: -5%; width: 96%; }
  .trio-reactions { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0.8rem 0.65rem; }
  .trio-reactions button { padding-inline: 0.4rem; }
  .examples { padding-block: 4rem; }
  .examples-heading h2, .reuse-row-heading h3, .section-heading h2, .problem h2, .precheck h2, .faq h2, .assurance-card h2, .final-card h2 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .action-card { width: 190px; }
  .action-media { height: 210px; }
  .scenario-card > footer { align-items: flex-start; flex-direction: column; gap: 0.2rem; }
  .scenario-card > footer span { text-align: left; }
  .scenario-browser, .infographic-stage, .ad-stage { min-height: 360px; }
  .welcome-stage { min-height: 620px; }
  .scenario-site-nav > span { display: none; }
  .scenario-copy { width: 64%; padding: 1.8rem 0 0 1.25rem; }
  .scenario-copy strong { font-size: 2rem; }
  .scenario-character-guide { right: -0.9rem; width: 51%; height: 270px; }
  .welcome-phone { width: min(88%, 330px); height: calc(100% - 2rem); }
  .welcome-content { padding: 1.75rem 1.2rem 0; }
  .welcome-content > strong { font-size: 2rem; }
  .scenario-character-wave { right: 7%; bottom: 7.5rem; width: 86%; height: 260px; }
  .welcome-toast { right: 0.75rem; bottom: 4rem; left: 0.75rem; }
  .infographic-stage header { padding: 1.5rem 0 0 1.25rem; }
  .infographic-stage header strong { font-size: 2rem; }
  .info-metric { left: 1.25rem; }
  .info-bars { left: 1.25rem; }
  .scenario-character-think { right: -0.5rem; width: 48%; height: 215px; }
  .ad-copy { width: 65%; padding: 2.4rem 0 0 2rem; }
  .ad-copy strong { font-size: 2.35rem; }
  .scenario-character-jump { right: -0.6rem; width: 50%; height: 280px; }
  .static-slop-board { padding: 0.75rem; }
  .slop-pages { gap: 0.45rem; }
  .slop-pages article { min-height: 180px; padding: 0.75rem; }
  .slop-verdict { right: 1rem; bottom: 4rem; }
  .moment-grid { grid-template-columns: repeat(2, 1fr); }
  .moment-source { grid-template-columns: 0.8fr 1.2fr; min-height: 220px; }
  .moment-source img { height: 220px; }
  .moment-source > span { right: 1rem; bottom: -1.35rem; }
  .moment-media { height: 190px; }
  .no-prompt { grid-template-columns: auto 1fr; }
  .no-prompt i { display: none; }
  .no-prompt b { grid-column: 1 / -1; justify-self: start; }
  .step-grid > li { display: block; }
  .step-visual { height: 170px; }
  .precheck-board { gap: 0.6rem; padding: 0.6rem; }
  .preview-cell { height: 190px; }
  .upload-control { grid-template-columns: auto 1fr; }
  .upload-control small { grid-column: 2; }
  .beta-access { grid-template-columns: 1fr; }
  .beta-access .button { width: 100%; justify-content: center; }
  .preview-ready { grid-template-columns: 1fr; }
  .preview-ready > small { grid-row: auto; }
  .preview-ready > .approval-copy, .preview-ready > .approval-actions, .preview-ready > .generation-controls, .preview-ready > .generation-status { grid-column: 1; }
  .preview-ready .generation-button { width: 100%; justify-content: center; }
  .pricing { padding-block: 6rem 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .output-grid { grid-template-columns: 1fr; }
  .output-card { min-height: 170px; }
  .output-card span { margin-bottom: 1.8rem; }
  .assurance-card { padding: 2rem 1.2rem; }
  .site-footer { grid-template-columns: 1fr; gap: 0.6rem; text-align: center; }
  .footer-links { flex-wrap: wrap; }
  .footer-brand { margin-inline: auto; }
  .footer-brand .brand-logo { width: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee-shell { overflow-x: auto; mask-image: none; scrollbar-width: thin; }
  .marquee-row { transform: none !important; }
  [data-carousel-duplicate] { display: none; }
  .reveal { opacity: 1; transform: none; }
}
