/* VizzTurtle landing page — a playful front door for the coding studio. */

/* The blocking head bootstrap sets this before body parsing, preventing either
   surface from flashing while the deferred application modules download. */
html[data-vizz-surface="studio"] .landing-page,
html[data-vizz-surface="landing"] .studio-shell {
  display: none !important;
}

.studio-shell {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.landing-active .studio-shell {
  pointer-events: none;
  user-select: none;
}

.landing-page {
  --landing-ink: #0b1736;
  --landing-muted: #60708a;
  --landing-paper: #f7f8f2;
  --landing-green: #9ee33b;
  --landing-green-dark: #254f2c;
  --landing-cyan: #38c8db;
  --landing-violet: #8b66ed;
  --landing-orange: #ff815e;
  position: fixed;
  inset: 0;
  z-index: 500;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--landing-ink);
  background: var(--landing-paper);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
  isolation: isolate;
}

.landing-page button {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.landing-page button:focus-visible,
.landing-page a:focus-visible {
  outline: 3px solid #6f53d9;
  outline-offset: 4px;
}

.landing-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--landing-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 13px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(11, 23, 54, .08);
  background: rgba(247, 248, 242, .88);
  box-shadow: 0 10px 35px rgba(29, 42, 74, .04);
  backdrop-filter: blur(18px);
}

.landing-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.landing-brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(11, 23, 54, .08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(25, 38, 71, .12);
}

.landing-brand-mark svg { width: 38px; height: 38px; overflow: visible; }
.landing-brand > span:last-child { display: flex; flex-direction: column; line-height: 1.12; }
.landing-brand strong { font-family: ui-rounded, 'Arial Rounded MT Bold', 'Trebuchet MS', sans-serif; font-size: 17px; letter-spacing: -.02em; }
.landing-brand small { margin-top: 3px; color: var(--landing-muted); font-size: 11px; font-weight: 700; }

.landing-nav-links { display: flex; align-items: center; gap: clamp(8px, 2vw, 26px); }
.landing-nav-links button,
.landing-footer button {
  min-height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: #43516a;
  font-size: 14px;
  font-weight: 750;
}

.landing-nav-links button:hover,
.landing-footer button:hover { color: #101d3b; }

.landing-nav-cta {
  justify-self: end;
  min-height: 48px;
  padding: 10px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #132347;
  border-radius: 14px;
  color: #fff !important;
  background: #101d3b;
  box-shadow: 0 8px 20px rgba(16, 29, 59, .16);
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.landing-nav-cta:hover { transform: translateY(-2px); background: #1b2c52; box-shadow: 0 12px 26px rgba(16, 29, 59, .22); }
.landing-nav-cta span { font-size: 18px; }

.landing-hero {
  position: relative;
  min-height: min(770px, calc(100vh - 78px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, .85fr);
  align-items: start;
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(36px, 4vw, 58px) clamp(24px, 7vw, 110px) clamp(70px, 8vw, 110px);
  overflow: hidden;
  background:
    linear-gradient(117deg, rgba(255, 255, 255, .9), rgba(247, 248, 242, .74)),
    radial-gradient(circle at 12% 16%, rgba(158, 227, 59, .18), transparent 30%);
}

.landing-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.landing-glow-one {
  width: 420px;
  height: 420px;
  top: 9%;
  right: -170px;
  background: rgba(65, 198, 218, .16);
}

.landing-glow-two {
  width: 300px;
  height: 300px;
  left: 38%;
  bottom: -190px;
  background: rgba(139, 102, 237, .12);
}

.landing-hero-copy { position: relative; z-index: 2; max-width: 720px; }

.landing-eyebrow,
.landing-kicker {
  margin: 0 0 20px;
  color: #3e6c33;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.landing-eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.landing-eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--landing-green); box-shadow: 0 0 0 5px rgba(158, 227, 59, .2); }

.landing-hero h1,
.landing-section h2,
.landing-final h2,
.landing-demo h2 {
  font-family: ui-rounded, 'Arial Rounded MT Bold', 'Trebuchet MS', sans-serif;
  text-wrap: balance;
}

.landing-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 6.25vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  color: #0b1736;
}

.landing-hero h1 em { position: relative; display: inline-block; color: #573bc3; font-style: normal; }
.landing-hero h1 em::after {
  content: '';
  position: absolute;
  left: 2%;
  right: -1%;
  bottom: -.08em;
  height: .12em;
  border-radius: 999px;
  background: var(--landing-green);
  transform: rotate(-1deg);
}

.landing-lede {
  max-width: 630px;
  margin: 30px 0 0;
  color: #53627a;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

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

.landing-cta {
  min-height: 56px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.landing-cta:hover { transform: translateY(-2px); }
.landing-cta-primary { border: 1px solid #284829; background: var(--landing-green); box-shadow: 0 12px 28px rgba(103, 150, 44, .26); }
.landing-cta-primary:hover { background: #acf04c; box-shadow: 0 16px 34px rgba(103, 150, 44, .32); }
.landing-cta-primary > span:last-child,
.landing-cta-light > span:last-child { font-size: 21px; line-height: 1; }
.landing-cta-secondary { border: 1px solid #d6dbe5; background: rgba(255, 255, 255, .8); box-shadow: 0 8px 22px rgba(25, 38, 71, .07); }
.landing-cta-secondary:hover { background: #fff; box-shadow: 0 12px 28px rgba(25, 38, 71, .11); }
.landing-play { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #7658d7; font-size: 10px; padding-left: 2px; }

.landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 29px 0 0;
  padding: 0;
  color: #53627a;
  list-style: none;
  font-size: 13px;
  font-weight: 750;
}

.landing-proof span { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 5px; border-radius: 50%; color: #29402c; background: #dff4bd; font-size: 11px; }

.landing-hero-visual { position: relative; z-index: 1; width: min(100%, 570px); justify-self: center; }
.landing-art-window {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 40px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 36px 80px rgba(21, 35, 78, .25), 0 8px 22px rgba(21, 35, 78, .12);
  transform: rotate(3.5deg);
  animation: landing-float 6s ease-in-out infinite;
}

.landing-window-bar { min-height: 43px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; padding: 0 10px 4px; color: #718097; font-size: 11px; font-weight: 750; }
.landing-window-dots { display: flex; gap: 5px; }
.landing-window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #ff8a6e; }
.landing-window-dots i:nth-child(2) { background: #f4c45d; }
.landing-window-dots i:nth-child(3) { background: #72d1a7; }
.landing-local { justify-self: end; display: inline-flex; align-items: center; gap: 5px; }
.landing-local i { width: 7px; height: 7px; border-radius: 50%; background: #63c98d; box-shadow: 0 0 0 3px rgba(99, 201, 141, .14); }

.landing-art-frame { aspect-ratio: 1; overflow: hidden; border-radius: 30px; background: #080b41; }
.landing-art-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }

.landing-code-stack {
  position: absolute;
  left: -38px;
  bottom: 26px;
  width: 164px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 38px rgba(13, 24, 54, .22);
  transform: rotate(-3deg);
}

.landing-code-block { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: -2px; padding: 8px 12px; border-radius: 9px; color: #fff; font-size: 12px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .13); }
.landing-code-block:first-child { margin-top: 0; }
.landing-code-block strong { min-width: 35px; padding: 3px 6px; border-radius: 6px; background: rgba(255, 255, 255, .2); text-align: center; }
.landing-code-loop { background: #e09a17; }
.landing-code-move { margin-left: 13px; background: #326fd0; }
.landing-code-turn { margin-left: 13px; background: #7658d7; }

.landing-idea-chip {
  position: absolute;
  top: 13%;
  right: -34px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 999px;
  color: #2e3c56;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 15px 30px rgba(13, 24, 54, .16);
  font-size: 12px;
  font-weight: 850;
  transform: rotate(2deg);
}

.landing-idea-chip span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #7658d7; }

.landing-signal {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.4fr;
  align-items: center;
  gap: 0;
  padding: 26px clamp(24px, 7vw, 110px);
  color: #fff;
  background: #0d1939;
}

.landing-signal > div { display: flex; align-items: baseline; gap: 9px; padding: 5px clamp(12px, 2vw, 28px); border-left: 1px solid rgba(255, 255, 255, .13); }
.landing-signal > div:first-child { padding-left: 0; border-left: 0; }
.landing-signal strong { color: var(--landing-green); font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -.04em; }
.landing-signal span { max-width: 130px; color: #afbad0; font-size: 11px; line-height: 1.35; }
.landing-signal p { margin: 0; color: #fff; font-family: ui-rounded, 'Trebuchet MS', sans-serif; font-size: clamp(17px, 2vw, 24px); font-weight: 800; text-align: right; }

.landing-section { padding: clamp(86px, 10vw, 142px) clamp(24px, 7vw, 110px); }
.landing-section-heading { max-width: 750px; }
.landing-section-heading h2,
.landing-journey h2 { margin: 0; color: #0b1736; font-size: clamp(38px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -.05em; }
.landing-section-heading > p:last-child { max-width: 630px; margin: 24px 0 0; color: var(--landing-muted); font-size: 18px; line-height: 1.65; }

.landing-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.landing-feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid rgba(15, 31, 65, .1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(28, 42, 76, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.landing-feature-card:hover { transform: translateY(-6px); box-shadow: 0 26px 58px rgba(28, 42, 76, .13); }
.landing-feature-card-draw { background: linear-gradient(155deg, #f5ffdf, #fff 58%); }
.landing-feature-card-listen { background: linear-gradient(155deg, #f2edff, #fff 58%); }
.landing-feature-card-grow { background: linear-gradient(155deg, #e8fbff, #fff 58%); }
.landing-feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: #dff4af; }
.landing-feature-card-listen .landing-feature-icon { background: #dfd4ff; }
.landing-feature-card-grow .landing-feature-icon { background: #cceff3; }
.landing-feature-icon svg { width: 34px; height: 34px; fill: none; stroke: #18394a; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.landing-card-number { position: absolute; top: 34px; right: 34px; color: rgba(24, 40, 72, .3); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.landing-feature-card h3 { margin: 44px 0 14px; color: #12203e; font-family: ui-rounded, 'Trebuchet MS', sans-serif; font-size: 25px; letter-spacing: -.03em; }
.landing-feature-card > p { margin: 0; color: #66738a; font-size: 15px; line-height: 1.7; }
.landing-mini-palette { position: absolute; left: 36px; bottom: 35px; display: flex; align-items: end; gap: 6px; }
.landing-mini-palette i { width: 46px; height: 12px; border-radius: 5px; background: #326fd0; }
.landing-mini-palette i:nth-child(2) { width: 65px; background: #6aa82b; }
.landing-mini-palette i:nth-child(3) { width: 38px; background: #e09a17; }
.landing-mini-palette i:nth-child(4) { width: 54px; background: #7658d7; }
.landing-wave { position: absolute; left: 36px; bottom: 32px; height: 52px; display: flex; align-items: center; gap: 6px; }
.landing-wave i { width: 7px; height: 19px; border-radius: 9px; background: #7658d7; }
.landing-wave i:nth-child(2), .landing-wave i:nth-child(6) { height: 35px; }
.landing-wave i:nth-child(3), .landing-wave i:nth-child(5) { height: 48px; }
.landing-wave i:nth-child(4) { height: 26px; }
.landing-code-line { position: absolute; left: 36px; right: 36px; bottom: 34px; padding: 14px 17px; border-radius: 12px; color: #dce8f2; background: #102040; font: 12px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; }
.landing-code-line span { color: #b7ef5d; }

.landing-journey { padding-top: 30px; }
.landing-journey-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: .8fr 1fr; gap: clamp(50px, 8vw, 120px); padding: clamp(45px, 6vw, 80px); border-radius: 38px; color: #fff; background: #111e42; box-shadow: 0 28px 70px rgba(12, 25, 57, .18); }
.landing-journey-panel::before { content: ''; position: absolute; width: 420px; height: 420px; right: -150px; top: -220px; border: 1px solid rgba(158, 227, 59, .2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(158, 227, 59, .035), 0 0 0 140px rgba(158, 227, 59, .025); }
.landing-journey-copy { position: relative; z-index: 1; }
.landing-journey .landing-kicker { color: var(--landing-green); }
.landing-journey h2 { color: #fff; }
.landing-journey-copy > p:not(.landing-kicker) { margin: 25px 0 0; color: #b9c4da; font-size: 16px; line-height: 1.7; }
.landing-text-link { min-height: 46px; margin-top: 24px; padding: 0; border: 0; color: var(--landing-green) !important; background: transparent; font-weight: 850; }
.landing-text-link span { margin-left: 6px; font-size: 18px; }
.landing-steps { position: relative; z-index: 1; display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.landing-steps li { min-height: 112px; display: flex; align-items: center; gap: 20px; padding: 22px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 20px; background: rgba(255, 255, 255, .055); }
.landing-steps li > span { width: 48px; height: 48px; display: grid; place-items: center; flex: none; border-radius: 15px; color: #102040; background: var(--landing-green); font-size: 15px; font-weight: 900; }
.landing-steps strong { font-size: 16px; }
.landing-steps p { margin: 6px 0 0; color: #aebad0; font-size: 14px; line-height: 1.45; }

.landing-final { position: relative; overflow: hidden; margin: clamp(40px, 7vw, 90px) clamp(24px, 7vw, 110px) clamp(80px, 10vw, 130px); padding: clamp(80px, 9vw, 120px) 24px; border-radius: 42px; background: var(--landing-green); text-align: center; }
.landing-final .landing-kicker { color: #35582d; }
.landing-final h2 { max-width: 900px; margin: 0 auto; color: #10203d; font-size: clamp(44px, 5.8vw, 80px); line-height: .98; letter-spacing: -.055em; }
.landing-final > p:not(.landing-kicker) { max-width: 650px; margin: 24px auto 0; color: #38523b; font-size: 17px; line-height: 1.6; }
.landing-cta-light { margin-top: 30px; border: 1px solid #fff; color: #12203e !important; background: #fff; box-shadow: 0 14px 30px rgba(46, 74, 39, .18); }
.landing-cta-light:hover { box-shadow: 0 18px 38px rgba(46, 74, 39, .24); }
.landing-final-orbit { position: absolute; width: 230px; height: 230px; top: -100px; right: -50px; border: 2px solid rgba(34, 73, 39, .13); border-radius: 50%; }
.landing-final-orbit::before, .landing-final-orbit::after { content: ''; position: absolute; inset: 27px; border: inherit; border-radius: inherit; }
.landing-final-orbit::after { inset: 62px; }
.landing-final-orbit i { position: absolute; width: 15px; height: 15px; border-radius: 5px; background: #7658d7; transform: rotate(20deg); }
.landing-final-orbit i:first-child { left: 18px; bottom: 55px; }
.landing-final-orbit i:nth-child(2) { left: 55px; bottom: 18px; background: #ff7454; }
.landing-final-orbit i:nth-child(3) { left: 86px; bottom: 87px; background: #34bdd1; }

.landing-demo { padding: 0 clamp(24px, 7vw, 110px) clamp(80px, 10vw, 130px); }
.landing-demo-panel {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 62px);
  overflow: hidden;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 5% 10%, rgba(158, 227, 59, .17), transparent 34%),
    #101d3b;
  box-shadow: 0 28px 70px rgba(12, 25, 57, .18);
}
.landing-demo-copy { max-width: 430px; }
.landing-demo .landing-kicker { color: var(--landing-green); }
.landing-demo h2 { margin: 0; font-size: clamp(40px, 4.7vw, 66px); line-height: 1; letter-spacing: -.05em; }
.landing-demo-copy > p:last-child { margin: 24px 0 0; color: #bac5da; font-size: 16px; line-height: 1.7; }
.landing-demo-frame {
  width: min(100%, 590px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, .92);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(3, 10, 28, .32);
  transform: rotate(1deg);
}
.landing-demo-frame img { width: 100%; height: auto; aspect-ratio: 1; display: block; object-fit: cover; }

.landing-footer { min-height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 22px clamp(24px, 7vw, 110px); border-top: 1px solid rgba(11, 23, 54, .1); background: #fff; }
.landing-footer-brand { display: flex; align-items: center; gap: 10px; font-family: ui-rounded, 'Trebuchet MS', sans-serif; }
.landing-footer-dot { width: 18px; height: 18px; border-radius: 7px; background: var(--landing-green); box-shadow: inset 0 0 0 5px #1c4934; transform: rotate(12deg); }
.landing-footer p { margin: 0; color: #788398; font-size: 12px; }
.landing-footer button { justify-self: end; }

@keyframes landing-float {
  0%, 100% { transform: rotate(3.5deg) translateY(0); }
  50% { transform: rotate(2.7deg) translateY(-7px); }
}

@media (max-width: 1080px) {
  .landing-hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: 46px; }
  .landing-hero h1 { font-size: clamp(51px, 6.5vw, 72px); }
  .landing-feature-card { min-height: 410px; }
  .landing-signal { grid-template-columns: repeat(3, 1fr); }
  .landing-signal p { display: none; }
}

@media (max-width: 820px) {
  .landing-nav { grid-template-columns: 1fr auto; min-height: 70px; padding: 10px 20px; }
  .landing-nav-links { display: none; }
  .landing-brand small { display: none; }
  .landing-hero { min-height: auto; grid-template-columns: 1fr; gap: 54px; padding: 70px 24px 86px; }
  .landing-hero-copy { text-align: center; margin-inline: auto; }
  .landing-hero h1 { font-size: clamp(51px, 12vw, 78px); }
  .landing-lede { margin-inline: auto; }
  .landing-hero-actions, .landing-proof { justify-content: center; }
  .landing-hero-visual { width: min(88vw, 560px); }
  .landing-code-stack { left: -18px; }
  .landing-idea-chip { right: -15px; }
  .landing-signal { padding-inline: 24px; }
  .landing-signal > div { flex-direction: column; align-items: center; gap: 3px; text-align: center; }
  .landing-signal span { max-width: 160px; }
  .landing-feature-grid { grid-template-columns: 1fr; }
  .landing-feature-card { min-height: 340px; }
  .landing-journey-panel { grid-template-columns: 1fr; }
  .landing-demo-panel { grid-template-columns: 1fr; text-align: center; }
  .landing-demo-copy { max-width: 620px; margin-inline: auto; }
  .landing-demo-frame { width: min(100%, 590px); justify-self: center; }
  .landing-footer { grid-template-columns: 1fr auto; }
  .landing-footer p { display: none; }
}

@media (max-width: 520px) {
  .landing-nav-cta { min-height: 44px; padding: 8px 13px; font-size: 12px; }
  .landing-nav-cta span { display: none; }
  .landing-brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .landing-brand-mark svg { width: 31px; height: 31px; }
  .landing-brand strong { font-size: 15px; }
  .landing-hero { padding-top: 56px; }
  .landing-hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .landing-lede { font-size: 16px; line-height: 1.58; }
  .landing-hero-actions { display: grid; }
  .landing-cta { width: 100%; }
  .landing-proof { gap: 12px 16px; font-size: 12px; }
  .landing-art-window { border-radius: 29px; }
  .landing-art-frame { border-radius: 21px; }
  .landing-window-bar { min-height: 34px; font-size: 9px; }
  .landing-code-stack { width: 142px; bottom: -34px; left: -6px; }
  .landing-code-block { min-height: 32px; padding: 6px 9px; font-size: 10px; }
  .landing-idea-chip { top: 7%; right: -5px; min-height: 38px; padding: 7px 10px; font-size: 10px; }
  .landing-idea-chip span { width: 22px; height: 22px; }
  .landing-signal { grid-template-columns: 1fr; gap: 0; margin-top: 30px; padding-block: 18px; }
  .landing-signal > div { flex-direction: row; justify-content: space-between; padding: 13px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); text-align: left; }
  .landing-signal > div:first-child { border-top: 0; }
  .landing-signal span { text-align: right; }
  .landing-section { padding: 82px 20px; }
  .landing-section-heading h2, .landing-journey h2 { font-size: 39px; }
  .landing-feature-grid { margin-top: 40px; }
  .landing-feature-card { min-height: 365px; padding: 26px; }
  .landing-feature-card h3 { margin-top: 36px; }
  .landing-mini-palette, .landing-wave { left: 27px; }
  .landing-code-line { left: 27px; right: 27px; }
  .landing-journey { padding-top: 0; }
  .landing-journey-panel { gap: 40px; padding: 38px 22px; border-radius: 28px; }
  .landing-steps li { padding: 18px 15px; }
  .landing-final { margin: 30px 20px 75px; padding: 72px 20px; border-radius: 30px; }
  .landing-final h2 { font-size: 45px; }
  .landing-demo { padding: 0 20px 75px; }
  .landing-demo-panel { gap: 30px; padding: 34px 18px 18px; border-radius: 30px; }
  .landing-demo h2 { font-size: 42px; }
  .landing-demo-frame { border-width: 6px; border-radius: 22px; }
  .landing-footer { padding: 18px 20px; }
  .landing-footer button { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page { scroll-behavior: auto; }
  .landing-art-window { animation: none; }
  .landing-page *, .landing-page *::before, .landing-page *::after { transition-duration: .01ms !important; }
}
