:root {
  --ink: #111116;
  --ink-soft: #2a2a31;
  --muted: #73737e;
  --paper: #f5f4ef;
  --surface: #ffffff;
  --surface-soft: #f8f8f6;
  --line: rgba(16, 16, 22, 0.11);
  --line-strong: rgba(16, 16, 22, 0.18);
  --violet: #785cff;
  --violet-deep: #5939ed;
  --violet-soft: #eeeaff;
  --lime: #d9ff6f;
  --night: #0c0c11;
  --night-soft: #15151c;
  --danger: #d94a58;
  --success: #1f9d70;
  --shadow-lg: 0 42px 120px rgba(13, 11, 33, 0.18);
  --shadow-md: 0 20px 56px rgba(18, 16, 45, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --content: 1240px;
  --studio-topbar: 64px;
  --left-panel: 312px;
  --right-panel: 308px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.studio-mode { overflow: hidden; background: #ececf0; }
button, textarea, input, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.aurora {
  position: fixed;
  z-index: -2;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .28;
  pointer-events: none;
}
.aurora-a { top: -280px; left: -300px; background: #b8a8ff; }
.aurora-b { top: 10%; right: -400px; background: #ffc9dc; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -.055em;
}
.brand-glyph {
  position: relative;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}
.brand-glyph i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--violet);
  transform: rotate(45deg);
}
.brand-glyph i:nth-child(1) { left: 1px; opacity: .42; }
.brand-glyph i:nth-child(2) { right: 1px; opacity: .72; }
.brand-glyph i:nth-child(3) { width: 9px; height: 9px; background: var(--ink); }

.landing-header {
  position: relative;
  z-index: 20;
  width: min(var(--content), calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-nav { display: flex; align-items: center; gap: 30px; color: #66666f; font-size: .9rem; font-weight: 600; }
.landing-nav a { transition: color 160ms ease, transform 160ms ease; }
.landing-nav a:hover { color: var(--ink); transform: translateY(-1px); }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 8px 28px rgba(31, 27, 58, .06);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  width: min(var(--content), calc(100% - 48px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 70px 0 105px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}
.hero-copy { position: relative; z-index: 4; }
.hero-kicker, .section-kicker, .panel-kicker {
  margin: 0;
  color: var(--violet-deep);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .145em;
  text-transform: uppercase;
}
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 6px rgba(120,92,255,.11); animation: livePulse 2.4s ease-in-out infinite; }
@keyframes livePulse { 50% { box-shadow: 0 0 0 10px rgba(120,92,255,0); } }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4.55rem, 7.5vw, 7.6rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.055em;
}
.hero h1 span { display: inline-block; color: var(--violet); font-style: italic; }
.hero-lede {
  max-width: 650px;
  margin: 30px 0 32px;
  color: #65656f;
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  line-height: 1.74;
}

.composer {
  position: relative;
  isolation: isolate;
  padding: 9px;
  border: 1px solid rgba(22,19,46,.13);
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 68px rgba(30, 24, 74, .11), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(24px);
}
.composer::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(120,92,255,.45), transparent 32%, transparent 68%, rgba(255,146,196,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .62;
}
.composer-glow {
  position: absolute;
  z-index: -1;
  inset: 24% 10%;
  background: rgba(120,92,255,.16);
  filter: blur(38px);
}
.composer textarea {
  display: block;
  width: 100%;
  min-height: 156px;
  resize: vertical;
  border: 0;
  outline: 0;
  padding: 20px 20px 12px;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  line-height: 1.62;
}
.composer textarea::placeholder { color: #9a99a4; }
.prompt-suggestions { display: flex; flex-wrap: wrap; gap: 7px; padding: 2px 12px 16px; }
.suggestion {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(248,248,246,.8);
  color: #72717c;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 160ms ease;
}
.suggestion:hover { border-color: rgba(120,92,255,.32); background: var(--violet-soft); color: var(--violet-deep); transform: translateY(-1px); }
.composer-footer {
  min-height: 58px;
  padding: 8px 8px 8px 10px;
  border-top: 1px solid rgba(16,16,22,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.composer-tools, .composer-submit { display: flex; align-items: center; gap: 12px; }
.round-tool {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 160ms ease;
}
.round-tool:hover, .round-tool.is-listening { color: var(--violet); border-color: rgba(120,92,255,.36); background: var(--violet-soft); }
.round-tool svg { width: 17px; height: 17px; }
.voice-status, .character-count { color: #94939d; font-size: .68rem; }
.generate-button {
  position: relative;
  min-height: 44px;
  padding: 0 14px 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--night);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12,12,17,.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.generate-button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(12,12,17,.26); }
.generate-button:disabled { opacity: .55; cursor: wait; transform: none; }
.generate-button svg { width: 17px; height: 17px; position: relative; z-index: 2; }
.generate-button span:first-child { position: relative; z-index: 2; }
.button-orb { position: absolute; width: 70px; height: 70px; right: -28px; border-radius: 50%; background: var(--violet); filter: blur(12px); opacity: .78; }
.hero-footnote { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; color: #85848d; font-size: .68rem; font-weight: 600; }
.hero-footnote span { display: inline-flex; align-items: center; gap: 8px; }
.hero-footnote span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #aaa7b4; }
.continue-project {
  width: 100%;
  margin-top: 18px;
  padding: 14px 15px;
  border: 1px solid rgba(120,92,255,.2);
  border-radius: 17px;
  background: rgba(238,234,255,.58);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}
.continue-project:hover { background: var(--violet-soft); }
.continue-icon { width: 35px; height: 35px; border-radius: 10px; display: grid; place-items: center; background: var(--violet); color: #fff; }
.continue-project small { display: block; color: #77718e; font-size: .63rem; text-transform: uppercase; letter-spacing: .09em; }
.continue-project strong { display: block; margin-top: 2px; font-size: .79rem; }
.continue-arrow { color: var(--violet); font-size: 1.1rem; }

.hero-stage { position: relative; min-height: 650px; perspective: 1200px; }
.stage-orbit { position: absolute; border: 1px solid rgba(120,92,255,.14); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; top: 30px; left: 0; animation: orbitSpin 24s linear infinite; }
.orbit-two { width: 390px; height: 390px; top: 115px; left: 85px; border-style: dashed; animation: orbitSpin 18s linear infinite reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.stage-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  left: 145px;
  top: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #fff 0 5%, #dccfff 18%, #8f72ff 48%, #4f2ed8 72%, #24165c 100%);
  box-shadow: 0 55px 100px rgba(72,46,188,.35), inset -20px -30px 70px rgba(18,8,63,.35), inset 20px 15px 50px rgba(255,255,255,.48);
  animation: orbFloat 5.4s ease-in-out infinite;
}
.stage-orb::after { content: ""; position: absolute; inset: 16%; border-radius: 50%; border: 1px solid rgba(255,255,255,.32); transform: rotate(28deg) scaleY(.62); }
.stage-orb span { position: absolute; width: 52px; height: 16px; border-radius: 50%; top: 40px; left: 76px; background: rgba(255,255,255,.56); filter: blur(10px); transform: rotate(-28deg); }
@keyframes orbFloat { 50% { transform: translateY(-18px) rotate(4deg); } }
.floating-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.mock-site-card { width: 360px; height: 430px; right: 8px; top: 82px; border-radius: 22px; overflow: hidden; transform: rotateY(-5deg) rotateZ(2deg); animation: cardFloatA 7s ease-in-out infinite; }
@keyframes cardFloatA { 50% { transform: translateY(-13px) rotateY(-3deg) rotateZ(1deg); } }
.mock-browser-top { height: 36px; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; background: #f7f5ef; border-bottom: 1px solid rgba(20,20,25,.08); color: #8a8781; font-size: .54rem; }
.mock-browser-top > span { display: flex; gap: 4px; }
.mock-browser-top i { width: 6px; height: 6px; border-radius: 50%; background: #c7c3ba; }
.mock-browser-top b { font-weight: 600; }
.mock-site-hero { height: 286px; padding: 23px; color: #fff; background: radial-gradient(circle at 80% 10%, rgba(255,218,175,.42), transparent 25%), linear-gradient(140deg, #5b493b, #1e2021 64%, #111); position: relative; overflow: hidden; }
.mock-site-hero::before { content: ""; position: absolute; width: 165px; height: 240px; right: -22px; bottom: -36px; border-radius: 90px 90px 12px 12px; border: 1px solid rgba(255,255,255,.28); background: linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.01)); transform: rotate(-10deg); }
.mock-site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; font-size: .46rem; letter-spacing: .1em; }
.mock-site-nav strong { font-family: Georgia, serif; font-size: .72rem; }
.mock-site-hero p { position: relative; margin: 70px 0 18px; font-family: Georgia, serif; font-size: 2rem; line-height: .92; letter-spacing: -.04em; }
.mock-site-hero button { position: relative; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 8px 11px; color: #fff; background: rgba(255,255,255,.08); font-size: .52rem; }
.mock-site-grid { height: 108px; padding: 13px; display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 8px; background: #f1ede5; }
.mock-site-grid i { border-radius: 8px; background: linear-gradient(145deg, #bca998, #75675c); }
.mock-site-grid i:nth-child(2) { background: linear-gradient(145deg, #cfb782, #8e7650); }
.mock-site-grid i:nth-child(3) { background: linear-gradient(145deg, #9ba7a2, #5b6762); }
.editor-card { width: 194px; right: -54px; bottom: 50px; padding: 14px; border-radius: 17px; transform: rotate(2deg); animation: cardFloatB 6.2s ease-in-out infinite; }
@keyframes cardFloatB { 50% { transform: translateY(12px) rotate(1deg); } }
.editor-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; font-size: .65rem; font-weight: 700; }
.editor-card-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 4px rgba(120,92,255,.12); }
.editor-card label { display: block; margin: 10px 0 5px; color: #8a8993; font-size: .48rem; text-transform: uppercase; letter-spacing: .1em; }
.editor-control { height: 28px; border: 1px solid rgba(18,18,24,.09); border-radius: 8px; padding: 0 8px; display: flex; align-items: center; justify-content: space-between; background: #fff; font-size: .55rem; }
.color-row { display: flex; gap: 6px; }
.color-row i { width: 24px; height: 24px; border-radius: 7px; background: #111; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.color-row i:nth-child(2) { background: #7a5cff; }
.color-row i:nth-child(3) { background: #e1c4a5; }
.color-row i:nth-child(4) { background: #f3f1ec; }
.editor-slider { height: 3px; margin: 15px 2px 2px; border-radius: 999px; background: #e4e2e8; }
.editor-slider span { display: block; width: 64%; height: 100%; background: var(--violet); border-radius: inherit; position: relative; }
.editor-slider span::after { content: ""; position: absolute; width: 9px; height: 9px; right: -4px; top: -3px; border-radius: 50%; background: var(--violet); }
.prompt-card { width: 240px; left: 0; bottom: 24px; padding: 14px 15px; border-radius: 17px; animation: cardFloatC 6.8s ease-in-out infinite; }
@keyframes cardFloatC { 50% { transform: translateY(-10px) rotate(-1deg); } }
.prompt-spark { color: var(--violet); font-size: .8rem; }
.prompt-card p { margin: 7px 0 11px; color: #55545e; font-size: .65rem; line-height: 1.45; }
.prompt-progress { display: block; height: 3px; border-radius: 99px; background: #e5e2ea; overflow: hidden; }
.prompt-progress i { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, var(--violet), #bb9cff); animation: promptLoad 2.6s ease-in-out infinite; }
@keyframes promptLoad { 50% { width: 96%; } }
.selection-box { position: absolute; z-index: 8; width: 194px; height: 86px; right: 123px; top: 206px; border: 1.5px solid var(--violet); border-radius: 4px; animation: selectFloat 4.8s ease-in-out infinite; }
@keyframes selectFloat { 50% { transform: translateY(-9px); } }
.selection-box i { position: absolute; width: 7px; height: 7px; border: 1px solid var(--violet); background: #fff; }
.selection-box i:nth-of-type(1) { left: -4px; top: -4px; }
.selection-box i:nth-of-type(2) { right: -4px; top: -4px; }
.selection-box i:nth-of-type(3) { left: -4px; bottom: -4px; }
.selection-box i:nth-of-type(4) { right: -4px; bottom: -4px; }
.selection-label { position: absolute; left: -1px; top: -23px; padding: 4px 7px; border-radius: 5px 5px 0 0; background: var(--violet); color: #fff; font-size: .49rem; font-weight: 700; }
.cursor-chip { position: absolute; z-index: 9; right: 54px; top: 308px; padding: 8px 10px; border-radius: 9px; background: var(--night); color: #fff; font-size: .56rem; font-weight: 600; box-shadow: 0 12px 24px rgba(0,0,0,.18); transform: rotate(-3deg); }
.cursor-chip span { color: #b9a9ff; }

.proof-strip { width: min(var(--content), calc(100% - 48px)); margin: 0 auto 90px; padding: 58px; border-radius: var(--radius-xl); color: #fff; background: var(--night); display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; box-shadow: 0 35px 80px rgba(12,12,17,.2); }
.proof-copy h2 { margin: 18px 0 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 400; line-height: .94; letter-spacing: -.04em; }
.proof-strip .section-kicker { color: #a997ff; }
.proof-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-steps article { min-height: 225px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 19px; background: rgba(255,255,255,.045); display: flex; flex-direction: column; }
.proof-steps article > span { color: #b6a7ff; font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.proof-steps h3 { margin: auto 0 10px; font-size: 1.02rem; }
.proof-steps p { margin: 0; color: #9f9eaa; font-size: .76rem; line-height: 1.58; }

.landing-footer { width: min(var(--content), calc(100% - 48px)); min-height: 120px; margin: 0 auto; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #777680; font-size: .78rem; }
.version-badge { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.58); font-size: .66rem; font-weight: 700; }

.generation-overlay, .error-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 28px;
  background: rgba(9,9,14,.82);
  backdrop-filter: blur(24px);
  display: grid;
  place-items: center;
}
.generation-shell { width: min(960px, 100%); min-height: 560px; padding: 64px; border: 1px solid rgba(255,255,255,.12); border-radius: 36px; color: #fff; background: radial-gradient(circle at 10% 20%, rgba(120,92,255,.22), transparent 32%), linear-gradient(145deg, #15151d, #0d0d12); box-shadow: 0 50px 120px rgba(0,0,0,.45); display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 64px; position: relative; overflow: hidden; }
.generation-shell::after { content: ""; position: absolute; width: 360px; height: 360px; right: -160px; top: -150px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.generation-visual { min-height: 310px; position: relative; display: grid; place-items: center; }
.generation-orb { position: relative; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle at 32% 25%, #fff 0 4%, #d8ccff 18%, #7b60fb 50%, #2d177a 100%); box-shadow: 0 34px 84px rgba(101,71,235,.45), inset -20px -25px 55px rgba(16,7,59,.3); animation: generationFloat 4.2s ease-in-out infinite; }
@keyframes generationFloat { 50% { transform: translateY(-16px) rotate(5deg); } }
.generation-orb span { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); animation: orbWave 2.8s ease-out infinite; }
.generation-orb span:nth-child(2) { animation-delay: .8s; }
.generation-orb span:nth-child(3) { animation-delay: 1.6s; }
@keyframes orbWave { 75%,100% { transform: scale(1.45); opacity: 0; } }
.generation-rings i { position: absolute; inset: 34px; border: 1px solid rgba(163,145,255,.22); border-radius: 50%; animation: orbitSpin 8s linear infinite; }
.generation-rings i:nth-child(2) { inset: 10px; border-style: dashed; animation-duration: 11s; animation-direction: reverse; }
.generation-rings i:nth-child(3) { inset: -20px; opacity: .45; animation-duration: 16s; }
.generation-copy h2 { margin: 15px 0 12px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.generation-copy > p:not(.section-kicker) { max-width: 540px; margin: 0; color: #aaa9b5; line-height: 1.7; }
.progress-track { height: 5px; margin-top: 34px; border-radius: 99px; background: rgba(255,255,255,.09); overflow: hidden; }
.progress-track span { display: block; width: 12%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), #b5a3ff, var(--lime)); transition: width 700ms cubic-bezier(.2,.7,.2,1); }
.generation-meta { margin-top: 12px; display: flex; justify-content: space-between; color: #6f6e79; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.mastered-prompt-card { grid-column: 1 / -1; padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 19px; background: rgba(255,255,255,.045); display: grid; grid-template-columns: 200px 1fr auto; align-items: start; gap: 24px; }
.mastered-prompt-card h3 { margin: 8px 0 0; font-size: 1rem; }
.mastered-prompt-card > p { margin: 0; color: #aaa9b4; font-size: .76rem; line-height: 1.65; white-space: pre-wrap; }
.text-button { border: 0; padding: 0; background: transparent; color: var(--violet); font-size: .7rem; font-weight: 700; cursor: pointer; }

.error-card { width: min(480px, 100%); padding: 44px; border-radius: 28px; background: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.error-icon { width: 50px; height: 50px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--danger); font-weight: 800; }
.error-card h2 { margin: 10px 0; font-family: "Instrument Serif", Georgia, serif; font-size: 2.8rem; font-weight: 400; }
.error-card > p:not(.section-kicker) { color: var(--muted); line-height: 1.6; }
.error-actions { margin-top: 24px; }
.secondary-button { border: 1px solid var(--line); border-radius: 12px; padding: 11px 15px; background: #fff; cursor: pointer; font-weight: 700; }

/* Live Studio */
.studio { position: fixed; inset: 0; z-index: 80; background: #ececf0; }
.studio-topbar {
  height: var(--studio-topbar);
  padding: 0 12px;
  border-bottom: 1px solid #d8d8df;
  background: rgba(249,249,251,.94);
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: minmax(310px, 1fr) auto auto auto minmax(320px, 1fr);
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 20;
}
.studio-brand-group, .studio-actions, .history-controls, .device-switcher, .mode-switcher { display: flex; align-items: center; }
.studio-brand-group { min-width: 0; gap: 9px; }
.studio-brand { font-size: .98rem; }
.studio-brand .brand-glyph { width: 21px; height: 21px; transform: scale(.86); }
.studio-divider { width: 1px; height: 25px; margin: 0 3px; background: #d9d9df; }
.project-identity { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.project-identity strong { max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .76rem; }
.project-identity span { color: #8a8992; font-size: .57rem; }
.project-identity span i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--success); }
.studio-icon-button, .device-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #64636c;
}
.studio-icon-button:hover, .device-button:hover, .device-button.is-active { color: var(--ink); background: #ececf1; }
.studio-icon-button:disabled { opacity: .3; cursor: default; background: transparent; }
.studio-icon-button svg, .device-button svg { width: 16px; height: 16px; }
.history-controls { gap: 2px; padding: 3px; border: 1px solid #dbdbe1; border-radius: 11px; background: #fff; }
.device-switcher { gap: 2px; padding: 3px; border: 1px solid #dbdbe1; border-radius: 11px; background: #fff; }
.device-button { width: 31px; height: 29px; border-radius: 7px; }
.mode-switcher { gap: 3px; padding: 3px; border: 1px solid #d8d8df; border-radius: 11px; background: #e8e8ed; }
.mode-button { height: 30px; padding: 0 11px; border: 0; border-radius: 8px; background: transparent; color: #707079; display: flex; align-items: center; gap: 6px; font-size: .67rem; font-weight: 700; cursor: pointer; }
.mode-button svg { width: 14px; height: 14px; }
.mode-button.is-active { color: var(--ink); background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.09); }
.studio-actions { justify-content: flex-end; gap: 6px; }
.studio-text-button { height: 34px; padding: 0 10px; border: 0; border-radius: 9px; background: transparent; color: #62616a; font-size: .66rem; font-weight: 700; cursor: pointer; }
.studio-text-button:hover { background: #ececf1; color: var(--ink); }
.studio-primary-button { height: 36px; padding: 0 13px; border: 0; border-radius: 10px; background: var(--night); color: #fff; display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700; cursor: pointer; box-shadow: 0 6px 14px rgba(12,12,17,.15); }
.studio-primary-button svg { width: 14px; height: 14px; }

.studio-layout { height: calc(100vh - var(--studio-topbar)); display: grid; grid-template-columns: var(--left-panel) minmax(0, 1fr) var(--right-panel); }
.ai-panel, .inspector-panel { min-height: 0; overflow-y: auto; background: #f8f8fa; scrollbar-width: thin; scrollbar-color: #c9c9d0 transparent; }
.ai-panel { border-right: 1px solid #d8d8df; padding: 22px 18px 28px; }
.inspector-panel { border-left: 1px solid #d8d8df; padding: 20px 17px 28px; }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.panel-heading h2 { margin: 5px 0 0; font-size: 1.05rem; letter-spacing: -.025em; }
.panel-kicker { color: #96949f; font-size: .56rem; }
.sol-badge { padding: 5px 7px; border: 1px solid rgba(120,92,255,.18); border-radius: 7px; color: var(--violet-deep); background: var(--violet-soft); font-size: .54rem; font-weight: 800; letter-spacing: .08em; }
.panel-intro { margin: 14px 0 16px; color: #85848d; font-size: .68rem; line-height: 1.58; }
.revision-composer { padding: 9px; border: 1px solid #dcdce2; border-radius: 15px; background: #fff; box-shadow: 0 8px 24px rgba(28,26,46,.05); }
.revision-composer textarea { width: 100%; min-height: 104px; padding: 7px; border: 0; outline: 0; resize: vertical; color: var(--ink); background: transparent; font-size: .72rem; line-height: 1.55; }
.revision-composer textarea::placeholder { color: #a5a3ac; }
.revision-context { margin: 2px 4px 8px; padding: 7px 8px; border-radius: 8px; color: var(--violet-deep); background: var(--violet-soft); display: flex; align-items: center; justify-content: space-between; font-size: .58rem; font-weight: 700; }
.revision-context button { border: 0; background: transparent; color: inherit; cursor: pointer; }
.revision-submit { width: 100%; height: 38px; border: 0; border-radius: 10px; background: var(--night); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .68rem; font-weight: 700; cursor: pointer; }
.revision-submit:hover { background: #191922; }
.revision-submit:disabled { opacity: .55; cursor: wait; }
.revision-submit svg { width: 15px; height: 15px; color: #b7a9ff; }
.quick-revisions { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.quick-revisions button { padding: 6px 8px; border: 1px solid #dcdce2; border-radius: 8px; background: #fff; color: #777680; font-size: .56rem; font-weight: 700; cursor: pointer; }
.quick-revisions button:hover { border-color: rgba(120,92,255,.28); color: var(--violet-deep); background: var(--violet-soft); }
.revision-progress { margin-top: 14px; padding: 12px; border: 1px solid rgba(120,92,255,.2); border-radius: 13px; background: linear-gradient(145deg, #f1eeff, #fff); }
.revision-progress-head { display: flex; align-items: center; gap: 10px; }
.revision-progress-head div { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.revision-progress-head strong { font-size: .65rem; }
.revision-progress-head small { color: #827f91; font-size: .55rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.revision-spinner { width: 20px; height: 20px; border: 2px solid rgba(120,92,255,.18); border-top-color: var(--violet); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.mini-progress { height: 3px; margin-top: 10px; border-radius: 99px; background: rgba(120,92,255,.13); overflow: hidden; }
.mini-progress span { display: block; width: 0%; height: 100%; background: var(--violet); border-radius: inherit; transition: width 280ms linear, background-color 220ms ease; }
.revision-progress-meta { margin-top: 7px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #827f91; font-size: .53rem; }
.revision-progress-meta strong { color: var(--violet-deep); font-size: .56rem; font-variant-numeric: tabular-nums; }
.revision-progress.is-error .mini-progress span { background: #d85757; }
.revision-progress.is-error .revision-progress-meta strong { color: #b33f3f; }
.revision-progress.is-complete .mini-progress span { background: var(--success); }
.revision-progress.is-complete .revision-progress-meta strong { color: #297a53; }
.panel-section { margin-top: 22px; padding-top: 18px; border-top: 1px solid #dfdfe4; }
.panel-section-head { display: flex; align-items: center; justify-content: space-between; }
.panel-section-head h3 { margin: 0; font-size: .7rem; }
.panel-section-head span { min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: #e9e9ee; display: grid; place-items: center; color: #777680; font-size: .55rem; font-weight: 700; }
.version-list { margin-top: 10px; display: grid; gap: 7px; }
.version-item { width: 100%; padding: 10px; border: 1px solid transparent; border-radius: 11px; background: transparent; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; text-align: left; cursor: pointer; }
.version-item:hover { background: #eeeeF2; }
.version-item.is-current { border-color: rgba(120,92,255,.18); background: var(--violet-soft); }
.version-dot { width: 23px; height: 23px; border-radius: 8px; display: grid; place-items: center; background: #e5e5eb; color: #777680; font-size: .58rem; font-weight: 800; }
.version-item.is-current .version-dot { background: var(--violet); color: #fff; }
.version-meta { min-width: 0; }
.version-meta strong { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: .63rem; }
.version-meta small { display: block; margin-top: 2px; color: #98969f; font-size: .52rem; }
.version-current { color: var(--violet); font-size: .5rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.brief-details { margin-top: 22px; padding-top: 16px; border-top: 1px solid #dfdfe4; }
.brief-details summary { color: #66656e; font-size: .65rem; font-weight: 700; cursor: pointer; }
.brief-details p { color: #898791; font-size: .61rem; line-height: 1.55; white-space: pre-wrap; }

.canvas-area { min-width: 0; min-height: 0; background: #e6e6eb; position: relative; display: grid; grid-template-rows: 40px minmax(0,1fr); }
.canvas-toolbar { padding: 0 14px; border-bottom: 1px solid #d5d5dc; background: rgba(242,242,245,.92); display: flex; align-items: center; justify-content: space-between; }
.canvas-status { display: flex; align-items: center; gap: 7px; color: #7a7982; font-size: .58rem; font-weight: 600; }
.canvas-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.zoom-control { height: 27px; padding: 0 3px; border: 1px solid #d5d5db; border-radius: 8px; background: #fff; display: flex; align-items: center; }
.zoom-control button { width: 25px; height: 23px; border: 0; background: transparent; color: #777680; cursor: pointer; }
.zoom-control span { min-width: 42px; text-align: center; color: #6f6e77; font-size: .56rem; font-weight: 700; }
.canvas-scroll { min-height: 0; overflow: auto; padding: 28px; display: flex; align-items: flex-start; justify-content: center; scrollbar-width: thin; scrollbar-color: #b9b9c1 transparent; }
.canvas-device { width: min(100%, 1440px); min-width: 320px; border: 1px solid #cfcfd6; border-radius: 12px; background: #fff; box-shadow: 0 20px 50px rgba(23,22,35,.13); overflow: hidden; transform-origin: top center; transition: width 280ms ease, transform 200ms ease; }
.canvas-device.is-tablet { width: 768px; }
.canvas-device.is-mobile { width: 390px; }
.browser-chrome { height: 34px; padding: 0 10px; border-bottom: 1px solid #dedee3; background: #f5f5f7; display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #c7c7cc; }
.browser-dots i:first-child { background: #ff7068; }
.browser-dots i:nth-child(2) { background: #f3c754; }
.browser-dots i:nth-child(3) { background: #62c96f; }
.browser-url { justify-self: center; min-width: 190px; height: 22px; padding: 0 10px; border: 1px solid #dedee3; border-radius: 7px; color: #88878f; background: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .52rem; }
.browser-url i { width: 5px; height: 5px; border-radius: 50%; background: var(--success); }
.browser-action { justify-self: end; color: #9998a0; font-size: .6rem; letter-spacing: 2px; }
.iframe-wrap { position: relative; height: calc(100vh - var(--studio-topbar) - 40px - 34px - 58px); min-height: 520px; background: #fff; }
.website-ready .iframe-wrap { background: #fff; }
#website-preview { display: block; width: 100%; height: 100%; border: 0; background: #fff; }
.canvas-empty { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 15px; color: #9998a0; background: #fff; }
.canvas-empty p { margin: 0; font-size: .7rem; }
.empty-orb { width: 58px; height: 58px; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #fff, #cbbdff 26%, #7b5fff 65%, #3e229b); box-shadow: 0 14px 32px rgba(95,67,219,.28); }
.edit-hint { position: absolute; left: 50%; bottom: 20px; z-index: 8; transform: translateX(-50%); max-width: calc(100% - 40px); padding: 10px 12px; border: 1px solid rgba(120,92,255,.24); border-radius: 11px; color: #5f5875; background: rgba(246,243,255,.94); box-shadow: 0 12px 30px rgba(39,30,81,.14); backdrop-filter: blur(12px); display: flex; align-items: center; gap: 8px; font-size: .62rem; font-weight: 600; }
.edit-hint > span { color: var(--violet); }
.edit-hint button { border: 0; background: transparent; color: #8c879b; cursor: pointer; }

.inspector-empty { min-height: calc(100vh - var(--studio-topbar) - 60px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.inspector-empty-icon { width: 54px; height: 54px; border: 1px solid #dcdce2; border-radius: 16px; color: #8a8893; background: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(24,22,45,.05); }
.inspector-empty-icon svg { width: 22px; height: 22px; }
.inspector-empty h2 { margin: 16px 0 7px; font-size: .86rem; }
.inspector-empty p { max-width: 210px; margin: 0; color: #94929c; font-size: .64rem; line-height: 1.55; }
.inspector-empty button { margin-top: 15px; height: 33px; padding: 0 12px; border: 1px solid #d8d8df; border-radius: 9px; background: #fff; font-size: .62rem; font-weight: 700; cursor: pointer; }
.inspector-heading { align-items: center; }
.selection-breadcrumb { width: 100%; margin-top: 12px; padding: 9px 10px; border: 1px solid #dcdce2; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.selection-breadcrumb span { max-width: 175px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #8c8a94; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .54rem; }
.selection-breadcrumb strong { color: var(--violet-deep); font-size: .53rem; }
.inspector-group { margin-top: 18px; padding-top: 17px; border-top: 1px solid #dedee4; }
.inspector-group-title { margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.inspector-group-title h3 { margin: 0; font-size: .68rem; }
.inspector-group-title span { color: var(--success); font-size: .5rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.field-label { color: #87858f; font-size: .55rem; font-weight: 700; }
.inspector-textarea, .inspector-input, .inspector-select { width: 100%; border: 1px solid #d9d9df; border-radius: 9px; color: var(--ink); background: #fff; outline: none; font-size: .63rem; }
.inspector-textarea { min-height: 92px; margin-top: 6px; padding: 9px; resize: vertical; line-height: 1.5; }
.inspector-input, .inspector-select { height: 35px; padding: 0 9px; }
.inspector-textarea:focus, .inspector-input:focus, .inspector-select:focus { border-color: rgba(120,92,255,.48); box-shadow: 0 0 0 3px rgba(120,92,255,.08); }
.field-stack { display: grid; gap: 6px; }
.field-stack + .field-stack { margin-top: 10px; }
.field-grid { display: grid; gap: 9px; }
.field-grid.two-col { grid-template-columns: 1fr 1fr; }
.color-field { height: 35px; padding: 0 8px; border: 1px solid #d9d9df; border-radius: 9px; background: #fff; display: flex; align-items: center; gap: 7px; }
.color-field input { width: 20px; height: 20px; padding: 0; border: 0; border-radius: 6px; background: transparent; cursor: pointer; }
.color-field input::-webkit-color-swatch-wrapper { padding: 0; }
.color-field input::-webkit-color-swatch { border: 1px solid rgba(0,0,0,.1); border-radius: 5px; }
.color-field b { color: #77757f; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .52rem; font-weight: 600; }
.range-field { margin-top: 12px; display: grid; gap: 8px; }
.range-field > span { display: flex; align-items: center; justify-content: space-between; }
.range-field b, .range-field output { color: #87858f; font-size: .55rem; font-weight: 700; }
.range-field output { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.range-field input { width: 100%; accent-color: var(--violet); }
.alignment-control { margin-top: 12px; padding: 3px; border: 1px solid #d9d9df; border-radius: 9px; background: #fff; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.alignment-control button { height: 28px; border: 0; border-radius: 6px; background: transparent; color: #77757f; display: grid; place-items: center; cursor: pointer; }
.alignment-control button:hover, .alignment-control button.is-active { color: var(--violet-deep); background: var(--violet-soft); }
.alignment-control svg { width: 14px; height: 14px; }
.structure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.structure-grid button { min-height: 38px; padding: 0 8px; border: 1px solid #d9d9df; border-radius: 9px; background: #fff; color: #696871; display: flex; align-items: center; gap: 7px; font-size: .58rem; font-weight: 700; cursor: pointer; }
.structure-grid button:hover { border-color: rgba(120,92,255,.3); color: var(--violet-deep); background: var(--violet-soft); }
.structure-grid .danger-action:hover { border-color: rgba(217,74,88,.25); color: var(--danger); background: #fff0f2; }
.ask-about-selection { width: 100%; min-height: 42px; margin-top: 16px; border: 1px solid rgba(120,92,255,.22); border-radius: 10px; background: linear-gradient(145deg, #f1edff, #fff); color: var(--violet-deep); display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .61rem; font-weight: 700; cursor: pointer; }
.media-picker-tabs{display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:3px;border:1px solid #d9d9df;border-radius:9px;background:#fff}.media-picker-tabs button{height:29px;border:0;border-radius:6px;color:#77757f;background:transparent;font-size:.57rem;font-weight:750;cursor:pointer}.media-picker-tabs button.is-active{color:var(--violet-deep);background:var(--violet-soft)}
.media-search-form{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:6px;margin-top:9px}.media-search-form input{min-width:0;height:34px;padding:0 9px;border:1px solid #d9d9df;border-radius:9px;color:var(--ink);background:#fff;font-size:.6rem;outline:none}.media-search-form input:focus{border-color:rgba(120,92,255,.48);box-shadow:0 0 0 3px rgba(120,92,255,.08)}.media-search-form button,.media-load-more{min-height:34px;padding:0 10px;border:1px solid rgba(120,92,255,.22);border-radius:9px;color:var(--violet-deep);background:var(--violet-soft);font-size:.56rem;font-weight:750;cursor:pointer}
.media-picker-status{margin:9px 0 0;color:#85838d;font-size:.54rem;line-height:1.45}.media-results{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-top:9px}.media-result{position:relative;min-width:0;padding:0;border:1px solid #d9d9df;border-radius:10px;overflow:hidden;color:inherit;background:#111;cursor:pointer;text-align:left}.media-result img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.media-result.is-video img{aspect-ratio:16/10}.media-result small{display:block;padding:6px 7px;overflow:hidden;color:#dfe4dc;background:#111;font-size:.48rem;white-space:nowrap;text-overflow:ellipsis}.media-result::after{content:"Use";position:absolute;top:5px;right:5px;padding:4px 6px;border-radius:999px;color:#111;background:var(--conversion-lime);font-size:.45rem;font-weight:800;opacity:0;transform:translateY(-2px);transition:opacity .16s ease,transform .16s ease}.media-result:hover::after,.media-result:focus-visible::after{opacity:1;transform:none}.media-load-more{width:100%;margin-top:8px}.media-picker-footer{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:10px}.media-picker-footer a{max-width:145px;color:#8c8994;font-size:.48rem;line-height:1.35}.media-picker-footer button{padding:0;border:0;color:var(--violet-deep);background:transparent;font-size:.5rem;font-weight:750;cursor:pointer}

.toast { position: fixed; z-index: 999; left: 50%; bottom: 24px; transform: translateX(-50%); padding: 10px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; color: #fff; background: rgba(12,12,17,.93); box-shadow: 0 14px 35px rgba(0,0,0,.24); font-size: .66rem; font-weight: 700; backdrop-filter: blur(14px); }

@media (max-width: 1180px) {
  :root { --left-panel: 280px; --right-panel: 280px; }
  .studio-topbar { grid-template-columns: minmax(245px,1fr) auto auto auto minmax(250px,1fr); }
  .studio-text-button { display: none; }
  .hero { grid-template-columns: 1fr 470px; gap: 42px; }
  .hero-stage { transform: scale(.9); transform-origin: center; }
  .proof-strip { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .landing-nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-copy { max-width: 760px; }
  .hero-stage { min-height: 560px; width: 580px; max-width: 100%; margin: -20px auto 0; }
  .proof-strip { padding: 40px; }
  .studio-topbar { grid-template-columns: 1fr auto auto; }
  .history-controls, .device-switcher { display: none; }
  .studio-layout { grid-template-columns: 260px minmax(0,1fr); }
  .inspector-panel { position: fixed; z-index: 30; right: 0; top: var(--studio-topbar); bottom: 0; width: 290px; transform: translateX(100%); box-shadow: -20px 0 50px rgba(0,0,0,.14); transition: transform 220ms ease; }
  body.inspector-open .inspector-panel { transform: translateX(0); }
}

@media (max-width: 760px) {
  .landing-header { width: min(100% - 30px, var(--content)); min-height: 72px; }
  .hero { width: min(100% - 30px, var(--content)); min-height: auto; padding: 55px 0 78px; }
  .hero h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .hero-lede { font-size: .94rem; }
  .composer textarea { min-height: 175px; padding: 17px 14px 10px; }
  .composer-footer { align-items: flex-end; }
  .composer-submit { gap: 8px; }
  .character-count { display: none; }
  .hero-stage { width: 490px; min-height: 490px; transform: scale(.82); margin: -55px auto -50px; }
  .proof-strip { width: min(100% - 30px, var(--content)); padding: 32px 22px; margin-bottom: 55px; }
  .proof-steps { grid-template-columns: 1fr; }
  .proof-steps article { min-height: 160px; }
  .landing-footer { width: min(100% - 30px, var(--content)); flex-wrap: wrap; gap: 15px; padding: 28px 0; }
  .generation-overlay { padding: 12px; }
  .generation-shell { min-height: calc(100vh - 24px); padding: 32px 22px; border-radius: 24px; grid-template-columns: 1fr; gap: 24px; overflow-y: auto; }
  .generation-visual { min-height: 210px; }
  .generation-orb { width: 130px; height: 130px; }
  .generation-copy h2 { font-size: 3.2rem; }
  .mastered-prompt-card { grid-template-columns: 1fr; gap: 12px; }
  .studio-topbar { height: 58px; grid-template-columns: 1fr auto; padding: 0 8px; }
  :root { --studio-topbar: 58px; }
  .studio-divider, .project-identity span, .studio-brand, .mode-switcher { display: none; }
  .studio-actions .studio-icon-button { display: none; }
  .studio-primary-button { padding: 0 10px; }
  .studio-layout { grid-template-columns: 1fr; }
  .ai-panel { position: fixed; z-index: 29; left: 0; top: var(--studio-topbar); bottom: 0; width: min(310px, 88vw); transform: translateX(-100%); box-shadow: 20px 0 50px rgba(0,0,0,.14); transition: transform 220ms ease; }
  body.ai-panel-open .ai-panel { transform: translateX(0); }
  .canvas-toolbar { padding: 0 10px; }
  .canvas-scroll { padding: 15px; }
  .browser-url { min-width: 130px; }
  .iframe-wrap { height: calc(100vh - var(--studio-topbar) - 40px - 34px - 32px); }
  .edit-hint { bottom: 9px; }
  .inspector-panel { top: var(--studio-topbar); width: min(300px, 90vw); }
}

@media (max-width: 520px) {
  .hero-kicker { font-size: .58rem; }
  .hero h1 { font-size: 4rem; }
  .hero-stage { width: 430px; transform: scale(.69); margin: -92px auto -100px; }
  .prompt-suggestions { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .prompt-suggestions::-webkit-scrollbar { display: none; }
  .suggestion { flex: 0 0 auto; }
  .hero-footnote { display: none; }
  .proof-copy h2 { font-size: 2.8rem; }
  .landing-footer > p { width: 100%; order: 3; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Pricing */
.pricing-page { min-height: 100vh; }
.landing-nav .is-current { color: var(--ink); }
.pricing-main { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0 110px; }
.pricing-hero { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.pricing-hero .hero-kicker { justify-content: center; }
.pricing-hero h1 { margin: 18px 0 24px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(4rem, 8vw, 7.4rem); font-weight: 400; line-height: .82; letter-spacing: -.055em; }
.pricing-hero h1 em { color: var(--violet); font-weight: 400; }
.pricing-hero > p:last-child { max-width: 620px; margin: 0 auto; color: var(--muted); line-height: 1.7; }
.pricing-grid-new { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pricing-card-new { position: relative; overflow: hidden; min-height: 620px; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.78); box-shadow: 0 22px 60px rgba(28,25,63,.08); display: flex; flex-direction: column; }
.pricing-card-new.featured-plan { color: #fff; border-color: rgba(255,255,255,.1); background: var(--night); box-shadow: 0 34px 90px rgba(12,12,17,.24); }
.featured-glow { position: absolute; width: 360px; height: 360px; right: -170px; top: -170px; border-radius: 50%; background: var(--violet); filter: blur(50px); opacity: .28; }
.pricing-card-top { position: relative; display: flex; align-items: center; justify-content: space-between; }
.plan-chip { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--violet-deep); background: var(--violet-soft); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.featured-plan .plan-chip { border-color: rgba(255,255,255,.13); color: #c8bcff; background: rgba(120,92,255,.14); }
.plan-number { color: #aaa8b1; font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.pricing-card-new h2 { position: relative; margin: 70px 0 14px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(2.7rem, 4vw, 4.2rem); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.pricing-card-new > p { position: relative; max-width: 470px; margin: 0; color: #777680; font-size: .84rem; line-height: 1.65; }
.featured-plan > p { color: #aaa9b4; }
.price-line { position: relative; margin: 34px 0 25px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.featured-plan .price-line { border-color: rgba(255,255,255,.1); }
.price-line strong { font-size: 1.15rem; }
.price-line span { color: #96949e; font-size: .65rem; }
.pricing-card-new ul { position: relative; margin: 0 0 32px; padding: 0; list-style: none; display: grid; gap: 13px; }
.pricing-card-new li { color: #696872; font-size: .73rem; }
.featured-plan li { color: #bab9c3; }
.pricing-card-new li span { margin-right: 9px; color: var(--violet); }
.pricing-button { position: relative; min-height: 48px; margin-top: auto; padding: 0 16px; border-radius: 13px; display: flex; align-items: center; justify-content: space-between; font-size: .75rem; font-weight: 700; }
.pricing-button.light { border: 1px solid var(--line); background: #fff; }
.pricing-button.dark { color: var(--ink); background: #fff; }
.pricing-button:hover span { transform: translateX(4px); }
.pricing-button span { transition: transform 160ms ease; }
@media (max-width: 820px) { .pricing-grid-new { grid-template-columns: 1fr; } .pricing-main { width: min(100% - 30px, 1120px); padding-top: 55px; } .pricing-card-new { min-height: 570px; padding: 27px; } }
.mobile-panel-controls { display: none; align-items: center; gap: 2px; }
@media (max-width: 760px) {
  .mobile-panel-controls { display: flex; justify-self: end; }
  .studio-topbar { grid-template-columns: minmax(0,1fr) auto auto; }
}

/* Initial generation lives inside Live Studio */
body.is-generating .canvas-status-dot,
body.is-generating .project-identity span i {
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(120, 92, 255, .11);
  animation: buildPulse 1.8s ease-in-out infinite;
}

body.is-generating .studio-topbar button:disabled,
body.is-generating .ai-panel button:disabled,
body.is-generating .ai-panel textarea:disabled,
body.is-generating .inspector-panel button:disabled {
  cursor: not-allowed;
  opacity: .42;
}

@keyframes buildPulse {
  50% { box-shadow: 0 0 0 9px rgba(120, 92, 255, 0); }
}

.initial-build-panel {
  margin: 14px 0 16px;
  padding: 13px;
  border: 1px solid rgba(120, 92, 255, .2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(120, 92, 255, .13), transparent 46%),
    linear-gradient(145deg, #f3f0ff, #fff);
}
.initial-build-panel-head { display: flex; align-items: center; gap: 10px; }
.initial-build-panel-head > div { min-width: 0; display: grid; gap: 2px; }
.initial-build-panel-head strong { font-size: .66rem; }
.initial-build-panel-head small { color: #817e8e; font-size: .55rem; }
.initial-build-panel p { margin: 10px 0 0; color: #777484; font-size: .58rem; line-height: 1.55; }
.initial-build-mini-progress { margin-top: 11px; }

.canvas-empty {
  padding: clamp(18px, 3vw, 42px);
  display: block;
  overflow: auto;
  color: inherit;
  background:
    linear-gradient(rgba(16, 16, 22, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 22, .025) 1px, transparent 1px),
    #f7f7f9;
  background-size: 26px 26px;
}
.canvas-idle-state {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 15px;
  color: #9998a0;
}
.canvas-idle-state p { margin: 0; font-size: .7rem; }

.studio-build-monitor {
  width: min(1050px, 100%);
  min-height: min(690px, calc(100vh - var(--studio-topbar) - 155px));
  margin: 0 auto;
  border: 1px solid #d7d7de;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 80px rgba(31, 27, 66, .13);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}
.build-monitor-main {
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid #e0e0e6;
  display: flex;
  flex-direction: column;
}
.build-monitor-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}
.build-live-pill {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(120,92,255,.18);
  border-radius: 999px;
  color: var(--violet-deep);
  background: var(--violet-soft);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.build-live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(120,92,255,.1);
  animation: buildPulse 1.8s ease-in-out infinite;
}
.build-monitor-heading h2 {
  max-width: 620px;
  margin: 24px 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.045em;
}
.build-monitor-heading p {
  max-width: 640px;
  margin: 0;
  color: #777580;
  font-size: .76rem;
  line-height: 1.7;
}
.build-orb {
  position: relative;
  width: clamp(72px, 8vw, 112px);
  aspect-ratio: 1;
  margin-top: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 23%, #fff 0 5%, #ddd3ff 19%, #8268ff 52%, #392087 100%);
  box-shadow: 0 24px 55px rgba(105, 77, 226, .34), inset -13px -18px 35px rgba(30, 10, 92, .23);
  animation: buildOrbFloat 4.5s ease-in-out infinite;
}
.build-orb span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(120,92,255,.26);
  border-radius: 50%;
  animation: buildOrbWave 3s ease-out infinite;
}
.build-orb span:nth-child(2) { animation-delay: 1s; }
.build-orb span:nth-child(3) { animation-delay: 2s; }
@keyframes buildOrbFloat { 50% { transform: translateY(-8px) rotate(4deg); } }
@keyframes buildOrbWave { 75%,100% { transform: scale(1.42); opacity: 0; } }

.build-progress-block { margin-top: clamp(30px, 5vh, 58px); }
.build-progress-meta { margin-bottom: 10px; display: flex; justify-content: space-between; gap: 20px; }
.build-progress-meta strong { font-size: .66rem; }
.build-progress-meta span { color: #92909b; font-size: .59rem; font-variant-numeric: tabular-nums; }
.build-progress-track {
  height: 6px;
  border-radius: 99px;
  background: #e9e8ee;
  overflow: hidden;
}
.build-progress-track span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6b4df5, #a38dff 65%, #d9ff6f);
  box-shadow: 0 0 18px rgba(120,92,255,.28);
  transition: width 900ms cubic-bezier(.2,.75,.2,1);
}
.build-live-note {
  min-height: 38px;
  margin: 12px 0 0;
  color: #85838e;
  font-size: .62rem;
  line-height: 1.55;
}

.build-step-list {
  margin: auto 0 0;
  padding: clamp(30px, 5vh, 62px) 0 0;
  list-style: none;
  display: grid;
}
.build-step-list li {
  position: relative;
  min-height: 72px;
  padding: 0 32px 18px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  color: #aaa8b1;
}
.build-step-list li::before {
  position: absolute;
  left: 13px;
  top: 19px;
  bottom: -9px;
  width: 1px;
  content: "";
  background: #dedde4;
}
.build-step-list li:last-child::before { display: none; }
.build-step-list li > span {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #d8d7de;
  border-radius: 9px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: .5rem;
  font-weight: 800;
}
.build-step-list li div { display: grid; gap: 4px; }
.build-step-list li strong { color: #77757f; font-size: .68rem; }
.build-step-list li small { color: #a2a0aa; font-size: .56rem; line-height: 1.45; }
.build-step-list li > i {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #dbdae1;
}
.build-step-list li.is-active { color: var(--violet); }
.build-step-list li.is-active > span { color: #fff; border-color: var(--violet); background: var(--violet); box-shadow: 0 0 0 5px rgba(120,92,255,.1); }
.build-step-list li.is-active strong { color: var(--ink); }
.build-step-list li.is-active > i { background: var(--violet); animation: buildPulse 1.8s ease-in-out infinite; }
.build-step-list li.is-done > span { color: #fff; border-color: var(--success); background: var(--success); }
.build-step-list li.is-done > span { font-size: 0; }
.build-step-list li.is-done > span::after { content: "✓"; font-size: .7rem; }
.build-step-list li.is-done strong { color: #64626b; }
.build-step-list li.is-done > i { background: var(--success); }

.build-monitor-detail {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(circle at 100% 0, rgba(120,92,255,.12), transparent 40%),
    #f5f4f8;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.build-connection-card,
.build-activity-card,
.build-brief-card {
  border: 1px solid #dddce4;
  border-radius: 15px;
  background: rgba(255,255,255,.86);
}
.build-connection-card {
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.build-connection-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(31,157,112,.1);
  animation: buildPulse 2s ease-in-out infinite;
}
.build-connection-card div { display: grid; gap: 2px; }
.build-connection-card strong { font-size: .64rem; }
.build-connection-card small { color: #8c8995; font-size: .54rem; }
.build-activity-card { padding: 15px; }
.build-detail-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.build-detail-heading strong { font-size: .64rem; }
.build-detail-heading span { color: #92909a; font-size: .52rem; font-variant-numeric: tabular-nums; }
.build-activity-list { margin-top: 13px; display: grid; gap: 3px; }
.build-activity-list > div {
  min-height: 50px;
  padding: 8px 6px;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 9px;
  opacity: .58;
}
.build-activity-list > div i {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: #c8c6cf;
}
.build-activity-list > div p { margin: 0; display: grid; gap: 3px; }
.build-activity-list > div strong { font-size: .59rem; }
.build-activity-list > div span { color: #8f8c98; font-size: .53rem; line-height: 1.45; }
.build-activity-list > div.is-current { opacity: 1; }
.build-activity-list > div.is-current i { background: var(--violet); box-shadow: 0 0 0 4px rgba(120,92,255,.1); animation: buildPulse 1.8s ease-in-out infinite; }
.build-activity-list > div.is-done { opacity: .78; }
.build-activity-list > div.is-done i { background: var(--success); }
.build-brief-card { margin-top: auto; overflow: hidden; }
.build-brief-card summary { padding: 13px 15px; color: #686670; font-size: .61rem; font-weight: 800; cursor: pointer; }
.build-brief-card p { max-height: 210px; margin: 0; padding: 0 15px 13px; overflow-y: auto; color: #85828e; font-size: .56rem; line-height: 1.6; white-space: pre-wrap; }
.build-brief-card .text-button { margin: 0 15px 14px; }

@media (max-width: 1180px) {
  .studio-build-monitor { grid-template-columns: minmax(0, 1fr) 280px; }
  .build-monitor-main { padding: 34px; }
  .build-monitor-heading h2 { font-size: 3.6rem; }
}

@media (max-width: 900px) {
  .studio-build-monitor { grid-template-columns: 1fr; }
  .build-monitor-main { border-right: 0; border-bottom: 1px solid #e0e0e6; }
  .build-monitor-detail { min-height: 270px; }
  .build-brief-card { margin-top: 0; }
}

@media (max-width: 760px) {
  .canvas-empty { padding: 12px; }
  .studio-build-monitor { min-height: auto; border-radius: 16px; }
  .build-monitor-main { padding: 25px 21px; }
  .build-monitor-heading { grid-template-columns: 1fr; }
  .build-monitor-heading h2 { margin-top: 18px; font-size: 3.05rem; }
  .build-orb { display: none; }
  .build-progress-meta { align-items: flex-start; flex-direction: column; gap: 4px; }
  .build-step-list li { padding-right: 0; }
  .build-monitor-detail { padding: 20px; }
}

.build-step-list li.is-skipped > span { color: #8c8a94; border-style: dashed; background: #f1f0f4; }
.build-step-list li.is-skipped strong { color: #8c8a94; }
.build-step-list li.is-skipped > i { background: #c9c7d0; }
.build-step-list li.is-skipped div small::after { content: " No repair was required."; color: var(--success); }
body.is-generating .ai-panel .revision-composer,
body.is-generating .ai-panel .quick-revisions,
body.is-generating .ai-panel .versions-section,
body.is-generating .ai-panel .brief-details {
  display: none;
}


/* v2.9.2 — fast static-first homepage generation with recoverable file streaming */
.build-progress-track.is-indeterminate span,
.initial-build-mini-progress.is-indeterminate span {
  width: 38% !important;
  animation: tayloIndeterminate 1.35s cubic-bezier(.55,.1,.25,.9) infinite;
  transition: none;
}
@keyframes tayloIndeterminate {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(360%); }
}
.cancel-build-button {
  width: 100%;
  min-height: 40px;
  margin: 12px 0 14px;
  border: 1px solid #dedce6;
  border-radius: 11px;
  color: #66636f;
  background: #fff;
  cursor: pointer;
  font-size: .62rem;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.cancel-build-button:hover {
  color: #7a2140;
  border-color: #d9aabd;
  background: #fff8fb;
}


.build-progress-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

#build-progress-percent {
  min-width: 37px;
  padding: 3px 7px;
  border: 1px solid rgba(120, 92, 255, .22);
  border-radius: 999px;
  color: #6e54e8;
  background: rgba(120, 92, 255, .07);
  font-size: .54rem;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.build-code-window {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #dedde5;
  border-radius: 13px;
  background: #111016;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.build-code-window::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34px;
  pointer-events: none;
  content: "";
  background: linear-gradient(transparent, #111016);
}

.build-code-window-head {
  height: 34px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  color: #aaa6b7;
  background: rgba(255, 255, 255, .025);
  font-size: .49rem;
  letter-spacing: .03em;
}

.build-code-window-head span { display: inline-flex; align-items: center; gap: 7px; }
.build-code-window-head i { width: 6px; height: 6px; border-radius: 50%; background: #72e2ad; box-shadow: 0 0 12px rgba(114, 226, 173, .72); }
.build-code-window-head small { color: #6f6b79; font-size: .44rem; }

#build-code-stream {
  height: 116px;
  margin: 0;
  padding: 13px 14px 25px;
  overflow: hidden;
  color: #c9c3ff;
  font: 500 .52rem/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
  word-break: break-word;
  opacity: .92;
}

@media (max-width: 700px) {
  .build-progress-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  #build-code-stream { height: 104px; }
}


/* v2.9 timeline density */
.build-step-list li { min-height: 64px; }
.build-step-list li small { line-height: 1.35; }

/* ========================================================================== 
   v2.9.5 — Motion + Brand Assets generation upgrade
   ========================================================================== */
:root {
  --ink: #f5f7f2;
  --ink-soft: #c9cdc5;
  --muted: #878d87;
  --paper: #07080b;
  --surface: #101218;
  --surface-soft: #0c0e13;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);
  --violet: #8b5cff;
  --violet-deep: #a78bff;
  --violet-soft: rgba(139,92,255,.14);
  --lime: #a6ff5f;
  --lime-soft: rgba(166,255,95,.12);
  --night: #08090d;
  --night-soft: #11131a;
  --danger: #ff627f;
  --success: #77f5bd;
  --shadow-lg: 0 50px 150px rgba(0,0,0,.55);
  --shadow-md: 0 26px 70px rgba(0,0,0,.34);
  --content: 1280px;
}

html { background: #07080b; }
body {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 5%, rgba(139,92,255,.13), transparent 32%),
    radial-gradient(circle at 90% 16%, rgba(166,255,95,.075), transparent 28%),
    #07080b;
  font-family: "DM Sans", system-ui, sans-serif;
}
body.landing-mode, body.pricing-page { min-height: 100vh; }
body::selection { background: rgba(166,255,95,.25); color: #fff; }

.page-noise {
  z-index: 0;
  opacity: .11;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.aurora { z-index: 0; filter: blur(130px); opacity: .17; }
.aurora-a { width: 820px; height: 820px; top: -430px; left: -360px; background: #7a43ff; }
.aurora-b { width: 760px; height: 760px; top: 12%; right: -430px; background: #6cff63; opacity: .085; }
.neon-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(calc(var(--pointer-x, 50vw) - 50%), calc(var(--pointer-y, 50vh) - 50%), 0);
  background: radial-gradient(circle, rgba(139,92,255,.12), rgba(166,255,95,.035) 42%, transparent 70%);
  filter: blur(12px);
  transition: opacity .35s ease;
}
body.has-pointer .cursor-glow { opacity: 1; }
#landing-main, .landing-header, .landing-footer, .pricing-main { position: relative; z-index: 3; }

.brand { color: #f8faf5; font-family: "Space Grotesk", sans-serif; letter-spacing: -.06em; }
.brand-glyph { width: 28px; height: 28px; }
.brand-glyph i { border-radius: 3px; background: linear-gradient(135deg, var(--lime), var(--violet)); box-shadow: 0 0 22px rgba(139,92,255,.3); }
.brand-glyph i:nth-child(1) { opacity: .35; }
.brand-glyph i:nth-child(2) { opacity: .66; }
.brand-glyph i:nth-child(3) { background: #f7f9f4; box-shadow: none; }

.landing-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: min(var(--content), calc(100% - 44px));
  min-height: 78px;
  transition: min-height .25s ease, background .25s ease, border-color .25s ease;
}
.landing-header::before {
  content: "";
  position: absolute;
  inset: 10px -16px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(7,8,11,0);
  backdrop-filter: blur(0);
  transition: .25s ease;
}
.landing-header.is-scrolled::before {
  border-color: rgba(255,255,255,.075);
  background: rgba(10,11,15,.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}
.landing-nav { gap: 28px; color: #9a9f9a; font-size: .84rem; }
.landing-nav a:hover, .landing-nav .is-current { color: #fff; }
.nav-cta {
  color: #e9ffdc !important;
  border: 1px solid rgba(166,255,95,.22);
  background: rgba(166,255,95,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 0 28px rgba(166,255,95,.05);
}
.nav-cta:hover { border-color: rgba(166,255,95,.5); background: rgba(166,255,95,.12); }

.hero {
  width: min(var(--content), calc(100% - 44px));
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 7vw, 94px) 0 116px;
  grid-template-columns: minmax(0, 1fr) minmax(470px, .92fr);
  gap: clamp(64px, 7vw, 112px);
}
.hero-copy { z-index: 7; }
.hero-kicker, .section-kicker, .panel-kicker {
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: .68rem;
  letter-spacing: .16em;
}
.hero-kicker { margin-bottom: 24px; }
.live-dot { background: var(--lime); box-shadow: 0 0 0 6px rgba(166,255,95,.08), 0 0 18px rgba(166,255,95,.6); }
@keyframes livePulse { 50% { box-shadow: 0 0 0 11px rgba(166,255,95,0), 0 0 26px rgba(166,255,95,.82); } }
.hero h1 {
  max-width: 760px;
  color: #f8faf6;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.3rem, 7.2vw, 7.7rem);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.07em;
}
.hero h1 span {
  display: block;
  width: fit-content;
  padding-right: .08em;
  color: transparent;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.045em;
  background: linear-gradient(100deg, #a6ff5f 3%, #d8ffbd 35%, #9f7aff 76%, #cbbdff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(139,92,255,.12));
}
.hero-lede {
  max-width: 650px;
  margin: 30px 0 32px;
  color: #9da39d;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.composer {
  padding: 8px;
  border-color: rgba(255,255,255,.11);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(18,20,27,.92), rgba(10,11,16,.94));
  box-shadow: 0 30px 90px rgba(0,0,0,.38), 0 0 0 1px rgba(139,92,255,.03), inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter: blur(28px);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.composer::before {
  background: linear-gradient(120deg, rgba(166,255,95,.55), transparent 28%, transparent 64%, rgba(139,92,255,.72));
  opacity: .42;
}
.composer.is-focused { border-color: rgba(139,92,255,.28); box-shadow: 0 34px 110px rgba(0,0,0,.45), 0 0 42px rgba(139,92,255,.1), inset 0 1px 0 rgba(255,255,255,.07); transform: translateY(-2px); }
.composer-glow { inset: 12% 5%; background: linear-gradient(90deg, rgba(166,255,95,.08), rgba(139,92,255,.14)); filter: blur(48px); }
.composer-label-row { padding: 12px 16px 2px; display: flex; align-items: center; justify-content: space-between; color: #e5e9e1; font-size: .62rem; font-weight: 700; }
.composer-label-row span { display: inline-flex; align-items: center; gap: 8px; }
.composer-label-row i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px rgba(166,255,95,.8); }
.composer-label-row small { color: #666d67; font-size: .55rem; font-weight: 600; }
.composer textarea { min-height: 148px; color: #f2f5ef; padding: 18px 16px 12px; caret-color: var(--lime); }
.composer textarea::placeholder { color: #686e69; }
.prompt-suggestions { padding: 2px 11px 15px; }
.suggestion {
  color: #8d938d;
  border-color: rgba(255,255,255,.075);
  background: rgba(255,255,255,.025);
}
.suggestion:hover { color: #e8ffda; border-color: rgba(166,255,95,.25); background: rgba(166,255,95,.075); box-shadow: 0 0 22px rgba(166,255,95,.04); }
.composer-footer { border-color: rgba(255,255,255,.07); }
.round-tool { color: #8f958f; border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.035); }
.round-tool:hover, .round-tool.is-listening { color: var(--lime); border-color: rgba(166,255,95,.3); background: rgba(166,255,95,.08); }
.voice-status, .character-count { color: #656b66; }
.generate-button {
  min-height: 46px;
  color: #071006;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(110deg, #a6ff5f, #c9ff9f 42%, #9d7aff 115%);
  box-shadow: 0 12px 36px rgba(166,255,95,.16), inset 0 1px 0 rgba(255,255,255,.45);
  overflow: hidden;
}
.generate-button::before { content: ""; position: absolute; inset: 0; transform: translateX(-110%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent); transition: transform .65s ease; }
.generate-button:hover::before { transform: translateX(110%); }
.generate-button:hover { box-shadow: 0 16px 48px rgba(166,255,95,.23), 0 0 36px rgba(139,92,255,.11); }
.generate-button .button-orb { background: rgba(7,8,11,.18); }
.hero-footnote { color: #717771; gap: 22px; }
.hero-footnote span { display: inline-flex; align-items: center; gap: 7px; }
.hero-footnote i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px rgba(166,255,95,.6); }
.continue-project { color: #dce1da; border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.035); }
.continue-project:hover { border-color: rgba(139,92,255,.3); background: rgba(139,92,255,.08); }
.continue-project small { color: #6f756f; }
.continue-icon { color: var(--lime); background: rgba(166,255,95,.09); }

.hero-stage { min-height: 650px; perspective: 1400px; isolation: isolate; }
.stage-halo { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.halo-green { width: 260px; height: 260px; right: 5%; top: 18%; background: rgba(166,255,95,.16); animation: haloDrift 8s ease-in-out infinite; }
.halo-purple { width: 330px; height: 330px; left: 6%; bottom: 5%; background: rgba(139,92,255,.22); animation: haloDrift 10s ease-in-out -3s infinite reverse; }
@keyframes haloDrift { 50% { transform: translate3d(18px,-24px,0) scale(1.08); opacity: .72; } }
.stage-ring { position: absolute; border: 1px solid rgba(255,255,255,.075); border-radius: 50%; animation: orbitSpin 24s linear infinite; }
.ring-a { width: 540px; height: 540px; left: 7%; top: 8%; }
.ring-b { width: 430px; height: 430px; right: -2%; bottom: 1%; border-style: dashed; animation-duration: 34s; animation-direction: reverse; }
.stage-console {
  position: absolute;
  left: 3%; top: 14%;
  width: min(565px, 92%);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(12,14,19,.88);
  box-shadow: 0 50px 110px rgba(0,0,0,.55), 0 0 0 1px rgba(139,92,255,.04), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform .18s ease-out, border-color .25s ease;
}
.stage-console:hover { border-color: rgba(166,255,95,.24); }
.stage-console-top { height: 45px; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; gap: 14px; color: #69706b; font-size: .56rem; }
.console-dots { display: flex; gap: 5px; }
.console-dots i { width: 6px; height: 6px; border-radius: 50%; background: #3a3e43; }
.console-dots i:nth-child(1) { background: #ff6c7b; }.console-dots i:nth-child(2) { background: #ffd66c; }.console-dots i:nth-child(3) { background: #8bf59a; }
.console-url { flex: 1; height: 25px; padding: 0 10px; border-radius: 7px; background: rgba(255,255,255,.035); display: flex; align-items: center; gap: 6px; }
.console-url i { width: 5px; height: 5px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 10px rgba(139,92,255,.7); }
.console-live { color: var(--lime); font-weight: 800; letter-spacing: .1em; }
.console-live i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(166,255,95,.8); }
.stage-console-body { position: relative; min-height: 385px; padding: 28px; overflow: hidden; background: linear-gradient(135deg, #0d1110, #0b0c12 58%, #161026); }
.stage-console-body::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(90deg, black, transparent 84%); }
.mini-site-nav { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #dfe4dc; font-size: .55rem; letter-spacing: .1em; }
.mini-site-nav span { color: #697069; }
.mini-site-copy { position: relative; z-index: 2; width: 56%; margin-top: 68px; }
.mini-site-copy small { color: var(--lime); font-size: .48rem; letter-spacing: .18em; }
.mini-site-copy h3 { margin: 12px 0 14px; color: #f6f9f3; font-family: "Space Grotesk", sans-serif; font-size: 2.4rem; line-height: .91; letter-spacing: -.06em; }
.mini-site-copy h3 em { color: #b79cff; font-family: "Instrument Serif", serif; font-weight: 400; }
.mini-site-copy p { margin: 0 0 20px; color: #818881; font-size: .62rem; line-height: 1.6; }
.mini-site-copy button { padding: 9px 12px; border: 1px solid rgba(166,255,95,.22); border-radius: 99px; color: #eaffda; background: rgba(166,255,95,.08); font-size: .55rem; }
.mini-site-art { position: absolute; right: 20px; top: 58px; width: 44%; height: 305px; }
.art-glow { position: absolute; width: 180px; height: 180px; right: 5px; top: 15px; border-radius: 50%; background: linear-gradient(135deg, rgba(166,255,95,.5), rgba(139,92,255,.48)); filter: blur(34px); opacity: .56; animation: artGlow 6s ease-in-out infinite; }
@keyframes artGlow { 50% { transform: scale(1.16) translate(-8px,12px); filter: blur(42px); } }
.art-card { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 76px 76px 18px 18px; background: linear-gradient(160deg, rgba(255,255,255,.15), rgba(255,255,255,.025)); box-shadow: 0 28px 60px rgba(0,0,0,.36); }
.art-card-a { width: 132px; height: 242px; right: 20px; top: 18px; transform: rotate(8deg); }
.art-card-b { width: 108px; height: 205px; left: 3px; bottom: 8px; transform: rotate(-10deg); background: linear-gradient(160deg, rgba(166,255,95,.16), rgba(139,92,255,.08)); }
.art-line { position: absolute; width: 170px; height: 170px; right: 0; bottom: 2px; border: 1px dashed rgba(166,255,95,.25); border-radius: 50%; animation: orbitSpin 18s linear infinite; }
.floating-tool { position: absolute; z-index: 8; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(15,17,23,.9); box-shadow: 0 30px 70px rgba(0,0,0,.46); backdrop-filter: blur(22px); transition: transform .18s ease-out, border-color .25s ease; transform-style: preserve-3d; }
.floating-tool:hover { border-color: rgba(139,92,255,.34); }
.tool-prompt { width: 260px; right: -1%; bottom: 7%; padding: 16px; display: grid; grid-template-columns: auto 1fr; gap: 11px; }
.tool-prompt .tool-icon { width: 31px; height: 31px; border-radius: 10px; color: #071006; background: var(--lime); display: grid; place-items: center; box-shadow: 0 0 22px rgba(166,255,95,.2); }
.tool-prompt small, .floating-tool > small { color: #737a74; font-size: .48rem; text-transform: uppercase; letter-spacing: .12em; }
.tool-prompt p { margin: 4px 0 0; color: #d7dcd5; font-size: .62rem; line-height: 1.5; }
.tool-progress { grid-column: 1 / -1; height: 3px; border-radius: 99px; background: rgba(255,255,255,.06); overflow: hidden; }
.tool-progress b { display: block; width: 62%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--lime), var(--violet)); animation: promptProgress 2.6s ease-in-out infinite alternate; }
@keyframes promptProgress { to { width: 92%; } }
.tool-inspector { width: 194px; right: -1%; top: 8%; padding: 14px; }
.tool-title { margin-bottom: 14px; display: flex; justify-content: space-between; color: #e8ece5; font-size: .6rem; font-weight: 700; }
.tool-title i { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 12px rgba(139,92,255,.8); }
.neon-swatches { margin: 7px 0 13px; display: flex; gap: 6px; }
.neon-swatches i { width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.09); border-radius: 8px; background: #a6ff5f; }
.neon-swatches i:nth-child(2) { background: #8b5cff; }.neon-swatches i:nth-child(3) { background: #eff5ec; }.neon-swatches i:nth-child(4) { background: #11141a; }
.neon-slider { height: 4px; margin-top: 9px; border-radius: 99px; background: rgba(255,255,255,.08); }
.neon-slider b { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--lime)); }
.stage-selection { position: absolute; z-index: 10; left: 9%; top: 30%; width: 255px; height: 112px; border: 1px solid rgba(166,255,95,.72); border-radius: 3px; pointer-events: none; box-shadow: 0 0 22px rgba(166,255,95,.06); animation: selectionFloat 4.5s ease-in-out infinite; }
@keyframes selectionFloat { 50% { transform: translateY(-5px); } }
.stage-selection span { position: absolute; left: -1px; top: -25px; padding: 5px 8px; color: #061005; border-radius: 5px 5px 5px 0; background: var(--lime); font-size: .48rem; font-weight: 800; }
.stage-selection i { position: absolute; width: 6px; height: 6px; border: 1px solid #071006; background: var(--lime); }
.stage-selection i:nth-of-type(1) { left: -4px; top: -4px; }.stage-selection i:nth-of-type(2) { right: -4px; top: -4px; }.stage-selection i:nth-of-type(3) { left: -4px; bottom: -4px; }.stage-selection i:nth-of-type(4) { right: -4px; bottom: -4px; }
.stage-status { position: absolute; z-index: 11; left: 0; bottom: 9%; padding: 9px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 99px; color: #d9ded6; background: rgba(10,12,16,.88); box-shadow: 0 15px 40px rgba(0,0,0,.35); display: flex; align-items: center; gap: 7px; font-size: .55rem; backdrop-filter: blur(15px); }
.stage-status span { color: var(--lime); }
.tilt-shine { position: absolute; inset: -1px; pointer-events: none; opacity: 0; background: radial-gradient(circle at var(--shine-x,50%) var(--shine-y,50%), rgba(255,255,255,.12), transparent 34%); transition: opacity .2s ease; }
[data-tilt]:hover .tilt-shine { opacity: 1; }

.signal-rail { position: relative; z-index: 4; overflow: hidden; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.018); }
.signal-track { width: max-content; display: flex; align-items: center; gap: 21px; color: #666c67; font-family: "Space Grotesk", sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .15em; animation: signalScroll 34s linear infinite; }
.signal-track i { color: var(--lime); font-style: normal; text-shadow: 0 0 12px rgba(166,255,95,.6); }
@keyframes signalScroll { to { transform: translateX(-50%); } }

.proof-strip {
  width: min(var(--content), calc(100% - 44px));
  margin: 108px auto 0;
  padding: clamp(42px, 5vw, 68px);
  color: #f3f6f1;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(17,19,25,.94), rgba(8,9,13,.97));
  box-shadow: 0 40px 120px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
}
.proof-strip::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(circle at 6% 0%, rgba(139,92,255,.16), transparent 28%), radial-gradient(circle at 90% 100%, rgba(166,255,95,.08), transparent 28%); }
.proof-copy { position: relative; }
.proof-copy h2, .experience-heading h2, .final-cta h2 { font-family: "Space Grotesk", sans-serif; font-weight: 500; letter-spacing: -.055em; }
.proof-copy h2 { color: #f6f8f4; font-size: clamp(3rem, 5vw, 5.6rem); line-height: .96; }
.proof-copy > p:last-child { margin: 18px 0 0; color: #7f867f; line-height: 1.65; }
.proof-steps article { min-height: 242px; border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.025); box-shadow: inset 0 1px 0 rgba(255,255,255,.03); transform-style: preserve-3d; transition: transform .18s ease-out, border-color .25s ease, background .25s ease; }
.proof-steps article:hover { border-color: rgba(139,92,255,.28); background: rgba(139,92,255,.045); }
.proof-steps article > span { color: var(--lime); }
.step-orb { width: 56px; height: 56px; margin-top: 28px; border-radius: 50%; background: radial-gradient(circle at 34% 28%, #e9ffda, #a6ff5f 17%, #5140ab 55%, #12131a 75%); box-shadow: 0 16px 35px rgba(139,92,255,.18), inset -10px -12px 22px rgba(0,0,0,.25); animation: stepFloat 4.5s ease-in-out infinite; }
.proof-steps article:nth-child(2) .step-orb { animation-delay: -1.5s; background: radial-gradient(circle at 34% 28%, #efeaff, #9b74ff 20%, #3f7b48 58%, #12131a 78%); }
.proof-steps article:nth-child(3) .step-orb { animation-delay: -3s; }
@keyframes stepFloat { 50% { transform: translateY(-7px) rotate(7deg); } }
.proof-steps h3 { color: #f4f7f2; font-family: "Space Grotesk", sans-serif; font-size: 1.12rem; }
.proof-steps p { color: #858b86; }

.experience-section { width: min(var(--content), calc(100% - 44px)); margin: 138px auto 0; }
.experience-heading { max-width: 820px; }
.experience-heading h2 { margin: 17px 0 22px; color: #f7f9f5; font-size: clamp(3.3rem, 6vw, 6.4rem); line-height: .9; }
.experience-heading > p:last-child { max-width: 640px; margin: 0; color: #858c86; line-height: 1.7; }
.experience-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.experience-card { position: relative; min-height: 400px; overflow: hidden; padding: 28px; border: 1px solid rgba(255,255,255,.085); border-radius: 26px; background: linear-gradient(145deg, rgba(17,19,25,.94), rgba(10,11,16,.96)); box-shadow: 0 26px 72px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.035); transform-style: preserve-3d; transition: transform .18s ease-out, border-color .25s ease; }
.experience-card:hover { border-color: rgba(166,255,95,.19); }
.experience-large { grid-row: span 2; min-height: 816px; }
.experience-wide { min-height: 350px; }
.experience-card-copy { position: relative; z-index: 3; max-width: 460px; }
.experience-card-copy > span { color: var(--lime); font-size: .55rem; font-weight: 800; letter-spacing: .14em; }
.experience-card-copy h3 { margin: 13px 0 12px; color: #f1f4ef; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.65rem, 3vw, 2.8rem); line-height: 1; letter-spacing: -.045em; }
.experience-card-copy p { margin: 0; color: #7f8680; font-size: .82rem; line-height: 1.65; }
.canvas-demo { position: absolute; left: 28px; right: 28px; bottom: -10px; height: 515px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 20px 20px 0 0; background: #0c0e12; box-shadow: 0 35px 80px rgba(0,0,0,.42); }
.canvas-demo-top { height: 39px; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.07); color: #626963; display: flex; align-items: center; gap: 5px; font-size: .5rem; }
.canvas-demo-top i { width: 5px; height: 5px; border-radius: 50%; background: #43484a; }
.canvas-demo-top span { margin-left: 8px; }
.canvas-demo-page { position: absolute; inset: 39px 0 0; padding: 29px; color: #0b0d0c; background: linear-gradient(135deg, #dce9cf, #a4c8a7 58%, #8e75bc); }
.canvas-demo-page::after { content: ""; position: absolute; right: -30px; bottom: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(18,32,24,.48); box-shadow: 0 0 90px rgba(139,92,255,.22); }
.canvas-demo-page b { font-size: .58rem; letter-spacing: .15em; }
.canvas-demo-page h4 { position: relative; z-index: 2; margin: 130px 0 0; font-family: "Space Grotesk", sans-serif; font-size: 3.2rem; line-height: .88; letter-spacing: -.065em; }
.canvas-demo-page > span { position: absolute; right: 28px; top: 42px; width: 164px; height: 220px; border-radius: 86px 86px 14px 14px; background: linear-gradient(165deg, rgba(255,255,255,.5), rgba(27,49,34,.35)); box-shadow: 0 25px 55px rgba(12,20,14,.25); }
.canvas-demo-selection { position: absolute; left: 23px; bottom: 43px; width: 265px; height: 95px; border: 1px solid #8757ff; z-index: 4; }
.canvas-demo-selection small { position: absolute; left: -1px; top: -20px; padding: 4px 6px; color: #fff; background: #8757ff; font-size: .44rem; }
.canvas-demo-selection i { position: absolute; width: 5px; height: 5px; background: #fff; border: 1px solid #8757ff; }
.canvas-demo-selection i:nth-of-type(1){left:-3px;top:-3px}.canvas-demo-selection i:nth-of-type(2){right:-3px;top:-3px}.canvas-demo-selection i:nth-of-type(3){left:-3px;bottom:-3px}.canvas-demo-selection i:nth-of-type(4){right:-3px;bottom:-3px}
.control-demo { position: absolute; left: 28px; right: 28px; bottom: 26px; display: grid; gap: 10px; }
.control-demo > div { min-height: 54px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; background: rgba(255,255,255,.025); display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 10px; }
.control-demo small { color: #6f766f; font-size: .52rem; }
.control-demo b { color: #a8aea8; font-size: .52rem; font-weight: 600; }
.control-color { width: 30px; height: 30px; border-radius: 9px; background: var(--lime); box-shadow: 0 0 18px rgba(166,255,95,.2); }
.control-slider { height: 4px; border-radius: 99px; background: rgba(255,255,255,.08); }
.control-slider i { display: block; position: relative; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--lime)); }
.control-slider i::after { content:""; position:absolute; right:-4px; top:-3px; width:10px; height:10px; border-radius:50%; background:#fff; box-shadow:0 0 12px rgba(166,255,95,.4); }
.radius-chips { display: flex; gap: 7px; }.radius-chips i { width: 28px; height: 25px; border: 1px solid rgba(255,255,255,.12); background: rgba(139,92,255,.1); }.radius-chips i:nth-child(1){border-radius:3px}.radius-chips i:nth-child(2){border-radius:9px}.radius-chips i:nth-child(3){border-radius:99px}
.revision-demo { position: absolute; left: 28px; right: 28px; bottom: 26px; padding: 15px; border: 1px solid rgba(139,92,255,.18); border-radius: 15px; background: rgba(139,92,255,.07); display: grid; grid-template-columns: auto 1fr; gap: 10px; }
.revision-demo > span { width: 28px; height: 28px; border-radius: 9px; color: #071006; background: var(--lime); display: grid; place-items: center; }
.revision-demo p { margin: 0; color: #d6dad4; font-size: .68rem; line-height: 1.5; }
.revision-demo > i { grid-column: 1 / -1; height: 3px; border-radius: 99px; background: rgba(255,255,255,.07); overflow: hidden; }.revision-demo > i b { display:block;width:70%;height:100%;background:linear-gradient(90deg,var(--lime),var(--violet));animation:promptProgress 2.4s ease-in-out infinite alternate; }
.device-demo { position: absolute; right: 34px; bottom: 24px; width: 285px; height: 165px; }
.device-demo span { position: absolute; bottom: 0; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(145deg, #171a21, #0b0c11); box-shadow: 0 18px 45px rgba(0,0,0,.36); }
.device-desktop { right: 0; width: 210px; height: 130px; border-radius: 12px; }.device-desktop::after { content:"";position:absolute;inset:10px;border-radius:7px;background:linear-gradient(135deg,rgba(166,255,95,.24),rgba(139,92,255,.26)); }
.device-tablet { left: 25px; width: 90px; height: 125px; border-radius: 11px; z-index:2; }.device-tablet::after{content:"";position:absolute;inset:7px;border-radius:6px;background:linear-gradient(160deg,rgba(139,92,255,.28),rgba(166,255,95,.15));}
.device-phone { left: 0; width: 52px; height: 100px; border-radius: 12px; z-index:3; }.device-phone::after{content:"";position:absolute;inset:6px;border-radius:7px;background:linear-gradient(160deg,rgba(166,255,95,.25),rgba(139,92,255,.18));}
.device-beam { position:absolute;left:5px;right:0;bottom:-16px;height:30px;background:radial-gradient(ellipse,rgba(139,92,255,.24),transparent 66%);filter:blur(10px); }

.final-cta { position: relative; width: min(var(--content), calc(100% - 44px)); margin: 138px auto 92px; padding: clamp(70px, 9vw, 125px) 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 36px; text-align: center; background: linear-gradient(145deg, #11131a, #08090d); box-shadow: 0 42px 130px rgba(0,0,0,.4); }
.final-cta::before { content:"";position:absolute;inset:0;opacity:.45;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:38px 38px;mask-image:radial-gradient(circle at center,black,transparent 78%); }
.final-cta-glow { position:absolute;width:460px;height:460px;left:50%;top:50%;transform:translate(-50%,-50%);border-radius:50%;background:conic-gradient(from 90deg,rgba(166,255,95,.25),rgba(139,92,255,.4),rgba(166,255,95,.25));filter:blur(90px);opacity:.45;animation:orbSpin 18s linear infinite; }
.final-cta > *:not(.final-cta-glow) { position: relative; z-index: 2; }
.final-cta h2 { max-width: 950px; margin: 18px auto; color: #f5f7f3; font-size: clamp(3.2rem, 6.4vw, 7rem); line-height: .9; }
.final-cta > p:not(.section-kicker) { max-width: 600px; margin: 0 auto 30px; color: #888f89; line-height: 1.65; }
.final-cta-button { min-height: 49px; padding: 0 18px; border-radius: 99px; color: #071006; background: var(--lime); box-shadow: 0 14px 45px rgba(166,255,95,.18); display: inline-flex; align-items: center; gap: 20px; font-size: .75rem; font-weight: 800; }
.final-cta-button span { transition: transform .2s ease; }.final-cta-button:hover span{transform:translate(3px,-3px)}

.landing-footer { color: #696f69; border-color: rgba(255,255,255,.075); }
.version-badge { color: #a6adA6; border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.reveal-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

/* Dark pricing */
.pricing-page { background: radial-gradient(circle at 50% -10%, rgba(139,92,255,.17), transparent 34%), #07080b; }
.pricing-main { padding-top: 84px; }
.pricing-hero h1 { color: #f5f8f3; font-family: "Space Grotesk", sans-serif; font-weight: 500; }
.pricing-hero h1 em { color: transparent; font-family: "Instrument Serif", serif; background: linear-gradient(100deg,var(--lime),#b795ff);-webkit-background-clip:text;background-clip:text; }
.pricing-hero > p:last-child { color: #868d87; }
.pricing-card-new { color: #f4f6f2; border-color: rgba(255,255,255,.09); background: linear-gradient(145deg,rgba(17,19,25,.94),rgba(9,10,14,.97)); box-shadow: 0 30px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.035); transition: transform .3s ease,border-color .3s ease; }
.pricing-card-new:hover { transform: translateY(-8px); border-color: rgba(166,255,95,.2); }
.pricing-card-new.featured-plan { border-color: rgba(139,92,255,.28); background: linear-gradient(145deg,#151223,#090a0f); box-shadow: 0 35px 110px rgba(0,0,0,.45),0 0 50px rgba(139,92,255,.08); }
.featured-glow { background: linear-gradient(135deg,var(--violet),var(--lime)); opacity: .22; }
.plan-chip { color: var(--lime); border-color: rgba(166,255,95,.18); background: rgba(166,255,95,.07); }
.featured-plan .plan-chip { color: #c8b8ff; border-color: rgba(139,92,255,.2); background: rgba(139,92,255,.1); }
.plan-number { color: #5e655f; }
.pricing-card-new h2 { color: #f4f7f2; font-family: "Space Grotesk", sans-serif; }
.pricing-card-new > p, .featured-plan > p { color: #838a84; }
.price-line, .featured-plan .price-line { border-color: rgba(255,255,255,.08); }
.price-line span { color: #6f756f; }
.pricing-card-new li, .featured-plan li { color: #919791; }
.pricing-card-new li span { color: var(--lime); }
.pricing-button.light, .pricing-button.dark { color: #071006; border: 0; background: linear-gradient(110deg,var(--lime),#d0ffac); box-shadow: 0 12px 35px rgba(166,255,95,.12); }

/* Dark Live Studio */
body.studio-mode { color: #e7ebe5; background: #07080b; }
.studio { background: #08090d; }
.studio-topbar { border-color: rgba(255,255,255,.08); background: rgba(10,11,15,.94); box-shadow: 0 8px 30px rgba(0,0,0,.22); }
.studio-divider { background: rgba(255,255,255,.08); }
.project-identity strong { color: #e6eae4; }.project-identity span { color: #69706a; }
.studio-icon-button,.device-button { color: #777e78; }
.studio-icon-button:hover,.device-button:hover,.device-button.is-active { color: #f1f4ef; background: rgba(255,255,255,.065); }
.history-controls,.device-switcher { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.mode-switcher { border-color: rgba(255,255,255,.08); background: #07080c; }
.mode-button { color: #6f766f; }.mode-button.is-active { color: #eef2ec; background: #181a21; box-shadow: 0 2px 12px rgba(0,0,0,.3); }
.studio-text-button { color: #7b827c; }.studio-text-button:hover { color: #f1f4ef; background: rgba(255,255,255,.055); }
.studio-primary-button { color: #071006; background: linear-gradient(110deg,var(--lime),#c8ff9b); box-shadow: 0 8px 24px rgba(166,255,95,.13); }
.ai-panel,.inspector-panel { background: #0d0f14; scrollbar-color: #30343a transparent; }
.ai-panel { border-color: rgba(255,255,255,.075); }.inspector-panel { border-color: rgba(255,255,255,.075); }
.panel-heading h2,.inspector-empty h2 { color: #edf1eb; }.panel-kicker { color: #656c66; }
.sol-badge { color: #cbbcff; border-color: rgba(139,92,255,.2); background: rgba(139,92,255,.09); }
.panel-intro { color: #777e78; }
.revision-composer { border-color: rgba(255,255,255,.085); background: #12141a; box-shadow: 0 12px 35px rgba(0,0,0,.23); }
.revision-composer textarea { color: #e9ede7; }.revision-composer textarea::placeholder { color: #5e655f; }
.revision-context { color: #d0c5ff; background: rgba(139,92,255,.1); }
.revision-submit { color: #071006; background: var(--lime); }
.revision-history,.saved-versions,.mastered-prompt-preview { border-color: rgba(255,255,255,.075); }
.revision-item,.saved-version-item { border-color: rgba(255,255,255,.075); background: rgba(255,255,255,.025); }
.canvas-area { background: #08090d; }
.canvas-toolbar { color: #777e78; border-color: rgba(255,255,255,.075); background: #0d0f14; }
.zoom-control { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.zoom-control button { color: #8a918b; }.zoom-control span { color: #777e78; }
.canvas-scroll { background: radial-gradient(circle at 50% 10%, rgba(139,92,255,.07), transparent 36%), #08090d; scrollbar-color: #33363e transparent; }
.canvas-device { border-color: rgba(255,255,255,.12); box-shadow: 0 28px 80px rgba(0,0,0,.48),0 0 0 1px rgba(139,92,255,.03); }
.browser-chrome { color: #777e78; border-color: rgba(255,255,255,.075); background: #11131a; }
.browser-url { color: #6d746e; background: rgba(255,255,255,.035); }
.canvas-empty { color: #777e78; background: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),#0b0c11; background-size: 34px 34px; }
.empty-orb { background: radial-gradient(circle at 32% 25%,#eaffdc 0 4%,var(--lime) 18%,var(--violet) 55%,#221638 100%); box-shadow:0 22px 55px rgba(139,92,255,.22); }
.inspector-empty-icon { color: #7a827b; border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.025); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.inspector-empty p { color: #6f766f; }.inspector-empty button { color: #dfe4dc; border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.035); }
.inspector-group { border-color: rgba(255,255,255,.075); }.inspector-group-title h3 { color: #dce1da; }
.inspector-textarea,.inspector-input,.inspector-select { color: #e5e9e2; border-color: rgba(255,255,255,.09); background: #12141a; }
.media-picker-tabs,.media-search-form input{border-color:rgba(255,255,255,.09);background:#12141a;color:#e5e9e2}.media-picker-tabs button.is-active,.media-search-form button,.media-load-more{color:#dfffc7;background:rgba(166,255,95,.08);border-color:rgba(166,255,95,.16)}.media-picker-footer button{color:#bdf993}
.inspector-textarea:focus,.inspector-input:focus,.inspector-select:focus { border-color: rgba(166,255,95,.32); box-shadow: 0 0 0 3px rgba(166,255,95,.06); }
.field-label,.range-field span,.selection-breadcrumb { color: #7a817b; }
.color-field,.alignment-control,.structure-actions button { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.alignment-control button,.structure-actions button { color: #777e78; }.alignment-control button:hover,.alignment-control button.is-active,.structure-actions button:hover { color: #eff3ec; background: rgba(139,92,255,.1); }
.initial-build-panel { border-color: rgba(139,92,255,.2); background: radial-gradient(circle at 100% 0,rgba(139,92,255,.13),transparent 46%),linear-gradient(145deg,#14111f,#101218); }
.initial-build-panel-head strong { color:#e9ede7; }.initial-build-panel-head small,.initial-build-panel p { color:#777e78; }
.studio-build-monitor { color: #e8ece6; background: radial-gradient(circle at 14% 0,rgba(139,92,255,.12),transparent 35%),#0c0e13; }
.build-monitor-main { border-color: rgba(255,255,255,.075); }
.build-live-pill { color: var(--lime); border-color: rgba(166,255,95,.16); background: rgba(166,255,95,.06); }
.build-monitor-heading h2 { color: #f2f5f0; }.build-monitor-heading p { color:#7a817b; }
.build-progress-track { background: rgba(255,255,255,.065); }.build-progress-track span { background: linear-gradient(90deg,var(--lime),#c7ff9e,var(--violet)); box-shadow:0 0 20px rgba(166,255,95,.18); }
.build-live-note,.build-progress-meta span { color:#6d746e; }
.build-step-list li { border-color: rgba(255,255,255,.06); }.build-step-list li > span { color:#6f766f;border-color:rgba(255,255,255,.1);background:#101218; }
.build-step-list li strong { color:#7c837d; }.build-step-list li small { color:#5f6660; }
.build-step-list li.is-active > span { color:#071006;border-color:var(--lime);background:var(--lime);box-shadow:0 0 0 5px rgba(166,255,95,.07),0 0 20px rgba(166,255,95,.2); }
.build-step-list li.is-active strong { color:#edf1eb; }.build-step-list li.is-active > i { background:var(--lime); }
.build-step-list li.is-done > span { color:#071006;border-color:var(--success);background:var(--success); }.build-step-list li.is-done strong { color:#aab0aa; }
.build-connection-card,.build-activity-card,.build-brief-card { border-color:rgba(255,255,255,.075);background:rgba(255,255,255,.025); }
.build-connection-card strong,.build-detail-heading strong,.build-activity-list > div strong { color:#dce1da; }.build-connection-card small,.build-detail-heading span,.build-activity-list > div span { color:#69706a; }
.build-code-window { border-color: rgba(255,255,255,.085); background:#080a0d; box-shadow:0 18px 55px rgba(0,0,0,.32); }
.build-code-window-head { border-color:rgba(255,255,255,.06);background:#101218;color:#899089; }
.build-code-window pre { color:#91eebd; }
.cancel-build-button { color:#ff9aad;border-color:rgba(255,98,127,.18);background:rgba(255,98,127,.055); }
.error-card { color:#e9ede7;border:1px solid rgba(255,255,255,.09);background:#11131a;box-shadow:0 45px 120px rgba(0,0,0,.5); }.error-card > p:not(.section-kicker){color:#858c86}.secondary-button{color:#e8ece6;border-color:rgba(255,255,255,.09);background:rgba(255,255,255,.035)}
.toast { border-color:rgba(166,255,95,.14);background:rgba(10,12,16,.95);box-shadow:0 18px 55px rgba(0,0,0,.4),0 0 25px rgba(166,255,95,.06); }
.edit-hint { color:#dfe4dc;border-color:rgba(139,92,255,.22);background:rgba(16,14,24,.93); }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0,1fr) 470px; gap: 42px; }
  .hero-stage { transform: scale(.92); transform-origin: center; }
  .proof-strip { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-stage { width: 650px; max-width: 100%; margin: -10px auto 0; }
  .proof-strip { padding: 42px; }
}
@media (max-width: 820px) {
  .experience-grid { grid-template-columns: 1fr; }
  .experience-large { grid-row: auto; min-height: 760px; }
  .device-demo { opacity: .74; }
}
@media (max-width: 760px) {
  .landing-header { width: min(100% - 28px,var(--content)); }
  .landing-header::before { inset: 8px -5px; }
  .hero { width: min(100% - 28px,var(--content)); padding-top: 46px; }
  .hero h1 { font-size: clamp(3.8rem,18vw,6.2rem); }
  .hero-stage { width: 590px; min-height: 560px; transform: scale(.83); margin: -40px auto -45px; }
  .proof-strip,.experience-section,.final-cta { width: min(100% - 28px,var(--content)); }
  .proof-strip { padding: 32px 22px; }
  .experience-section { margin-top: 100px; }
  .experience-card { min-height: 410px; padding: 22px; }
  .experience-large { min-height: 680px; }
  .canvas-demo { left: 20px; right: 20px; height: 430px; }
  .canvas-demo-page h4 { font-size: 2.5rem; }
  .final-cta { margin-top: 100px; padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 3.75rem; }
  .composer-label-row small { display: none; }
  .hero-stage { width: 520px; min-height: 500px; transform: scale(.7); margin: -80px auto -100px; }
  .stage-console { left: 0; width: 520px; }
  .tool-inspector { right: 0; }.tool-prompt { right: -5px; }
  .signal-rail { margin-top: 10px; }
  .proof-copy h2,.experience-heading h2 { font-size: 3rem; }
  .experience-large { min-height: 630px; }
  .canvas-demo-page > span { width: 130px; height: 185px; }
  .canvas-demo-selection { width: 210px; }
  .device-demo { right: -18px; transform: scale(.8); transform-origin: right bottom; }
  .experience-wide .experience-card-copy { max-width: 68%; }
  .landing-footer { width:min(100% - 28px,var(--content)); }
}
@media (hover: none), (pointer: coarse) { .cursor-glow { display:none; } [data-tilt] { transform:none !important; } }
@media (prefers-reduced-motion: reduce) { .reveal-on-scroll { opacity:1; transform:none; } .signal-track { animation:none; } }

/* Mobile intrinsic-size guard */
@media (max-width: 560px) {
  .hero, .hero-copy { min-width: 0; width: min(100% - 28px, var(--content)); }
  .hero-copy { width: 100%; }
  .hero-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 430px;
    margin: -35px 0 -55px;
    overflow: hidden;
    transform: none;
  }
  .stage-console {
    left: 0;
    top: 62px;
    width: 520px;
    transform: scale(.69) rotateY(-5deg) rotateX(2deg);
    transform-origin: left top;
  }
  .tool-inspector { right: -18px; top: 24px; transform: scale(.72); transform-origin: right top; }
  .tool-prompt { right: -18px; bottom: 20px; transform: scale(.76); transform-origin: right bottom; }
  .stage-selection { left: 30px; top: 175px; transform: scale(.7); transform-origin: left top; }
  .stage-status { left: 12px; bottom: 28px; transform: scale(.9); transform-origin: left bottom; }
}


/* ========================================================================== 
   v2.9.9 — compact, fully dark build monitor
   ========================================================================== */
.studio-build-monitor {
  width: min(900px, 100%);
  min-height: 0;
  grid-template-columns: 1fr;
  border-radius: 18px;
}
.build-monitor-main {
  padding: 20px 22px 17px;
  border-right: 0;
  border-bottom: 1px solid rgba(255,255,255,.075);
}
.build-monitor-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.build-monitor-heading > div {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.build-live-pill {
  flex: 0 0 auto;
  padding: 5px 8px;
  font-size: .48rem;
}
.build-monitor-heading h2 {
  max-width: none;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: .96rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.build-monitor-heading p,
.build-orb { display: none; }
.build-progress-block { margin-top: 13px; }
.build-progress-meta {
  margin-bottom: 7px;
  align-items: center;
}
.build-progress-title { gap: 8px; }
.build-progress-meta strong { font-size: .61rem; }
#build-progress-percent {
  min-width: 41px;
  padding: 4px 8px;
  font-size: .61rem;
}
.build-progress-track { height: 7px; }
.build-live-note {
  min-height: 0;
  margin: 7px 0 0;
  overflow: hidden;
  color: #69706a;
  font-size: .51rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.build-code-window {
  margin-top: 10px;
  border-radius: 10px;
}
.build-code-window-head {
  height: 27px;
  padding: 0 10px;
  font-size: .44rem;
}
#build-code-stream {
  height: 66px;
  padding: 9px 11px 15px;
  font-size: .45rem;
  line-height: 1.42;
}
.build-step-list {
  margin: 0;
  padding: 12px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.build-step-list li {
  min-height: 0;
  padding: 7px 8px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.build-step-list li::before,
.build-step-list li > i,
.build-step-list li small { display: none; }
.build-step-list li > span {
  position: static;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  font-size: .43rem;
}
.build-step-list li div { display: block; min-width: 0; }
.build-step-list li strong {
  display: block;
  overflow: hidden;
  font-size: .49rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.build-monitor-detail {
  min-height: 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.build-connection-card {
  flex: 1 1 250px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.build-connection-card strong { font-size: .56rem; }
.build-connection-card small {
  overflow: hidden;
  font-size: .48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.build-activity-card {
  padding: 0;
  border: 0;
  background: transparent;
}
.build-detail-heading,
.build-activity-list { display: none; }
.cancel-build-button {
  width: auto;
  min-height: 31px;
  margin: 0;
  padding: 0 11px;
  border-radius: 9px;
  font-size: .52rem;
}
.build-brief-card {
  width: auto;
  margin: 0;
  padding: 7px 10px;
}
.build-brief-card[open] {
  flex: 1 0 100%;
  order: 3;
}
.build-brief-card summary { font-size: .51rem; }
.build-brief-card p { max-height: 100px; overflow: auto; }

@media (max-width: 760px) {
  .canvas-empty { padding: 8px; }
  .studio-build-monitor { border-radius: 13px; }
  .build-monitor-main { padding: 15px 14px 13px; }
  .build-monitor-heading h2 { font-size: .84rem; }
  .build-progress-meta { flex-direction: row; align-items: center; gap: 10px; }
  .build-live-note { display: none; }
  #build-code-stream { height: 58px; }
  .build-step-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .build-monitor-detail { padding: 9px 12px; }
}


/* ========================================================================== 
   v2.9.9 — keep the entire generation monitor dark
   ========================================================================== */
body.is-generating .iframe-wrap,
body.is-generating .canvas-empty {
  background:
    radial-gradient(circle at 72% 10%, rgba(139,92,255,.08), transparent 36%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    #08090d !important;
  background-size: auto, 34px 34px, 34px 34px, auto !important;
}
.studio-build-monitor {
  border-color: rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 16% 0, rgba(139,92,255,.14), transparent 38%),
    linear-gradient(180deg, #0d0f15, #090b10);
  box-shadow: 0 28px 90px rgba(0,0,0,.52), 0 0 0 1px rgba(139,92,255,.035);
}
.build-monitor-main {
  background: transparent;
}
.build-monitor-detail {
  color: #e8ece6;
  border-top: 1px solid rgba(255,255,255,.075);
  background:
    radial-gradient(circle at 88% 0, rgba(166,255,95,.055), transparent 42%),
    #0a0c11;
}
.build-connection-card,
.build-activity-card,
.build-brief-card {
  background: rgba(255,255,255,.025);
}

/* v3.4 — layered free preview with motion choreography and licensed smart imagery */
body:not(.editing-enabled) .studio-layout {
  grid-template-columns: var(--left-panel) minmax(0, 1fr);
}
body:not(.editing-enabled) .inspector-panel {
  display: none;
}
body:not(.editing-enabled) .studio-topbar {
  grid-template-columns: minmax(310px, 1fr) auto auto minmax(360px, 1fr);
}
body:not(.editing-enabled) .studio-actions {
  grid-column: 4;
  justify-self: end;
}
.make-editable-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(166,255,95,.22);
  border-radius: 10px;
  color: #071006;
  background: linear-gradient(110deg, var(--lime), #c8ff9b);
  box-shadow: 0 8px 24px rgba(166,255,95,.13);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .67rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.make-editable-button:hover { transform: translateY(-1px); box-shadow: 0 11px 30px rgba(166,255,95,.19); }
.make-editable-button svg { width: 14px; height: 14px; }
.make-editable-button:disabled { opacity: .45; cursor: wait; transform: none; }

.canvas-scroll {
  align-items: flex-start;
  justify-content: center;
}
.canvas-device,
.canvas-device.is-desktop {
  width: 1440px;
  min-width: 1440px;
  flex: 0 0 1440px;
}
.canvas-device.is-tablet {
  width: 768px;
  min-width: 768px;
  flex-basis: 768px;
}
.canvas-device.is-mobile {
  width: 390px;
  min-width: 390px;
  flex-basis: 390px;
}
.zoom-control .zoom-fit-button {
  width: auto;
  min-width: 68px;
  padding: 0 7px;
  border-left: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
  border-radius: 0;
}
.zoom-control .zoom-fit-button span {
  min-width: 0;
  font-size: .54rem;
}

@media (max-width: 1180px) {
  body:not(.editing-enabled) .studio-topbar {
    grid-template-columns: minmax(230px, 1fr) auto minmax(300px, 1fr);
  }
  body:not(.editing-enabled) .history-controls { display: none; }
  body:not(.editing-enabled) .studio-actions { grid-column: 3; }
}

@media (max-width: 700px) {
  body:not(.editing-enabled) .studio-topbar {
    grid-template-columns: minmax(0,1fr) auto;
  }
  body:not(.editing-enabled) .studio-actions { grid-column: 2; }
  .make-editable-button { padding: 0 10px; font-size: .6rem; }
  .make-editable-button svg { display: none; }
  .canvas-device,
  .canvas-device.is-desktop { min-width: 1440px; }
}


/* ========================================================================== 
   v4.14 — full-screen depth + preview parity
   ========================================================================== */
:root {
  --studio-topbar: 0px;
  --left-panel: 300px;
}

.studio {
  background: #07080b;
}

.studio-layout,
body:not(.editing-enabled) .studio-layout {
  height: 100vh;
  display: grid;
  grid-template-columns: var(--left-panel) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.ai-panel,
.inspector-panel {
  grid-column: 1;
  grid-row: 1;
  width: var(--left-panel);
  height: 100vh;
  padding: 0 16px 24px;
  border-right: 1px solid rgba(255,255,255,.075);
  border-left: 0;
  background: #0d0f14;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.ai-panel {
  position: relative;
  z-index: 3;
}

.inspector-panel {
  position: relative;
  z-index: 4;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-10px);
}

body:not(.editing-enabled) .inspector-panel {
  display: block;
}

body.inspector-open .ai-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-10px);
}

body.inspector-open .inspector-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.sidebar-studio-shell {
  position: sticky;
  top: 0;
  z-index: 12;
  margin: 0 -16px 19px;
  padding: 12px 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.075);
  background: linear-gradient(180deg, rgba(13,15,20,.99), rgba(13,15,20,.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.sidebar-brand-row,
.sidebar-preview-row,
.sidebar-control-stack,
.sidebar-action-row {
  display: flex;
  align-items: center;
}

.sidebar-brand-row {
  min-height: 42px;
  justify-content: space-between;
}

.sidebar-brand-row .studio-brand-group {
  width: 100%;
  gap: 8px;
}

.sidebar-brand-row .studio-divider {
  display: none;
}

.sidebar-brand-row .studio-brand {
  flex: 0 0 auto;
}

.sidebar-brand-row .project-identity {
  flex: 1;
}

.sidebar-brand-row .project-identity strong {
  max-width: 145px;
}

.sidebar-brand-row .mobile-panel-controls {
  display: none;
}

.sidebar-action-row {
  margin-top: 10px;
}

.sidebar-action-row .studio-actions {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 7px;
}

.sidebar-action-row .make-editable-button,
.sidebar-action-row .studio-primary-button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 38px;
  justify-content: center;
}

.sidebar-action-row .studio-primary-button {
  order: 1;
}

.sidebar-action-row .make-editable-button {
  order: 0;
}

.sidebar-action-row .studio-text-button {
  width: 100%;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.025);
}

.sidebar-action-row #open-preview-button {
  width: 38px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.025);
}

.sidebar-control-stack {
  margin-top: 9px;
  justify-content: space-between;
  gap: 7px;
  flex-wrap: wrap;
}

.sidebar-control-stack .history-controls,
.sidebar-control-stack .device-switcher,
.sidebar-control-stack .mode-switcher {
  flex: 0 0 auto;
}

.sidebar-control-stack .mode-switcher {
  width: 100%;
  margin-top: 1px;
}

.sidebar-control-stack .mode-button {
  flex: 1;
  justify-content: center;
}

.sidebar-preview-row {
  min-height: 34px;
  margin-top: 9px;
  justify-content: space-between;
  gap: 8px;
}

.sidebar-preview-row .canvas-status {
  min-width: 0;
  flex: 1;
}

.sidebar-preview-row .canvas-status span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-preview-row .zoom-control {
  flex: 0 0 auto;
}

.canvas-area {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  height: 100vh;
  display: block;
  overflow: hidden;
  background: #08090d;
}

.canvas-scroll {
  width: 100%;
  height: 100vh;
  min-height: 0;
  padding: 0;
  overflow: auto;
  align-items: flex-start;
  justify-content: center;
  background: #08090d;
}

.canvas-device,
.canvas-device.is-desktop,
.canvas-device.is-tablet,
.canvas-device.is-mobile {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform-origin: top center;
}

.browser-chrome {
  display: none;
}

.iframe-wrap {
  height: 100vh;
  min-height: 100vh;
}

#website-preview {
  width: 100%;
  height: 100%;
  display: block;
}

.canvas-empty {
  min-height: 100vh;
}

.edit-hint {
  left: calc(var(--left-panel) + 18px);
  right: auto;
  bottom: 18px;
  max-width: min(520px, calc(100vw - var(--left-panel) - 36px));
}

.inspector-panel .inspector-empty {
  min-height: calc(100vh - 60px);
}

@media (max-width: 980px) {
  :root { --left-panel: 270px; }
  .studio-layout,
  body:not(.editing-enabled) .studio-layout {
    grid-template-columns: var(--left-panel) minmax(0, 1fr);
  }
  .ai-panel,
  .inspector-panel {
    width: var(--left-panel);
  }
}

@media (max-width: 700px) {
  :root { --left-panel: 252px; }
  .sidebar-studio-shell { padding-left: 12px; padding-right: 12px; }
  .ai-panel,
  .inspector-panel { padding-left: 12px; padding-right: 12px; }
  .sidebar-brand-row .project-identity strong { max-width: 112px; }
}


/* ========================================================================== 
   v4.14 — deterministic fit + isolated preview parity
   ========================================================================== */
.canvas-scroll.is-fit-zoom {
  overflow-x: hidden;
}
.canvas-device,
.canvas-device.is-desktop,
.canvas-device.is-tablet,
.canvas-device.is-mobile {
  transition: none;
  contain: layout paint;
}
#website-preview {
  color-scheme: normal;
}


/* ========================================================================== 
   v4.14 — centered landing creation experience
   The studio/editor layout below the landing page remains unchanged.
   ========================================================================== */
body.landing-mode { overflow-x: hidden; }
body.landing-mode #landing-main { overflow: clip; }
body.landing-mode .hero.hero-centered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 32px, 1540px);
  min-height: calc(100svh - 78px);
  padding: clamp(64px, 9vh, 112px) 0 clamp(86px, 10vh, 128px);
  isolation: isolate;
}
body.landing-mode .hero-copy-centered {
  position: relative;
  z-index: 12;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}
body.landing-mode .hero-copy-centered .hero-kicker {
  justify-content: center;
  margin: 0 auto 24px;
}
body.landing-mode .hero-copy-centered h1 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(4.25rem, 8.2vw, 8.7rem);
  line-height: .86;
}
body.landing-mode .hero-copy-centered h1 span {
  width: auto;
  display: block;
  padding: 0 .08em .06em;
}
body.landing-mode .hero-copy-centered .hero-lede {
  max-width: 760px;
  margin: 30px auto 34px;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
}
body.landing-mode .composer-centered {
  position: relative;
  z-index: 15;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: left;
  border-radius: 29px;
  box-shadow: 0 48px 145px rgba(0,0,0,.52), 0 0 0 1px rgba(139,92,255,.035), inset 0 1px 0 rgba(255,255,255,.07);
}
body.landing-mode .composer-centered textarea {
  min-height: 154px;
  font-size: 1.03rem;
  line-height: 1.65;
  resize: none;
}
body.landing-mode .composer-centered.is-dragging {
  border-color: rgba(166,255,95,.48);
  box-shadow: 0 48px 145px rgba(0,0,0,.52), 0 0 55px rgba(166,255,95,.13), inset 0 1px 0 rgba(255,255,255,.08);
}
body.landing-mode .composer-centered.is-dragging::after {
  content: "Drop images or video here";
  position: absolute;
  inset: 8px;
  z-index: 20;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(166,255,95,.45);
  border-radius: 21px;
  color: #eaffdf;
  background: rgba(8,12,9,.88);
  backdrop-filter: blur(18px);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.landing-mode .composer-tools { min-width: 0; }
body.landing-mode .upload-tool { color: #dce5d7; }
body.landing-mode .upload-tool:hover,
body.landing-mode .upload-tool.has-media {
  color: #071006;
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 25px rgba(166,255,95,.22);
}
body.landing-mode .upload-status { color: #7d857d; font-size: .62rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.landing-mode .attachment-tray {
  position: relative;
  z-index: 3;
  margin: 0 10px 10px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}
body.landing-mode .attachment-tray[hidden] { display: none; }
body.landing-mode .attachment-tray-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 2px 9px;
  color: #cfd5ce;
  font-size: .62rem;
  font-weight: 700;
}
body.landing-mode .attachment-tray-head small { color: #6b726c; font-size: .55rem; font-weight: 600; }
body.landing-mode .attachment-list {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 1px 1px 3px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.14) transparent;
}
body.landing-mode .attachment-item {
  position: relative;
  flex: 0 0 96px;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: #0b0d11;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
body.landing-mode .attachment-item img,
body.landing-mode .attachment-item video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .8; }
body.landing-mode .attachment-item::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(5,6,8,.78), transparent 58%); }
body.landing-mode .attachment-item span {
  position: absolute;
  z-index: 2;
  left: 7px;
  right: 24px;
  bottom: 6px;
  overflow: hidden;
  color: #eff3ec;
  font-size: .51rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.landing-mode .attachment-remove {
  position: absolute;
  z-index: 3;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(5,6,8,.72);
  backdrop-filter: blur(8px);
  font-size: .8rem;
  line-height: 1;
}
body.landing-mode .attachment-remove:hover { background: rgba(255,80,110,.85); border-color: rgba(255,255,255,.25); }
body.landing-mode .prompt-suggestions-centered {
  justify-content: center;
  width: min(860px, 100%);
  margin: 17px auto 0;
  padding: 0;
}
body.landing-mode .hero-footnote-centered { justify-content: center; margin-top: 20px; }
body.landing-mode .continue-project { margin: 20px auto 0; text-align: left; }

body.landing-mode .creation-field {
  position: absolute;
  inset: -2% -3% 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1400px;
  transform-style: preserve-3d;
}
body.landing-mode .creation-field::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(1050px, 82vw);
  aspect-ratio: 1.9;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,255,.16), rgba(166,255,95,.04) 42%, transparent 72%);
  filter: blur(24px);
  animation: creationBreathe 7s ease-in-out infinite;
}
body.landing-mode .creation-orbit {
  position: absolute;
  left: 50%;
  top: 46%;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
body.landing-mode .creation-orbit-a { width: min(1120px, 82vw); aspect-ratio: 1.95; animation: creationOrbit 34s linear infinite; }
body.landing-mode .creation-orbit-b { width: min(1380px, 96vw); aspect-ratio: 2.15; border-style: dashed; opacity: .62; animation: creationOrbit 48s linear infinite reverse; }
body.landing-mode .creation-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px rgba(166,255,95,.7); }
body.landing-mode .creation-orbit i:nth-child(1) { left: 11%; top: 26%; }
body.landing-mode .creation-orbit i:nth-child(2) { right: 14%; top: 19%; background: #9f7aff; box-shadow: 0 0 18px rgba(159,122,255,.7); }
body.landing-mode .creation-orbit i:nth-child(3) { right: 24%; bottom: 10%; }
body.landing-mode .creation-orbit i:nth-child(4) { left: 27%; bottom: 6%; background: #9f7aff; }
body.landing-mode .creation-beam { position: absolute; width: 420px; height: 1px; opacity: .48; background: linear-gradient(90deg, transparent, rgba(166,255,95,.65), transparent); filter: blur(.2px); }
body.landing-mode .creation-beam-a { left: 4%; top: 32%; transform: rotate(-19deg); animation: beamSweep 8s ease-in-out infinite; }
body.landing-mode .creation-beam-b { right: 2%; bottom: 27%; transform: rotate(17deg); animation: beamSweep 10s ease-in-out -3s infinite reverse; background: linear-gradient(90deg,transparent,rgba(139,92,255,.75),transparent); }
body.landing-mode .inspiration-card {
  position: absolute;
  width: 178px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 19px;
  color: #e8ece5;
  background: linear-gradient(145deg, rgba(20,22,29,.72), rgba(9,10,14,.78));
  box-shadow: 0 28px 80px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  opacity: .76;
  transform: translate3d(var(--landing-x,0),var(--landing-y,0),0) rotate(var(--card-rotate,0deg));
  transition: transform .2s ease-out;
  animation: cardFloat 7s ease-in-out infinite;
}
body.landing-mode .inspiration-card small { display: block; margin: 9px 3px 3px; color: #717871; font-size: .48rem; font-weight: 800; letter-spacing: .13em; }
body.landing-mode .inspiration-card strong { display: block; margin: 0 3px 2px; font-size: .65rem; font-weight: 700; }
body.landing-mode .inspiration-image { left: 2%; top: 15%; --card-rotate:-5deg; }
body.landing-mode .inspiration-motion { right: 2%; top: 17%; --card-rotate:5deg; animation-delay:-2.2s; }
body.landing-mode .inspiration-layout { left: 4%; bottom: 12%; --card-rotate:4deg; animation-delay:-4s; }
body.landing-mode .inspiration-media { right: 5%; bottom: 11%; --card-rotate:-4deg; animation-delay:-1.1s; }
body.landing-mode .inspiration-photo { position: relative; height: 92px; overflow: hidden; border-radius: 12px; background: linear-gradient(135deg,#17111e,#493263 52%,#a6ff5f); }
body.landing-mode .inspiration-photo::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 70% 28%,rgba(255,255,255,.42),transparent 18%),linear-gradient(to top,rgba(6,7,10,.76),transparent); }
body.landing-mode .inspiration-photo span { position:absolute; left:17px; bottom:0; width:52px; height:67px; border-radius:38px 38px 5px 5px; background:linear-gradient(160deg,rgba(255,255,255,.56),rgba(18,12,25,.35)); transform:rotate(8deg); }
body.landing-mode .inspiration-photo i { position:absolute; right:15px; bottom:14px; width:63px; height:2px; background:rgba(255,255,255,.72); box-shadow:0 8px rgba(255,255,255,.28),0 16px rgba(255,255,255,.14); }
body.landing-mode .motion-lines { height:92px; display:flex; align-items:center; justify-content:center; gap:8px; border-radius:12px; background:radial-gradient(circle,rgba(139,92,255,.16),transparent 68%),#0c0e13; }
body.landing-mode .motion-lines i { width:8px; border-radius:99px; background:linear-gradient(to top,var(--lime),#a17aff); animation:waveBars 1.35s ease-in-out infinite; }
body.landing-mode .motion-lines i:nth-child(1){height:25px}.motion-lines i:nth-child(2){height:55px;animation-delay:-.4s}.motion-lines i:nth-child(3){height:76px;animation-delay:-.8s}.motion-lines i:nth-child(4){height:44px;animation-delay:-.2s}.motion-lines i:nth-child(5){height:29px;animation-delay:-.65s}
body.landing-mode .layout-wire { height:92px; display:grid; grid-template-columns:1.15fr .85fr; grid-template-rows:25px 1fr; gap:7px; padding:8px; border-radius:12px; background:#0c0e13; }
body.landing-mode .layout-wire i { border:1px solid rgba(255,255,255,.12); border-radius:6px; background:rgba(255,255,255,.035); }
body.landing-mode .layout-wire i:first-child { grid-column:1/-1; background:linear-gradient(90deg,rgba(166,255,95,.14),rgba(139,92,255,.14)); }
body.landing-mode .layout-wire i:nth-child(4) { position:absolute; width:36px; height:36px; margin:42px 0 0 103px; border-color:rgba(166,255,95,.32); animation:selectionPulse 2.2s ease-in-out infinite; }
body.landing-mode .inspiration-media { padding-bottom:12px; }
body.landing-mode .media-play { display:grid; place-items:center; width:42px; height:42px; margin:13px auto 15px; border-radius:50%; color:#071006; background:var(--lime); box-shadow:0 0 28px rgba(166,255,95,.25); font-size:.7rem; padding-left:2px; }
body.landing-mode .media-track { display:block; height:4px; margin:0 7px 7px; border-radius:99px; background:rgba(255,255,255,.09); overflow:hidden; }
body.landing-mode .media-track b { display:block; width:42%; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--lime),#a17aff); animation:mediaProgress 4s ease-in-out infinite; }
body.landing-mode .creation-particle { position:absolute; width:5px; height:5px; border-radius:50%; background:#fff; box-shadow:0 0 16px rgba(255,255,255,.85); animation:particleDrift 7s ease-in-out infinite; }
body.landing-mode .particle-a { left:19%; top:22%; }.particle-b { right:19%; top:31%; animation-delay:-2.4s }.particle-c { left:30%; bottom:18%; animation-delay:-4s; background:var(--lime); }

@keyframes creationBreathe { 50% { transform:translate(-50%,-50%) scale(1.08); opacity:.72; } }
@keyframes creationOrbit { to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes beamSweep { 50% { translate:32px -14px; opacity:.8; } }
@keyframes cardFloat { 50% { translate:0 -14px; } }
@keyframes waveBars { 50% { transform:scaleY(.38); filter:brightness(1.35); } }
@keyframes selectionPulse { 50% { box-shadow:0 0 0 5px rgba(166,255,95,.06),0 0 20px rgba(166,255,95,.12); } }
@keyframes mediaProgress { 50% { width:82%; } }
@keyframes particleDrift { 50% { translate:18px -26px; opacity:.35; } }

@media (max-width: 1180px) {
  body.landing-mode .inspiration-card { opacity:.48; transform:scale(.88) rotate(var(--card-rotate,0deg)); }
  body.landing-mode .inspiration-image, body.landing-mode .inspiration-layout { left:-30px; }
  body.landing-mode .inspiration-motion, body.landing-mode .inspiration-media { right:-30px; }
}
@media (max-width: 900px) {
  body.landing-mode .hero.hero-centered { min-height:auto; padding-top:72px; }
  body.landing-mode .inspiration-card { opacity:.22; }
  body.landing-mode .creation-orbit-a { width:1000px; }
  body.landing-mode .creation-orbit-b { width:1220px; }
}
@media (max-width: 760px) {
  body.landing-mode .hero.hero-centered { width:min(100% - 28px,1540px); padding:54px 0 82px; }
  body.landing-mode .hero-copy-centered h1 { font-size:clamp(3.7rem,17vw,6rem); }
  body.landing-mode .hero-copy-centered .hero-lede { margin-top:24px; }
  body.landing-mode .composer-centered textarea { min-height:166px; padding-top:15px; }
  body.landing-mode .composer-footer { align-items:flex-end; }
  body.landing-mode .character-count { display:none; }
  body.landing-mode .upload-status { max-width:125px; }
  body.landing-mode .inspiration-card { display:none; }
  body.landing-mode .creation-field { inset:-2% -40% 0; }
}
@media (max-width: 520px) {
  body.landing-mode .hero-copy-centered h1 { font-size:3.75rem; }
  body.landing-mode .composer-centered { border-radius:23px; }
  body.landing-mode .composer-label-row { padding-left:13px; padding-right:13px; }
  body.landing-mode .composer-centered textarea { min-height:178px; padding-left:13px; padding-right:13px; }
  body.landing-mode .composer-submit { gap:0; }
  body.landing-mode .generate-button { padding:0 16px; }
  body.landing-mode .generate-button span:first-child { font-size:.67rem; }
  body.landing-mode .voice-status { display:none; }
  body.landing-mode .attachment-item { flex-basis:84px; height:66px; }
  body.landing-mode .hero-footnote-centered { gap:9px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  body.landing-mode .creation-field *, body.landing-mode .creation-field::before { animation:none !important; }
}


/* v4.14 build timing */
.build-time-estimate {
  margin: .55rem 0 0;
  font-size: .76rem;
  line-height: 1.35;
  letter-spacing: .01em;
  color: var(--muted, rgba(235, 239, 255, .62));
}
.initial-build-panel .build-time-estimate { margin-top: .65rem; }


/* v4.14 edit focus cloud library */
.saved-projects-card {
  margin: 0 12px 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 45px rgba(0,0,0,.12);
}
.saved-projects-head, .saved-projects-actions, .saved-project-row, .saved-version-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.saved-projects-kicker {
  display: block;
  margin-bottom: 3px;
  color: #888f88;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.saved-projects-head h2 { margin: 0; color: #f2f4ef; font-size: .96rem; letter-spacing: -.02em; }
.saved-projects-refresh {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  color: #c9cec6;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}
.saved-projects-refresh svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.saved-projects-refresh:hover { color: #fff; background: rgba(255,255,255,.075); }
.saved-projects-copy { margin: 9px 0 11px; color: #8f968d; font-size: .69rem; line-height: 1.45; }
.saved-projects-actions { margin-bottom: 10px; }
.saved-projects-save {
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid rgba(183,255,132,.24);
  border-radius: 10px;
  color: #ddffca;
  background: rgba(140,217,91,.09);
  font-size: .68rem;
  font-weight: 750;
  cursor: pointer;
}
.saved-projects-save:hover { background: rgba(140,217,91,.15); }
.saved-projects-save:disabled { opacity: .48; cursor: wait; }
#cloud-project-count { color: #747b74; font-size: .62rem; }
.saved-projects-list { display: grid; gap: 7px; max-height: 245px; overflow: auto; padding-right: 2px; scrollbar-width: thin; }
.saved-projects-empty { margin: 4px 0; color: #747b74; font-size: .66rem; line-height: 1.45; }
.publication-control {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.publication-status-row {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f2f4ef;
  font-size: .7rem;
}
.publication-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #747b74;
  box-shadow: 0 0 0 3px rgba(116,123,116,.12);
}
.publication-control[data-state="publishing"] .publication-status-dot { background: #b798ff; box-shadow: 0 0 0 3px rgba(183,152,255,.13); }
.publication-control[data-state="published"] .publication-status-dot { background: #b7ff84; box-shadow: 0 0 0 3px rgba(183,255,132,.13); }
.publication-control[data-state="changes"] .publication-status-dot { background: #ffcc72; box-shadow: 0 0 0 3px rgba(255,204,114,.13); }
.publication-control[data-state="failed"] .publication-status-dot { background: #ff8b82; box-shadow: 0 0 0 3px rgba(255,139,130,.13); }
.publication-control[data-state="unpublished"] .publication-status-dot { background: #9ca39b; }
.publication-control > p { margin: 6px 0 9px; color: #8f968d; font-size: .66rem; line-height: 1.45; }
.publication-live-link {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d8ffc1;
  font-size: .65rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(183,255,132,.34);
  text-underline-offset: 3px;
}
.publication-live-link:hover { color: #fff; }
.publication-actions { display: flex; align-items: center; gap: 7px; }
.publication-actions button {
  min-height: 31px;
  padding: 0 11px;
  border-radius: 10px;
  font-size: .65rem;
  font-weight: 750;
  cursor: pointer;
}
.publication-publish { border: 1px solid rgba(183,255,132,.24); color: #ddffca; background: rgba(140,217,91,.09); }
.publication-publish:hover { background: rgba(140,217,91,.15); }
.publication-unpublish { border: 1px solid rgba(255,255,255,.1); color: #adb3ac; background: transparent; }
.publication-unpublish:hover { color: #fff; background: rgba(255,255,255,.06); }
.publication-actions button:disabled { opacity: .48; cursor: wait; }
.publication-actions button:focus-visible, .publication-live-link:focus-visible { outline: 2px solid #b7ff84; outline-offset: 3px; }
.custom-domain-control {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  min-width: 0;
}
.custom-domain-heading,
.custom-domain-status-row,
.custom-domain-input-row,
.custom-domain-actions {
  display: flex;
  align-items: center;
}
.custom-domain-heading { justify-content: space-between; gap: 8px; }
.custom-domain-status-row { min-width: 0; gap: 7px; color: #f2f4ef; font-size: .7rem; }
.custom-domain-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #747b74;
  box-shadow: 0 0 0 3px rgba(116,123,116,.12);
}
.custom-domain-control[data-state="verification_required"] .custom-domain-status-dot,
.custom-domain-control[data-state="verifying"] .custom-domain-status-dot,
.custom-domain-control[data-state="activating"] .custom-domain-status-dot { background: #ffcc72; box-shadow: 0 0 0 3px rgba(255,204,114,.13); }
.custom-domain-control[data-state="active"] .custom-domain-status-dot { background: #b7ff84; box-shadow: 0 0 0 3px rgba(183,255,132,.13); }
.custom-domain-control[data-state="failed"] .custom-domain-status-dot { background: #ff8b82; box-shadow: 0 0 0 3px rgba(255,139,130,.13); }
.custom-domain-control[data-state="busy"] .custom-domain-status-dot { background: #b798ff; box-shadow: 0 0 0 3px rgba(183,152,255,.13); }
.custom-domain-simulation {
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 999px;
  color: #cbbcff;
  background: rgba(183,152,255,.1);
  font-size: .52rem;
  font-weight: 750;
}
.custom-domain-control > p { margin: 6px 0 10px; color: #8f968d; font-size: .66rem; line-height: 1.45; }
.custom-domain-form { display: grid; gap: 5px; }
.custom-domain-form > label { color: #c7ccc5; font-size: .6rem; font-weight: 750; }
.custom-domain-input-row { align-items: stretch; gap: 6px; min-width: 0; }
.custom-domain-input-row input {
  min-width: 0;
  width: 100%;
  height: 33px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 9px;
  color: #f2f4ef;
  background: rgba(255,255,255,.045);
  font: inherit;
  font-size: .66rem;
}
.custom-domain-input-row input::placeholder { color: #858b84; }
.custom-domain-input-row button,
.custom-domain-actions button,
.custom-domain-actions a {
  min-height: 31px;
  padding: 0 10px;
  border-radius: 9px;
  font-size: .61rem;
  font-weight: 750;
  white-space: nowrap;
}
.custom-domain-input-row button { border: 1px solid rgba(183,255,132,.24); color: #ddffca; background: rgba(140,217,91,.09); cursor: pointer; }
.custom-domain-form small { color: #747b74; font-size: .57rem; line-height: 1.4; }
.custom-domain-error { overflow-wrap: anywhere; color: #ffaaa4 !important; }
.custom-domain-current { min-width: 0; }
.custom-domain-hostname { display: block; overflow-wrap: anywhere; color: #f1f3ef; font-size: .73rem; }
.custom-domain-progress { margin-top: 5px; color: #aeb4ad; font-size: .62rem; line-height: 1.45; }
.custom-domain-records { display: grid; gap: 6px; margin-top: 10px; }
.custom-domain-record {
  min-width: 0;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.035);
}
.custom-domain-record-head { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 5px; color: #b9beb7; font-size: .55rem; font-weight: 800; }
.custom-domain-record code { display: block; overflow-wrap: anywhere; color: #e3e7df; font-size: .56rem; line-height: 1.5; user-select: all; }
.custom-domain-record code + code { margin-top: 3px; color: #aeb4ad; }
.custom-domain-delay-note { margin: 9px 0 !important; color: #858c84 !important; font-size: .59rem !important; }
.custom-domain-actions { flex-wrap: wrap; gap: 6px; }
.custom-domain-actions button { border: 1px solid rgba(255,255,255,.1); color: #c9cec6; background: transparent; cursor: pointer; }
.custom-domain-actions button:hover { color: #fff; background: rgba(255,255,255,.06); }
.custom-domain-actions a { display: inline-flex; align-items: center; color: #d8ffc1; text-decoration: none; background: rgba(140,217,91,.09); }
.custom-domain-actions .custom-domain-remove { color: #ffaaa4; }
.custom-domain-input-row button:disabled,
.custom-domain-actions button:disabled { opacity: .48; cursor: wait; }
.custom-domain-control :is(button, input, a):focus-visible { outline: 2px solid #b7ff84; outline-offset: 3px; }
.saved-project-item {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  background: rgba(3,5,4,.2);
}
.saved-project-item.is-current { border-color: rgba(183,255,132,.2); background: rgba(140,217,91,.045); }
.saved-project-row { padding: 9px 9px 8px 10px; }
.saved-project-open {
  min-width: 0;
  flex: 1;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.saved-project-open strong { display: block; overflow: hidden; color: #e7eae4; font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.saved-project-open small { display: block; margin-top: 3px; color: #747b74; font-size: .58rem; }
.saved-project-history {
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  color: #9ca39a;
  background: rgba(255,255,255,.025);
  font-size: .58rem;
  cursor: pointer;
}
.saved-project-history:hover { color: #fff; }
.saved-version-list { display: grid; gap: 1px; padding: 3px 7px 7px; border-top: 1px solid rgba(255,255,255,.055); }
.saved-version-row { padding: 6px 3px; }
.saved-version-row span { min-width: 0; }
.saved-version-row strong { display: block; color: #b9beb6; font-size: .61rem; font-weight: 650; }
.saved-version-row small { display: block; margin-top: 2px; overflow: hidden; color: #696f69; font-size: .54rem; text-overflow: ellipsis; white-space: nowrap; }
.saved-version-load {
  padding: 4px 7px;
  border: 0;
  border-radius: 7px;
  color: #d7ddd3;
  background: rgba(255,255,255,.055);
  font-size: .55rem;
  cursor: pointer;
}
.saved-version-load:hover { color: #fff; background: rgba(255,255,255,.09); }
@media (max-width: 920px) {
  .saved-projects-card { margin-inline: 10px; }
  .saved-projects-list { max-height: 190px; }
}


/* v4.14 revision edit focus */
.canvas-device.is-revision-focused {
  box-shadow: 0 0 0 2px rgba(139,92,255,.4), 0 24px 70px rgba(80,48,190,.16);
  transition: box-shadow .3s ease;
}
.canvas-device.is-revision-focused::after {
  content: "Revision in progress";
  position: absolute;
  z-index: 40;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #f5f1ff;
  background: rgba(21,15,43,.92);
  box-shadow: 0 10px 30px rgba(37,20,87,.25);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .02em;
  pointer-events: none;
}


/* v4.16 account project hub */
.account-actions { display:flex; align-items:center; margin-left:.25rem; }
.account-signed-out { display:flex; align-items:center; gap:.55rem; }
.account-login, .account-signup { border:0; font:inherit; cursor:pointer; transition:transform .2s ease, border-color .2s ease, background .2s ease; }
.account-login { color:rgba(255,255,255,.82); background:transparent; padding:.65rem .75rem; }
.account-signup { color:#111018; background:#fff; border-radius:999px; padding:.7rem 1rem; font-weight:750; box-shadow:0 8px 30px rgba(255,255,255,.12); }
.account-login:hover, .account-signup:hover { transform:translateY(-1px); }
.account-user-slot { min-width:34px; min-height:34px; display:grid; place-items:center; }
.account-user-slot[hidden], .account-signed-out[hidden] { display:none !important; }
.studio-account-card { margin:0 14px 12px; padding:14px; border:1px solid rgba(255,255,255,.1); border-radius:16px; background:linear-gradient(145deg,rgba(117,78,255,.12),rgba(255,255,255,.035)); box-shadow:inset 0 1px rgba(255,255,255,.06); }
.studio-account-card, .studio-account-copy { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.studio-account-copy { align-items:flex-start; flex-direction:column; gap:3px; min-width:0; }
.studio-account-copy strong { color:#fff; font-size:.88rem; max-width:155px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.studio-account-copy small { color:rgba(255,255,255,.54); font-size:.7rem; line-height:1.35; max-width:175px; }
.studio-account-actions .account-signed-out { flex-direction:column; gap:5px; }
.studio-account-actions .account-login, .studio-account-actions .account-signup { width:72px; padding:.48rem .62rem; font-size:.7rem; text-align:center; border-radius:10px; }
.studio-account-actions .account-login { background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.1); }
.studio-account-actions .account-signup { color:#fff; background:linear-gradient(135deg,#7c5cff,#a04dff); box-shadow:none; }
@media (max-width:900px) { .landing-nav > a:not(.nav-cta) { display:none; } .account-login { display:none; } }


/* v4.16 account project hub */
.account-project-trigger{position:relative;width:38px;height:38px;padding:0;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;font:750 .72rem/1 inherit;cursor:pointer;overflow:visible;box-shadow:0 8px 26px rgba(0,0,0,.24);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.account-project-trigger:hover,.account-project-trigger[aria-expanded="true"]{transform:translateY(-1px);border-color:rgba(167,133,255,.72);box-shadow:0 10px 34px rgba(107,67,255,.28)}
.account-project-trigger img{width:100%;height:100%;object-fit:cover;border-radius:inherit}
.account-project-trigger>span{display:grid;place-items:center;width:100%;height:100%;border-radius:inherit;background:linear-gradient(135deg,#754eff,#c65cff)}
.account-project-trigger i{position:absolute;right:-1px;bottom:-1px;width:10px;height:10px;border:2px solid #111018;border-radius:50%;background:#70f2a6}
.account-projects-menu{position:fixed;z-index:1500;top:72px;right:22px;width:min(430px,calc(100vw - 28px));max-height:min(680px,calc(100vh - 92px));padding:16px;border:1px solid rgba(255,255,255,.14);border-radius:22px;background:linear-gradient(155deg,rgba(26,23,39,.98),rgba(10,10,16,.98));box-shadow:0 30px 90px rgba(0,0,0,.56),inset 0 1px rgba(255,255,255,.07);backdrop-filter:blur(28px);color:#fff;overflow-y:auto;scrollbar-width:thin;scrollbar-color:rgba(167,133,255,.45) transparent;animation:accountMenuIn .22s ease both}
.account-projects-menu[hidden]{display:none!important}
@keyframes accountMenuIn{from{opacity:0;transform:translateY(-8px) scale(.985)}to{opacity:1;transform:none}}
.account-projects-menu-head{display:grid;grid-template-columns:42px minmax(0,1fr) 34px;align-items:center;gap:11px;padding:2px 2px 14px;border-bottom:1px solid rgba(255,255,255,.09)}
.account-projects-avatar{width:42px;height:42px;border-radius:14px;display:grid;place-items:center;overflow:hidden;background:linear-gradient(135deg,#754eff,#c65cff);font-weight:800}
.account-projects-avatar img{width:100%;height:100%;object-fit:cover}
.account-projects-identity{min-width:0;display:flex;flex-direction:column;gap:3px}.account-projects-identity strong,.account-projects-identity small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.account-projects-identity strong{font-size:.9rem}.account-projects-identity small{font-size:.7rem;color:rgba(255,255,255,.52)}
.account-projects-close{width:32px;height:32px;border:0;border-radius:10px;background:rgba(255,255,255,.06);color:rgba(255,255,255,.72);font-size:1.25rem;cursor:pointer}.account-projects-close:hover{background:rgba(255,255,255,.11);color:#fff}
.account-projects-title-row{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;padding:16px 2px 4px}.account-projects-title-row span{font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:#ad94ff}.account-projects-title-row h2{margin:2px 0 0;font-size:1.18rem}.account-projects-title-row>span{color:rgba(255,255,255,.48);letter-spacing:0;text-transform:none}
.account-projects-help{margin:5px 2px 12px;color:rgba(255,255,255,.52);font-size:.72rem;line-height:1.45}
.account-projects-list{max-height:430px;overflow:auto;padding:1px 3px 4px 1px;scrollbar-width:thin;scrollbar-color:rgba(167,133,255,.45) transparent}
.account-projects-empty{margin:8px 0;padding:17px;border:1px dashed rgba(255,255,255,.12);border-radius:14px;color:rgba(255,255,255,.52);font-size:.76rem;text-align:center}
.account-project{margin-bottom:8px;border:1px solid rgba(255,255,255,.09);border-radius:16px;background:rgba(255,255,255,.035);overflow:hidden;transition:border-color .2s ease,background .2s ease}.account-project:hover,.account-project.is-current{border-color:rgba(142,105,255,.35);background:rgba(117,78,255,.07)}
.account-project-main{display:grid;grid-template-columns:minmax(0,1fr) 57px;align-items:stretch}.account-project-open{min-width:0;padding:11px;border:0;background:transparent;color:#fff;display:grid;grid-template-columns:38px minmax(0,1fr) auto;align-items:center;gap:10px;text-align:left;cursor:pointer}.account-project-open:hover b{color:#c5b3ff}.account-project-open>span:nth-child(2){min-width:0;display:flex;flex-direction:column;gap:4px}.account-project-open strong,.account-project-open small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.account-project-open strong{font-size:.8rem}.account-project-open small{font-size:.65rem;color:rgba(255,255,255,.46)}.account-project-open b{font-size:.66rem;color:#9d7dff;transition:color .2s ease}
.account-project-mark{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;background:linear-gradient(145deg,rgba(136,96,255,.35),rgba(255,255,255,.06));font-weight:800}
.account-project-toggle{border:0;border-left:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;font-size:1rem;cursor:pointer}.account-project-toggle small{font-size:.55rem;color:rgba(255,255,255,.45)}.account-project-toggle:hover{background:rgba(117,78,255,.12)}
.account-project-saves{padding:7px;border-top:1px solid rgba(255,255,255,.075);background:rgba(0,0,0,.14)}
.account-project-version{width:100%;padding:9px 10px;border:0;border-radius:10px;background:transparent;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:12px;text-align:left;cursor:pointer}.account-project-version:hover{background:rgba(255,255,255,.06)}.account-project-version>span{min-width:0;display:flex;flex-direction:column;gap:2px}.account-project-version strong{font-size:.71rem}.account-project-version small,.account-project-version time{font-size:.6rem;color:rgba(255,255,255,.43)}.account-project-version small{max-width:230px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.account-email-preference{margin-top:11px;padding:11px 12px;border:1px solid rgba(255,255,255,.09);border-radius:13px;background:rgba(255,255,255,.035)}
.account-email-preference label{display:flex;align-items:flex-start;gap:10px;cursor:pointer}.account-email-preference input{width:17px;height:17px;margin:1px 0 0;accent-color:var(--violet);flex:0 0 auto}.account-email-preference span{display:grid;gap:3px;min-width:0}.account-email-preference strong{color:rgba(255,255,255,.88);font-size:.7rem}.account-email-preference small{color:rgba(255,255,255,.48);font-size:.61rem;line-height:1.38}.account-email-preference em{display:block;margin:7px 0 0 27px;color:rgba(255,255,255,.37);font:500 .57rem/1.35 inherit;font-style:normal}.account-email-preference.is-saving{opacity:.7;pointer-events:none}.account-email-preference.is-error em{color:#ffaaa5}
.account-billing{margin:11px 0 12px;padding:13px;border:1px solid rgba(197,255,88,.18);border-radius:14px;background:rgba(197,255,88,.045)}
.account-billing-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.account-billing-head>div{display:grid;gap:3px;min-width:0}.account-billing-head span{color:#c5ff58;font-size:.58rem;letter-spacing:.09em;text-transform:uppercase}.account-billing-head strong{overflow-wrap:anywhere;color:#fff;font-size:.86rem}.account-billing-head em{flex:0 0 auto;color:rgba(255,255,255,.6);font:650 .6rem/1.2 inherit;font-style:normal;text-align:right}.account-billing>p{margin:8px 0;color:rgba(255,255,255,.54);font-size:.64rem;line-height:1.45}.account-billing-plan{display:grid;gap:5px;margin-top:10px}.account-billing-plan>span{color:rgba(255,255,255,.62);font-size:.6rem;font-weight:700}.account-billing-plan select{width:100%;min-width:0;padding:9px 31px 9px 10px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:#17151f;color:#fff;font:650 .66rem/1.2 inherit}.account-billing-actions{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);gap:7px;margin-top:9px}.account-billing-actions button{min-height:38px;padding:9px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:rgba(255,255,255,.055);color:#fff;font:700 .62rem/1.2 inherit;cursor:pointer}.account-billing-actions button:first-child{border-color:#c5ff58;background:#c5ff58;color:#10120d}.account-billing-actions button:hover:not(:disabled){transform:translateY(-1px)}.account-billing-actions button:focus-visible,.account-billing-plan select:focus-visible{outline:2px solid #c5ff58;outline-offset:2px}.account-billing-actions button:disabled,.account-billing-plan select:disabled{cursor:not-allowed;opacity:.45}.account-billing .account-billing-message{min-height:1.35em;margin-bottom:0;color:#ffd28f}
.account-projects-menu-footer{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding-top:12px;border-top:1px solid rgba(255,255,255,.09)}.account-projects-menu-footer button{padding:10px;border:1px solid rgba(255,255,255,.1);border-radius:11px;background:rgba(255,255,255,.045);color:rgba(255,255,255,.78);font:650 .7rem/1 inherit;cursor:pointer}.account-projects-menu-footer button:hover{border-color:rgba(157,125,255,.45);background:rgba(117,78,255,.1);color:#fff}
@media(max-width:650px){.account-projects-menu{top:64px;right:10px;width:calc(100vw - 20px);max-height:calc(100vh - 76px)}.account-project-open{grid-template-columns:34px minmax(0,1fr)}.account-project-open b{display:none}.account-project-mark{width:34px;height:34px}}
@media(prefers-reduced-motion:reduce){.account-projects-menu{animation:none}.account-project-trigger{transition:none}}


/* v4.17 legal company footer */
.legal-footer {
  min-height: 178px;
  padding: 30px 0;
  gap: 30px;
}
.footer-brand-block {
  min-width: 190px;
  display: grid;
  gap: 12px;
}
.footer-brand-block > p {
  margin: 0;
  color: #696f69;
  font-size: .72rem;
  line-height: 1.5;
}
.footer-company-block {
  margin-left: auto;
  display: grid;
  justify-items: start;
  gap: 5px;
  color: #777f78;
  font-size: .68rem;
  line-height: 1.45;
}
.footer-company-block strong {
  color: #d8ddd7;
  font-size: .72rem;
  font-weight: 650;
}
.footer-company-block a {
  margin-top: 4px;
  color: #b7a5ff;
  font-weight: 700;
  text-decoration: none;
}
.footer-company-block a:hover { color: var(--lime); }
.legal-footer .version-badge { flex: 0 0 auto; }

.legal-main {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 120px;
}
.legal-hero { max-width: 780px; margin-bottom: 54px; }
.legal-hero h1 {
  margin: 18px 0 24px;
  color: #f5f8f3;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.055em;
}
.legal-hero h1 em {
  color: transparent;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  background: linear-gradient(100deg,var(--lime),#b795ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.legal-hero > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #89908a;
  line-height: 1.75;
}
.legal-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  background: linear-gradient(145deg,rgba(17,19,25,.95),rgba(9,10,14,.98));
  box-shadow: 0 36px 100px rgba(0,0,0,.35);
}
.legal-card-head {
  padding: 30px 34px;
  border-bottom: 1px solid rgba(255,255,255,.075);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-card-head span {
  color: #777f78;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.legal-card-head strong { color: #f5f8f3; font-size: 1.35rem; }
.legal-details { margin: 0; padding: 8px 34px 18px; }
.legal-details > div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.065);
  display: grid;
  grid-template-columns: minmax(170px,.72fr) 1.28fr;
  gap: 24px;
}
.legal-details > div:last-child { border-bottom: 0; }
.legal-details dt { color: #777f78; font-size: .72rem; font-weight: 700; }
.legal-details dd { margin: 0; color: #e2e6e1; font-size: .86rem; line-height: 1.65; }

@media (max-width: 760px) {
  .legal-footer { align-items: flex-start; }
  .footer-company-block { width: 100%; margin-left: 0; order: 3; }
  .legal-footer .version-badge { margin-left: auto; }
  .legal-main { width: min(100% - 30px, 920px); padding: 64px 0 84px; }
  .legal-hero h1 { font-size: clamp(3.5rem, 15vw, 5.4rem); }
  .legal-card-head { align-items: flex-start; flex-direction: column; }
  .legal-details > div { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 520px) {
  .legal-footer .version-badge { margin-left: 0; }
  .footer-company-block span { max-width: 320px; }
  .legal-card-head, .legal-details { padding-left: 22px; padding-right: 22px; }
}

/* v4.19 landing performance pass */
body.landing-mode .signal-rail {
  content-visibility: auto;
  contain-intrinsic-size: 70px;
}
body.landing-mode .proof-strip,
body.landing-mode .experience-section,
body.landing-mode .home-plan-bridge,
body.landing-mode .final-cta,
body.landing-mode .landing-footer {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
body.landing-mode .landing-footer { contain-intrinsic-size: 150px; }

body.landing-mode .page-noise {
  opacity: .075;
  mix-blend-mode: normal;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.15) 0 .45px, transparent .7px),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.1) 0 .4px, transparent .65px);
  background-size: 5px 5px, 7px 7px;
}
body.landing-mode .aurora {
  filter: none;
  transform: translateZ(0);
  contain: strict;
}
body.landing-mode .aurora-a {
  background: radial-gradient(circle, rgba(122,67,255,.48), rgba(122,67,255,.16) 38%, transparent 72%);
}
body.landing-mode .aurora-b {
  background: radial-gradient(circle, rgba(108,255,99,.32), rgba(108,255,99,.08) 40%, transparent 72%);
}
body.landing-mode .cursor-glow {
  width: 340px;
  height: 340px;
  filter: none;
  will-change: transform, opacity;
  transition: opacity .25s ease, transform .08s linear;
}
body.landing-mode .creation-field,
body.landing-mode .creation-orbit,
body.landing-mode .inspiration-card {
  contain: layout paint style;
}
body.landing-mode .creation-field::before { filter: blur(15px); }
body.landing-mode .inspiration-card {
  background: linear-gradient(145deg, rgba(20,22,29,.91), rgba(9,10,14,.94));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  will-change: transform;
  transition: transform .12s linear;
}
body.landing-mode .creation-orbit,
body.landing-mode .creation-beam,
body.landing-mode .creation-particle,
body.landing-mode .motion-lines i,
body.landing-mode .layout-wire i:nth-child(4),
body.landing-mode .media-track b { will-change: transform; }
body.landing-mode.landing-motion-paused .creation-field *,
body.landing-mode.landing-motion-paused .creation-field::before,
body.page-motion-paused .creation-field *,
body.page-motion-paused .creation-field::before,
body.page-motion-paused .signal-track,
body.page-motion-paused .live-dot {
  animation-play-state: paused !important;
}
@media (max-width: 900px) {
  body.landing-mode .cursor-glow { display: none; }
  body.landing-mode .creation-field::before { filter: blur(10px); }
}

/* v4.18 Smart plans and pre-generation account gate */
.selected-plan-context {
  margin: 8px 12px 0;
  padding: 10px 12px;
  border: 1px solid rgba(120,92,255,.16);
  border-radius: 14px;
  background: linear-gradient(115deg, rgba(120,92,255,.08), rgba(217,255,111,.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #696773;
  font-size: .72rem;
  font-weight: 600;
}
.selected-plan-context > span { display: inline-flex; align-items: center; gap: 7px; }
.selected-plan-context > span > i { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 5px rgba(120,92,255,.09); }
.selected-plan-context strong { color: var(--ink); }
.selected-plan-context button { border: 0; padding: 0; color: var(--violet-deep); background: transparent; font-size: .69rem; font-weight: 700; cursor: pointer; }

.home-plan-bridge {
  width: min(var(--content), calc(100% - 48px));
  margin: 46px auto 104px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  color: #f5f7f3;
  background:
    radial-gradient(circle at 14% 12%, rgba(120,92,255,.28), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(217,255,111,.12), transparent 29%),
    #0b0c10;
  box-shadow: 0 34px 100px rgba(11,10,20,.23);
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(460px,1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.home-plan-copy h2 { margin: 14px 0 18px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(2.8rem,5vw,5rem); font-weight: 400; line-height: .9; letter-spacing: -.045em; }
.home-plan-copy > p:not(.section-kicker) { max-width: 520px; margin: 0 0 26px; color: #90968f; font-size: .9rem; line-height: 1.72; }
.home-plan-copy > a { display: inline-flex; align-items: center; gap: 18px; color: var(--lime); font-size: .76rem; font-weight: 700; }
.home-plan-copy > a span { transition: transform .2s ease; }
.home-plan-copy > a:hover span { transform: translateX(5px); }
.home-plan-options { display: grid; gap: 10px; }
.home-plan-option { min-height: 90px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.035); display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 14px; transition: transform .22s ease,border-color .22s ease,background .22s ease; }
.home-plan-option:hover { transform: translateX(7px); border-color: rgba(217,255,111,.25); background: rgba(255,255,255,.06); }
.home-plan-option.is-featured { border-color: rgba(120,92,255,.32); background: linear-gradient(110deg,rgba(120,92,255,.13),rgba(255,255,255,.04)); }
.home-plan-option > span { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; display: grid; place-items: center; color: #8e948d; font-size: .65rem; }
.home-plan-option div { display: grid; gap: 5px; }
.home-plan-option strong { font-size: .84rem; }
.home-plan-option small { color: #777e78; font-size: .68rem; }
.home-plan-option b { padding: 7px 10px; border-radius: 999px; color: var(--lime); background: rgba(217,255,111,.08); font-size: .62rem; }

body.auth-gate-open { overflow: hidden; }
.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 140;
  padding: 24px;
  background: rgba(6,6,10,.7);
  backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
}
.auth-gate-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(820px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(24px,4vw,40px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  color: #f4f6f2;
  background:
    radial-gradient(circle at 15% 0, rgba(120,92,255,.25), transparent 35%),
    linear-gradient(145deg,#15161d,#090a0f 72%);
  box-shadow: 0 46px 140px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  animation: authGateIn .28s ease both;
}
@keyframes authGateIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.auth-gate-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; color: #a3aaa4; background: rgba(255,255,255,.035); font-size: 1.25rem; cursor: pointer; }
.auth-gate-mark { width: 48px; height: 48px; margin-bottom: 18px; border-radius: 16px; background: linear-gradient(145deg,var(--violet),#9d84ff); box-shadow: 0 16px 40px rgba(120,92,255,.28); display: grid; place-items: center; position: relative; }
.auth-gate-mark span { position: absolute; width: 15px; height: 15px; border: 2px solid #fff; border-radius: 5px; transform: rotate(45deg); }
.auth-gate-mark span:nth-child(1) { transform: translateX(-7px) rotate(45deg); opacity: .45; }
.auth-gate-mark span:nth-child(2) { transform: translateX(7px) rotate(45deg); opacity: .7; }
.auth-gate-mark span:nth-child(3) { width: 10px; height: 10px; background: #fff; }
.auth-gate-card h2 { margin: 0 0 12px; font-family: "Space Grotesk",sans-serif; font-size: clamp(1.9rem,4.1vw,2.7rem); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.auth-gate-prompt-wrap { margin: 8px 0 16px; padding: 14px 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(255,255,255,.035); }
.auth-gate-prompt-wrap > span { display: block; margin-bottom: 8px; color: #777e78; font-size: .62rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.auth-gate-prompt-wrap p { margin: 0; color: #d7dbd5; font-size: .77rem; line-height: 1.55; white-space: pre-line; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; text-overflow: ellipsis; }
.auth-gate-benefits { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 0 0 16px; }
.auth-gate-benefits span { color: #aeb4ae; font-size: .72rem; }
.auth-gate-benefits i { display: inline-grid; width: 20px; height: 20px; margin-right: 7px; border-radius: 50%; place-items: center; color: #071006; background: var(--lime); font-size: .62rem; font-style: normal; }
.auth-gate-consent { margin: 12px 0 0; padding: 11px 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.025); display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.auth-gate-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--violet); flex: 0 0 auto; }
.auth-gate-consent span { color: #858c85; font-size: .64rem; line-height: 1.48; }
.auth-gate-preference { border-color:rgba(157,125,255,.2); background:linear-gradient(135deg,rgba(117,78,255,.08),rgba(255,255,255,.025)); }
.auth-gate-primary,.auth-gate-secondary { width: 100%; min-height: 50px; border-radius: 14px; font-size: .75rem; font-weight: 700; cursor: pointer; }
.auth-gate-card-compact { max-width: 560px; }
.auth-gate-primary { border: 0; padding: 0 17px; color: #081007; background: linear-gradient(110deg,var(--lime),#c8ff9e); display: flex; justify-content: space-between; align-items: center; box-shadow: 0 14px 38px rgba(217,255,111,.12); }
.auth-gate-secondary { margin-top: 9px; border: 1px solid rgba(255,255,255,.1); color: #e6e9e4; background: rgba(255,255,255,.035); }
.auth-gate-note { display: block; margin-top: 10px; color: #697069; text-align: center; font-size: .58rem; line-height: 1.45; }
.auth-gate-consent-minimal { background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.06); }
.auth-gate-consent-minimal input { margin-top: 2px; }

.smart-pricing-page { color: #eef1ec; background: #07080b; }
.smart-pricing-main { position: relative; z-index: 3; width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 76px 0 120px; }
.pricing-header { color: #f1f4ef; }
.pricing-header .landing-nav { color: #9a9f9a; }
.pricing-header .landing-nav a:hover,
.pricing-header .landing-nav .is-current { color: #fff; }
.pricing-account { display: flex; align-items: center; margin-left: .25rem; }
.pricing-account .account-signed-out { display: flex; align-items: center; gap: .55rem; }
/* v4.20 persistent builder navigation */
.landing-nav [data-open-builder] {
  position: relative;
}
.landing-nav [data-open-builder]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  transform: translate(-50%, 3px);
  box-shadow: 0 0 14px rgba(166,255,95,.65);
  transition: opacity .18s ease, transform .18s ease;
}
.landing-nav [data-open-builder]:hover::after {
  opacity: .8;
  transform: translate(-50%, 0);
}
.pricing-account .account-project-trigger {
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
}
@media (max-width: 1080px) {
  .landing-nav { gap: 20px; }
}

.smart-pricing-hero { max-width: 900px; margin: 0 auto 54px; text-align: center; }
.smart-pricing-hero .hero-kicker { justify-content: center; }
.smart-pricing-hero h1 { margin: 18px 0 24px; font-family: "Space Grotesk",sans-serif; font-size: clamp(4rem,8vw,7.4rem); font-weight: 500; line-height: .82; letter-spacing: -.065em; }
.smart-pricing-hero h1 em { color: transparent; font-family: "Instrument Serif",serif; font-weight: 400; background: linear-gradient(100deg,var(--lime),#b795ff); -webkit-background-clip:text; background-clip:text; }
.smart-pricing-hero > p { max-width: 700px; margin: 0 auto; color: #858c85; font-size: .91rem; line-height: 1.75; }
.pricing-audience-switch { position: relative; width: min(520px,100%); margin: 34px auto 0; padding: 5px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; background: rgba(255,255,255,.035); display: grid; grid-template-columns: 1fr 1fr; }
.pricing-audience-switch button { position: relative; z-index: 2; min-height: 46px; border: 0; color: #7f867f; background: transparent; font-size: .73rem; font-weight: 700; cursor: pointer; transition: color .2s ease; }
.pricing-audience-switch button.is-active { color: #081007; }
.pricing-audience-switch i { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 999px; background: var(--lime); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
body[data-pricing-audience="agency"] .pricing-audience-switch i { transform: translateX(100%); }
.pricing-control-bar { margin-bottom: 18px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.025); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.pricing-control-bar > div:first-child { display: grid; gap: 3px; }
.pricing-control-bar span { color: #707770; font-size: .6rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.pricing-control-bar strong { font-size: .77rem; }
.billing-toggle { padding: 4px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: #0b0c10; display: flex; }
.billing-toggle button { min-height: 38px; padding: 0 14px; border: 0; border-radius: 9px; color: #767d76; background: transparent; font-size: .68rem; font-weight: 700; cursor: pointer; }
.billing-toggle button.is-active { color: #f0f3ee; background: rgba(255,255,255,.08); }
.billing-toggle small { margin-left: 5px; color: var(--lime); font-size: .55rem; }
.smart-plan-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.smart-plan-card { position: relative; min-height: 690px; overflow: hidden; padding: 28px; border: 1px solid rgba(255,255,255,.08); border-radius: 26px; background: linear-gradient(145deg,rgba(18,20,26,.96),rgba(9,10,14,.98)); box-shadow: 0 28px 84px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.03); display: flex; flex-direction: column; transition: transform .3s ease,border-color .3s ease,box-shadow .3s ease; }
.smart-plan-card:hover { transform: translateY(-7px); border-color: rgba(217,255,111,.19); }
.smart-plan-card.is-focused { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(217,255,111,.11),0 30px 100px rgba(0,0,0,.35); }
.smart-plan-card.is-recommended { border-color: rgba(120,92,255,.34); background: radial-gradient(circle at 70% 0,rgba(120,92,255,.16),transparent 32%),linear-gradient(145deg,#171523,#090a0f 73%); }
.recommended-ribbon { position: absolute; top: 0; left: 0; right: 0; min-height: 30px; color: #0b1008; background: linear-gradient(100deg,var(--lime),#c7ff9a); display: grid; place-items: center; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.smart-plan-card.is-recommended .smart-plan-head { margin-top: 19px; }
.smart-plan-head { display: flex; align-items: center; justify-content: space-between; }
.smart-plan-eyebrow { color: #929991; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.smart-plan-index { width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.09); border-radius: 11px; display: grid; place-items: center; color: #777e78; font-size: .62rem; }
.smart-plan-card h2 { margin: 42px 0 13px; font-family: "Space Grotesk",sans-serif; font-size: clamp(2.2rem,3.4vw,3.7rem); font-weight: 500; line-height: .94; letter-spacing: -.05em; }
.smart-plan-card > p { min-height: 84px; margin: 0; color: #848b84; font-size: .75rem; line-height: 1.65; }
.smart-price { margin: 28px 0 17px; display: flex; align-items: flex-end; gap: 10px; }
.smart-price strong { font-family: "Space Grotesk",sans-serif; font-size: clamp(2.6rem,4.2vw,4.5rem); font-weight: 500; line-height: .9; letter-spacing: -.065em; }
.smart-price span { padding-bottom: 5px; color: #717871; font-size: .67rem; }
.plan-outcome,.business-billing-note { min-height: 48px; margin-bottom: 16px; padding: 11px 12px; border-radius: 12px; color: #858c85; background: rgba(255,255,255,.035); font-size: .64rem; line-height: 1.45; }
.smart-plan-card ul { margin: 8px 0 25px; padding: 0; list-style: none; display: grid; gap: 11px; }
.smart-plan-card li { color: #9ca29c; font-size: .69rem; line-height: 1.45; }
.smart-plan-card li i { display: inline-grid; width: 19px; height: 19px; margin-right: 7px; border-radius: 50%; place-items: center; color: #081007; background: var(--lime); font-size: .55rem; font-style: normal; }
.smart-plan-card li.is-muted { color: #666d67; }
.smart-plan-card li.is-muted i { color: #858c85; background: rgba(255,255,255,.08); }
.hosting-choice { min-height: 62px; margin-bottom: 9px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.028); display: grid; grid-template-columns: 18px 1fr 38px; align-items: center; gap: 10px; cursor: pointer; }
.hosting-choice input { width: 17px; height: 17px; accent-color: var(--lime); }
.hosting-choice > span { display: grid; gap: 3px; }
.hosting-choice b { font-size: .68rem; }
.hosting-choice small { color: #717871; font-size: .58rem; }
.hosting-choice > i { width: 36px; height: 21px; border-radius: 999px; background: #25282d; position: relative; transition: background .2s ease; }
.hosting-choice > i::after { content:""; position:absolute; width:15px; height:15px; top:3px; left:3px; border-radius:50%; background:#858c85; transition:transform .2s ease,background .2s ease; }
.hosting-choice:has(input:checked) > i { background: rgba(217,255,111,.25); }
.hosting-choice:has(input:checked) > i::after { transform: translateX(15px); background: var(--lime); }
.launch-total { min-height: 44px; margin-bottom: 10px; padding: 9px 11px; border-radius: 11px; background: rgba(120,92,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.launch-total span { color: #7f867f; font-size: .58rem; }
.launch-total strong { color: #c6baff; font-size: .68rem; }
.smart-plan-cta { width: 100%; min-height: 50px; margin-top: auto; padding: 0 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; color: #f2f5ef; background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: space-between; font-size: .72rem; font-weight: 700; cursor: pointer; transition: transform .2s ease,border-color .2s ease; }
.smart-plan-cta:hover { transform: translateY(-2px); border-color: rgba(217,255,111,.28); }
.smart-plan-cta.featured { color: #081007; border: 0; background: linear-gradient(110deg,var(--lime),#caff9f); box-shadow: 0 14px 40px rgba(217,255,111,.1); }
.smart-plan-cta.secondary { border-color: rgba(120,92,255,.26); background: rgba(120,92,255,.08); }
.plan-comparison { margin-top: 88px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.comparison-heading h2 { margin: 13px 0 16px; font-family: "Space Grotesk",sans-serif; font-size: clamp(2.5rem,4vw,4.4rem); font-weight: 500; line-height: .94; letter-spacing: -.05em; }
.comparison-heading > p:last-child { color: #828982; font-size: .78rem; line-height: 1.65; }
.comparison-table { border: 1px solid rgba(255,255,255,.08); border-radius: 21px; overflow: hidden; background: rgba(255,255,255,.025); }
.comparison-row { min-height: 58px; padding: 0 17px; border-top: 1px solid rgba(255,255,255,.06); display: grid; grid-template-columns: 1.4fr .8fr .8fr; align-items: center; gap: 12px; }
.comparison-row:first-child { border-top: 0; }
.comparison-row span { color: #858c85; font-size: .67rem; }
.comparison-row strong,.comparison-row b { font-size: .67rem; }
.comparison-header { background: rgba(255,255,255,.035); }
.comparison-header span,.comparison-header strong { color: #cfd4ce; }

.agency-intro { margin-bottom: 28px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
.agency-intro h2 { margin: 14px 0 0; font-family: "Space Grotesk",sans-serif; font-size: clamp(3rem,6vw,6.2rem); font-weight: 500; line-height: .85; letter-spacing: -.06em; }
.agency-intro > p { margin: 0; color: #858c85; font-size: .82rem; line-height: 1.75; }
.agency-calculator { overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 28px; background: linear-gradient(145deg,#12141a,#090a0f); box-shadow: 0 35px 100px rgba(0,0,0,.36); display: grid; grid-template-columns: 1.1fr .9fr; }
.agency-controls { padding: clamp(26px,4vw,48px); }
.agency-control-head { margin-bottom: 34px; display: grid; gap: 4px; }
.agency-control-head span { color: var(--lime); font-size: .62rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.agency-control-head strong { font-size: 1.05rem; }
.agency-range-field { display: block; margin: 0 0 30px; }
.agency-range-field > span { margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.agency-range-field b { font-size: .77rem; }
.agency-range-field output { min-width: 45px; min-height: 35px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; display: grid; place-items: center; color: var(--lime); background: rgba(255,255,255,.035); font-size: .72rem; font-weight: 700; }
.agency-range-field input { width: 100%; accent-color: var(--lime); }
.agency-range-field small { display: block; margin-top: 9px; color: #6f766f; font-size: .61rem; }
.agency-inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.agency-inclusions span { color: #979e97; font-size: .66rem; }
.agency-inclusions i { color: var(--lime); margin-right: 6px; font-style: normal; }
.agency-results { padding: clamp(26px,4vw,48px); border-left: 1px solid rgba(255,255,255,.07); background: radial-gradient(circle at 90% 0,rgba(120,92,255,.2),transparent 38%),rgba(255,255,255,.018); }
.agency-result-top { margin-bottom: 25px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); display: grid; gap: 7px; }
.agency-result-top span { color: #777e78; font-size: .61rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.agency-result-top strong { font-size: 1.1rem; }
.agency-result-top b { color: var(--lime); font-size: 1.8rem; }
.agency-result-line { min-height: 44px; border-bottom: 1px solid rgba(255,255,255,.055); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.agency-result-line span { color: #838a83; font-size: .67rem; }
.agency-result-line strong { font-size: .69rem; }
.agency-result-total { padding: 24px 0 17px; display: grid; gap: 5px; }
.agency-result-total > span { color: #7a817a; font-size: .63rem; }
.agency-result-total > strong { font-family: "Space Grotesk",sans-serif; font-size: clamp(2.2rem,4vw,4rem); font-weight: 500; letter-spacing: -.055em; }
.agency-result-total small { color: #717871; font-size: .61rem; }
.agency-credit-result { min-height: 54px; margin-bottom: 20px; padding: 0 14px; border: 1px solid rgba(217,255,111,.14); border-radius: 13px; background: rgba(217,255,111,.045); display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.agency-credit-result span { color: #9da49d; font-size: .65rem; }
.agency-credit-result strong { color: var(--lime); font-size: 1.15rem; }
.agency-results > p { margin: 13px 0 0; color: #676e68; text-align: center; font-size: .59rem; }
.agency-economics { margin-top: 14px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.agency-economics article { min-height: 230px; padding: 25px; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: rgba(255,255,255,.025); }
.agency-economics span { color: #757c75; font-size: .61rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.agency-economics strong { display: block; margin: 34px 0 15px; font-family: "Space Grotesk",sans-serif; font-size: 2rem; font-weight: 500; letter-spacing: -.04em; }
.agency-economics p { margin: 0; color: #7e857e; font-size: .69rem; line-height: 1.65; }
.pricing-bottom-cta { margin-top: 90px; padding: clamp(28px,5vw,58px); border: 1px solid rgba(255,255,255,.08); border-radius: 28px; background: radial-gradient(circle at 8% 0,rgba(120,92,255,.2),transparent 34%),rgba(255,255,255,.025); display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.pricing-bottom-cta h2 { margin: 12px 0 12px; font-family: "Space Grotesk",sans-serif; font-size: clamp(2.4rem,4vw,4rem); font-weight: 500; line-height: .95; letter-spacing: -.05em; }
.pricing-bottom-cta p:not(.section-kicker) { max-width: 720px; margin: 0; color: #818881; font-size: .77rem; line-height: 1.65; }
.pricing-bottom-cta > button { min-width: 220px; min-height: 54px; padding: 0 18px; border: 0; border-radius: 15px; color: #081007; background: var(--lime); display: flex; align-items: center; justify-content: space-between; font-size: .73rem; font-weight: 700; cursor: pointer; }

@media (max-width: 1020px) {
  .home-plan-bridge { grid-template-columns: 1fr; }
  .smart-plan-grid { grid-template-columns: 1fr; }
  .smart-plan-card { min-height: 0; }
  .smart-plan-card > p { min-height: 0; }
  .plan-comparison,.agency-intro { grid-template-columns: 1fr; gap: 30px; }
  .agency-calculator { grid-template-columns: 1fr; }
  .agency-results { border-left: 0; border-top: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 760px) {
  .home-plan-bridge,.smart-pricing-main { width: min(100% - 28px,1240px); }
  .home-plan-bridge { margin-bottom: 70px; padding: 26px; }
  .home-plan-option { grid-template-columns: 34px 1fr; }
  .home-plan-option > b { display: none; }
  .auth-gate { padding: 10px; }
  .auth-gate-card { padding: 24px 18px 20px; border-radius: 22px; }
  .smart-pricing-main { padding-top: 45px; }
  .smart-pricing-hero h1 { font-size: clamp(3.2rem,17vw,5.2rem); }
  .pricing-control-bar { align-items: stretch; flex-direction: column; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; }
  .smart-plan-card { padding: 24px 20px; }
  .comparison-row { grid-template-columns: 1.2fr .9fr .9fr; padding: 0 11px; }
  .agency-inclusions,.agency-economics { grid-template-columns: 1fr; }
  .agency-economics article { min-height: 180px; }
  .pricing-bottom-cta { align-items: stretch; flex-direction: column; }
  .pricing-bottom-cta > button { width: 100%; }
  .pricing-account { display: flex; }
}

/* ========================================================================== */
/* v4.23 Conversion System                                                     */
/* ========================================================================== */

:root {
  --conversion-ink: #0a0b0e;
  --conversion-paper: #f4f2ed;
  --conversion-paper-soft: #ebe8e1;
  --conversion-line: rgba(10,11,14,.13);
  --conversion-lime: #b8ff35;
  --conversion-violet: #8b6dff;
}

html { scroll-behavior: smooth; }
body.landing-mode { background: var(--conversion-ink); }
body.landing-mode #landing-main { overflow: clip; }
.landing-header { z-index: 90; }
.landing-nav { gap: 23px; }
.landing-nav > a:not(.nav-cta) { font-size: .73rem; }

.conversion-rail { position: relative; z-index: 8; color: #080a08; background: var(--conversion-lime); border-color: rgba(0,0,0,.15); }
.conversion-rail .signal-track { min-width: max-content; animation-duration: 33s; }
.conversion-rail span { color: #090b09; font-size: .67rem; letter-spacing: .14em; font-weight: 800; }
.conversion-rail i { color: #090b09; }

.conversion-section-head,
.conversion-process-head {
  width: min(1420px, calc(100% - 10vw));
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .62fr);
  gap: 7vw;
  align-items: end;
}
.conversion-section-head h2,
.conversion-process-head h2,
.agency-conversion-copy h2,
.faq-title h2,
.conversion-final h2 {
  margin: 0;
  font: 600 clamp(2.7rem, 5.8vw, 6.2rem)/.9 "Space Grotesk", sans-serif;
  letter-spacing: -.065em;
}
.conversion-section-head > p,
.conversion-process-head > p {
  margin: 0 0 .25rem;
  font-size: clamp(.9rem, 1.15vw, 1.08rem);
  line-height: 1.7;
}
.conversion-section-head .section-kicker,
.conversion-process-head .section-kicker,
.agency-conversion-copy .section-kicker,
.faq-title .section-kicker,
.conversion-final .section-kicker,
.conversion-pricing-page .section-kicker,
.conversion-legal-page .section-kicker {
  margin: 0 0 20px;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

/* Examples */
.conversion-showcase {
  position: relative;
  z-index: 3;
  padding: clamp(90px, 10vw, 160px) 0 clamp(110px, 12vw, 190px);
  color: #111216;
  background:
    radial-gradient(circle at 82% 8%, rgba(139,109,255,.09), transparent 32%),
    linear-gradient(180deg, #f7f5f0 0%, #efede7 100%);
}
.conversion-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(8,9,12,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(8,9,12,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
}
.conversion-showcase .conversion-section-head { position: relative; z-index: 2; }
.conversion-showcase .conversion-section-head > p { color: #676a72; }
.conversion-showcase-grid {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 10vw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}
.showcase-card {
  overflow: hidden;
  min-height: 610px;
  padding: 14px;
  border: 1px solid rgba(10,11,14,.13);
  border-radius: 28px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 55px rgba(38,34,27,.08);
  display: flex;
  flex-direction: column;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(38,34,27,.14); }
.showcase-card-wide { grid-row: span 2; min-height: 840px; }
.showcase-browser {
  height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #888b91;
}
.showcase-browser > span { width: 7px; height: 7px; border-radius: 50%; background: #a6a8ac; }
.showcase-browser small { margin-left: auto; margin-right: auto; font-size: .56rem; }
.showcase-screen { position: relative; overflow: hidden; flex: 1; min-height: 360px; border-radius: 18px; }
.showcase-caption { min-height: 86px; padding: 18px 8px 2px; display: flex; align-items: center; justify-content: space-between; }
.showcase-caption div { display: grid; gap: 4px; }
.showcase-caption strong { font-size: .9rem; }
.showcase-caption small { color: #7a7d84; font-size: .68rem; }
.showcase-caption > span { width: 42px; height: 42px; border: 1px solid var(--conversion-line); border-radius: 50%; display: grid; place-items: center; }
.showcase-mori { color: #eee9d9; background: linear-gradient(145deg,#0a3d2f,#05271f); }
.showcase-nav { position: relative; z-index: 2; padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; }
.showcase-nav b { letter-spacing: .18em; }
.showcase-nav small { font-size: .52rem; letter-spacing: .14em; }
.showcase-mori-copy { position: relative; z-index: 2; width: 58%; padding: 17% 0 0 6%; display: grid; gap: 24px; }
.showcase-mori-copy small { font-size: .55rem; letter-spacing: .12em; }
.showcase-mori-copy strong { font: 400 clamp(2.3rem,4.6vw,5rem)/.95 "Instrument Serif",serif; }
.showcase-mori-copy button { width: fit-content; padding: 12px 20px; color: inherit; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; background: transparent; }
.mori-cup { position: absolute; right: 7%; bottom: 10%; width: 32%; aspect-ratio: 1/1.4; animation: moriFloat 5.4s ease-in-out infinite; }
.mori-cup b { position: absolute; inset: 18% 8% 0; border-radius: 10% 10% 34% 34%; background: #e7e3d2; transform: rotate(2deg); }
.mori-cup i { position: absolute; z-index: 2; left: 0; right: 0; top: 13%; height: 10%; border-radius: 50%; background: #b6b3a7; }
.mori-cup span { position: absolute; z-index: 3; width: 64%; height: 11%; right: 38%; top: -3%; border-radius: 50%; background: #267953; transform: rotate(-58deg); animation: moriLeaf 5.4s ease-in-out infinite; }
@keyframes moriFloat { 50% { transform: translateY(-18px) rotate(-1deg); } }
@keyframes moriLeaf { 50% { transform: translate(12px,-22px) rotate(-45deg); } }
.showcase-form { padding: 42px 34px; color: #2b1712; background: #f4a37b; }
.showcase-form > small { font-size: .52rem; letter-spacing: .16em; }
.showcase-form > strong { position: relative; z-index: 2; display: block; width: 72%; margin-top: 40px; font: 600 clamp(2.2rem,3.8vw,4rem)/.95 "Space Grotesk",sans-serif; letter-spacing: -.055em; }
.form-shapes { position: absolute; inset: auto 0 0 auto; width: 75%; height: 58%; }
.form-shapes i { position: absolute; bottom: -10%; width: 29%; height: 70%; border-radius: 48% 48% 0 0; transform-origin: bottom; animation: formDance 5s ease-in-out infinite; }
.form-shapes i:nth-child(1) { right: 52%; background: #f7c739; transform: rotate(-8deg); }
.form-shapes i:nth-child(2) { right: 27%; background: #6d64d9; transform: rotate(8deg); animation-delay: -.6s; }
.form-shapes i:nth-child(3) { right: 2%; background: #36211b; transform: rotate(-5deg); animation-delay: -1.2s; }
@keyframes formDance { 50% { transform: rotate(6deg) translateY(-20px); } }
.showcase-signal { padding: 32px 26px; color: #fff; background: radial-gradient(circle at 88% 88%,#345bff 0,transparent 45%), linear-gradient(140deg,#071730,#0b255b); }
.signal-brand { font-weight: 800; font-size: .74rem; }
.showcase-signal > small { position: absolute; left: 26px; bottom: 23%; font-size: .51rem; letter-spacing: .13em; color: #8da6e8; }
.showcase-signal > strong { position: absolute; left: 26px; bottom: 8%; width: 58%; font: 600 clamp(1.8rem,3.1vw,3.2rem)/.92 "Space Grotesk",sans-serif; letter-spacing: -.06em; }
.signal-metric { position: absolute; right: 5%; top: 29%; width: 37%; padding: 20px; border: 1px solid rgba(255,255,255,.17); border-radius: 14px; background: rgba(3,10,27,.54); backdrop-filter: blur(8px); }
.signal-metric small { display: block; font-size: .48rem; color: #9fb3f1; }
.signal-metric b { display: block; margin: 20px 0; font-size: 2rem; }
.signal-metric i { display: block; height: 2px; background: var(--conversion-lime); transform-origin: left; animation: signalLine 3.4s ease-in-out infinite; }
@keyframes signalLine { 0%,100% { transform: scaleX(.42) rotate(-7deg); } 50% { transform: scaleX(1) rotate(-7deg); } }

/* Process */
.conversion-process {
  position: relative;
  padding: clamp(105px,11vw,180px) 0 clamp(110px,12vw,185px);
  color: #f4f5f1;
  background: radial-gradient(circle at 12% 10%,rgba(111,77,255,.16),transparent 30%), #090a0e;
}
.conversion-process::before { content:""; position:absolute; inset:0; opacity:.25; background-image:radial-gradient(circle at center,rgba(255,255,255,.16) 1px,transparent 1px); background-size:40px 40px; mask-image:linear-gradient(to bottom,transparent,#000 20%,#000 80%,transparent); }
.conversion-process > * { position: relative; z-index: 1; }
.conversion-process-head > p { color: #8f9398; }
.conversion-process-grid { width: min(1500px, calc(100% - 7vw)); margin: 0 auto; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; align-items: end; }
.process-card { position: relative; overflow: hidden; min-height: 600px; padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: linear-gradient(155deg,rgba(255,255,255,.065),rgba(255,255,255,.018)); display: flex; flex-direction: column; transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .35s ease; }
.process-card:nth-child(2), .process-card:nth-child(4) { transform: translateY(40px); }
.process-card:hover { transform: translateY(-7px); border-color: rgba(184,255,53,.5); }
.process-card:nth-child(2):hover, .process-card:nth-child(4):hover { transform: translateY(28px); }
.process-index { color: #72767d; font-size: .62rem; letter-spacing: .12em; }
.process-card h3 { margin: auto 0 9px; font: 600 clamp(1.35rem,2vw,2rem)/1 "Space Grotesk",sans-serif; letter-spacing: -.05em; }
.process-card > p { margin: 0; color: #898e95; font-size: .76rem; line-height: 1.65; }
.process-demo { position: relative; overflow: hidden; min-height: 300px; margin: 24px 0 28px; border-radius: 20px; background: rgba(255,255,255,.035); }
.prompt-demo { display: grid; place-items: center; padding: 25px; background: radial-gradient(circle at 80% 80%,#405cff,transparent 38%), #11131b; }
.prompt-demo p { position: relative; z-index: 2; margin: 0; font: 400 1.35rem/1.35 "Instrument Serif",serif; color: #d8d9dc; }
.prompt-demo i { position: absolute; border-radius: 50%; filter: blur(1px); animation: promptOrb 6s ease-in-out infinite; }
.prompt-demo i:nth-of-type(1) { width: 180px; height: 180px; right: -50px; bottom: -70px; background: #4264ff; }
.prompt-demo i:nth-of-type(2) { width: 90px; height: 90px; left: -20px; top: -15px; background: #7564ff; opacity: .3; animation-delay: -2s; }
@keyframes promptOrb { 50% { transform: translate(-22px,-18px) scale(1.12); } }
.build-demo { display:grid; place-items:center; background:linear-gradient(150deg,#f4f1e8,#dcd9d1); }
.build-window { width: 84%; min-height: 190px; padding: 22px; color:#17191d; border-radius:18px; background:#fff; box-shadow:0 22px 55px rgba(0,0,0,.18); transform:rotate(1deg); animation:buildFloat 5s ease-in-out infinite; }
.build-window b,.build-window small { display:block; }
.build-window b { font-size:.78rem; }
.build-window small { margin-top:7px; color:#8b8e94; font-size:.58rem; }
.build-window > span { display:block; height:4px; margin:25px 0 28px; border-radius:999px; background:#e5e5e5; overflow:hidden; }
.build-window > span i { display:block; width:62%; height:100%; border-radius:inherit; background:#5b74ff; animation:buildProgress 3s ease-in-out infinite; }
.build-window em { display:block; width:88%; height:6px; margin:10px 0; border-radius:999px; background:#dedede; }
.build-window em:nth-of-type(2){width:68%;}.build-window em:nth-of-type(3){width:48%;}
.build-cursor { position:absolute; right:17%; bottom:17%; width:48px; height:48px; border-radius:14px; background:#6578ff; animation:cursorBuild 4.2s ease-in-out infinite; }
@keyframes buildProgress { 0%{width:8%} 65%,100%{width:88%} }
@keyframes buildFloat { 50%{transform:translateY(-10px) rotate(-1deg)} }
@keyframes cursorBuild { 50%{transform:translate(-70px,-85px) rotate(16deg)} }
.chat-demo { padding:30px 20px; display:flex; flex-direction:column; gap:14px; background:linear-gradient(160deg,#151722,#0d1018); }
.chat-demo > div { max-width:90%; padding:14px 16px; border-radius:14px; font-size:.69rem; line-height:1.45; }
.chat-user { align-self:flex-end; color:#202127; background:#f6f6f3; animation:chatAppear 5s ease-in-out infinite; }
.chat-taylo { align-self:flex-start; color:#b6bbc3; background:#252935; animation:chatAppear 5s ease-in-out infinite .7s both; }
.chat-typing { display:flex; gap:4px; width:52px; padding:11px 12px; border-radius:13px; background:#252935; }
.chat-typing i { width:5px; height:5px; border-radius:50%; background:#8c939d; animation:typingBounce 1.2s ease-in-out infinite; }.chat-typing i:nth-child(2){animation-delay:.15s}.chat-typing i:nth-child(3){animation-delay:.3s}
@keyframes chatAppear { 0%,10%{opacity:0;transform:translateY(12px)} 28%,100%{opacity:1;transform:none} }
@keyframes typingBounce { 50%{transform:translateY(-4px);background:var(--conversion-lime)} }
.export-demo { padding:24px 18px; display:grid; align-content:center; gap:12px; background:radial-gradient(circle at 20% 80%,rgba(77,103,255,.35),transparent 35%),#12141b; }
.export-demo > div { position:relative; z-index:2; padding:14px 15px; border:1px solid rgba(255,255,255,.08); border-radius:12px; background:rgba(255,255,255,.045); display:flex; justify-content:space-between; font-size:.68rem; }
.export-demo b { color:var(--conversion-lime); font-size:.56rem; }.export-demo i { position:absolute; width:160px;height:160px;left:-50px;bottom:-70px;border-radius:50%;background:#405cff;filter:blur(8px);animation:exportPulse 4s ease-in-out infinite; }
@keyframes exportPulse { 50%{transform:scale(1.3);opacity:.55} }

/* Workspace */
.conversion-workspace { padding: clamp(105px,11vw,180px) 0; color:#101116; background:#f3f1ec; }
.workspace-heading > p { color:#696c73; }
.workspace-stage { position:relative; width:min(1460px,calc(100% - 7vw)); min-height:720px; margin:0 auto; padding:18px; border:1px solid rgba(10,11,14,.14); border-radius:32px; background:#d8d6d0; display:grid; grid-template-columns:270px minmax(0,1fr) 250px; gap:12px; box-shadow:0 35px 100px rgba(28,26,21,.16); }
.workspace-sidebar-demo,.workspace-inspector-demo,.workspace-preview-demo { overflow:hidden; border-radius:20px; }
.workspace-sidebar-demo { padding:20px; color:#eef0ed; background:#101117; display:flex; flex-direction:column; gap:13px; }
.workspace-brand { display:flex; align-items:center; gap:8px; padding-bottom:16px; border-bottom:1px solid rgba(255,255,255,.09); }.workspace-brand span{width:18px;height:18px;border-radius:6px;background:var(--conversion-violet)}.workspace-brand b{font-size:.7rem}.workspace-brand small{margin-left:auto;color:#737983;font-size:.55rem}
.workspace-message { padding:13px; border-radius:13px; font-size:.64rem; line-height:1.5; }.workspace-message.is-taylo{color:#aeb4bd;background:#1d2029}.workspace-message.is-user{margin-left:18px;color:#16181c;background:#f0f0ed}
.workspace-input { margin-top:auto;padding:14px;border:1px solid rgba(255,255,255,.12);border-radius:13px;color:#6f757e;font-size:.6rem}.workspace-input b{float:right;color:var(--conversion-lime)}
.workspace-preview-demo { min-width:0; background:#fff; display:flex; flex-direction:column; }
.workspace-topbar { height:50px; padding:0 17px; display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;border-bottom:1px solid #e5e5e5;color:#888;font-size:.55rem}.workspace-topbar>span{display:flex;gap:5px}.workspace-topbar i{width:7px;height:7px;border-radius:50%;background:#bababa}.workspace-topbar small{text-align:center}.workspace-topbar b{text-align:right;font-weight:500}
.workspace-page-demo { position:relative; flex:1; padding:28px 36px; color:#eee9df; background:linear-gradient(135deg,#1b1b1c,#0d0e10); overflow:hidden; }
.workspace-page-demo::after{content:"";position:absolute;width:58%;height:100%;right:-8%;top:0;background:linear-gradient(120deg,transparent,rgba(255,119,62,.42)),radial-gradient(circle at 50% 50%,#48464b,transparent 62%);clip-path:polygon(22% 0,100% 0,100% 100%,0 100%)}
.workspace-page-demo nav{position:relative;z-index:2;display:flex;justify-content:space-between;font-size:.65rem;letter-spacing:.12em}.workspace-page-demo>div{position:relative;z-index:2;width:55%;margin-top:24%;}.workspace-page-demo>div small{font-size:.53rem;letter-spacing:.15em}.workspace-page-demo h3{margin:18px 0 26px;font:500 clamp(3rem,5vw,6rem)/.86 "Space Grotesk",sans-serif;letter-spacing:-.07em}.workspace-page-demo button{padding:12px 18px;border:0;border-radius:999px;background:#ff6934;font-size:.64rem;font-weight:700}
.workspace-selection{position:absolute;z-index:4;left:3.7%;top:42%;width:52%;height:31%;border:1px solid var(--conversion-lime);box-shadow:0 0 0 3px rgba(184,255,53,.12);animation:selectionPulse 2.8s ease-in-out infinite}.workspace-selection::before{content:"Heading";position:absolute;left:-1px;top:-20px;padding:4px 7px;color:#071006;background:var(--conversion-lime);font-size:.5rem;font-weight:700}
@keyframes selectionPulse{50%{box-shadow:0 0 0 8px rgba(184,255,53,.06)}}
.workspace-inspector-demo { padding:20px; background:#f8f7f3; display:flex;flex-direction:column;gap:18px}.workspace-inspector-demo>small{color:#9a9ca1;font-size:.52rem;letter-spacing:.14em}.workspace-inspector-demo>strong{font-size:.85rem}.workspace-inspector-demo label{display:grid;gap:8px;font-size:.58rem;color:#767980}.workspace-inspector-demo label>span{display:block;height:4px;border-radius:999px;background:#ddd}.workspace-inspector-demo label>span i{display:block;width:62%;height:100%;background:#191a1e}.workspace-inspector-demo label>b{padding:10px;border:1px solid #ddd;border-radius:9px;color:#222;font-size:.62rem}.workspace-inspector-demo button{margin-top:auto;padding:13px;border:0;border-radius:10px;color:#0b1108;background:var(--conversion-lime);font-weight:700;font-size:.62rem}
.workspace-update-pill{position:absolute;z-index:7;left:47%;bottom:30px;padding:12px 16px;border-radius:999px;color:#dce0dc;background:rgba(12,13,17,.92);font-size:.6rem;box-shadow:0 12px 38px rgba(0,0,0,.28)}.workspace-update-pill i{display:inline-block;width:7px;height:7px;margin-right:8px;border-radius:50%;background:var(--conversion-lime);animation:updateBlink 1s ease-in-out infinite}@keyframes updateBlink{50%{opacity:.2}}
.workspace-proof-row{width:min(1420px,calc(100% - 10vw));margin:30px auto 0;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--conversion-line);border-bottom:1px solid var(--conversion-line)}.workspace-proof-row span{padding:18px 4px;font-size:.7rem}.workspace-proof-row b{margin-right:10px;color:#85878d;font-size:.58rem}

/* Agency */
.conversion-agency { position:relative; padding:clamp(105px,11vw,175px) max(5vw,30px); color:#f2f3ef; background:radial-gradient(circle at 80% 20%,rgba(75,98,255,.18),transparent 34%),#090a0e; display:grid;grid-template-columns:minmax(280px,.72fr) minmax(480px,1.28fr);gap:7vw;align-items:center; }
.agency-conversion-copy h2 { max-width:700px; }
.agency-conversion-copy>p:not(.section-kicker){max-width:540px;margin:28px 0;color:#92969c;line-height:1.7}.agency-conversion-copy>a{display:inline-flex;gap:18px;align-items:center;color:#0c1109;background:var(--conversion-lime);padding:15px 20px;border-radius:999px;font-size:.74rem;font-weight:800}
.agency-dashboard-demo{padding:18px;border:1px solid rgba(255,255,255,.12);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));box-shadow:0 35px 100px rgba(0,0,0,.35)}
.agency-demo-head{padding:10px 6px 22px;display:flex;justify-content:space-between;align-items:center}.agency-demo-head div{display:grid;gap:6px}.agency-demo-head small{color:#737983;font-size:.52rem;letter-spacing:.14em}.agency-demo-head strong{font-size:1rem}.agency-demo-head button{padding:11px 14px;border:1px solid rgba(255,255,255,.13);border-radius:999px;color:#e9ebe7;background:rgba(255,255,255,.04);font-size:.6rem}
.agency-client-row{padding:16px;border-top:1px solid rgba(255,255,255,.08);display:grid;grid-template-columns:38px 1fr auto;gap:13px;align-items:center}.agency-avatar{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;color:#0a0c09;background:var(--conversion-lime);font-weight:800}.agency-client-row div{display:grid;gap:4px}.agency-client-row strong{font-size:.76rem}.agency-client-row small{color:#7f848c;font-size:.59rem}.agency-client-row>b{padding:8px 11px;border:1px solid rgba(255,255,255,.09);border-radius:999px;color:#aeb3bb;font-size:.55rem}
.agency-demo-metrics{margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,255,255,.08);display:grid;grid-template-columns:repeat(3,1fr)}.agency-demo-metrics span{padding:12px 16px;display:grid;gap:7px;border-right:1px solid rgba(255,255,255,.08)}.agency-demo-metrics span:last-child{border:0}.agency-demo-metrics small{color:#6f747c;font-size:.48rem;letter-spacing:.12em}.agency-demo-metrics strong{font-size:1.6rem;letter-spacing:-.05em}
.agency-economics-strip{grid-column:1/-1;margin-top:15px;border-top:1px solid rgba(255,255,255,.1);display:grid;grid-template-columns:repeat(3,1fr)}.agency-economics-strip>span{padding:30px 0;display:grid;gap:7px}.agency-economics-strip strong{font-size:1.7rem}.agency-economics-strip small{color:#7e838a;font-size:.65rem}

/* Plans */
.conversion-plans { padding:clamp(105px,11vw,170px) 0; color:#111216; background:#f4f2ed; }
.conversion-plans .conversion-section-head>p{color:#686b72}.conversion-plan-grid{width:min(1420px,calc(100% - 10vw));margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.conversion-plan-grid>a{position:relative;min-height:410px;padding:28px;border:1px solid var(--conversion-line);border-radius:24px;color:#111216;background:rgba(255,255,255,.45);display:flex;flex-direction:column;transition:transform .35s ease,box-shadow .35s ease}.conversion-plan-grid>a:hover{transform:translateY(-8px);box-shadow:0 24px 60px rgba(29,27,22,.12)}.conversion-plan-grid>a.is-featured{color:#f4f5f1;background:#0d0e12;border-color:#0d0e12}.conversion-plan-grid>a>span{position:absolute;right:25px;top:25px;color:#8a8c91;font-size:.62rem}.conversion-plan-grid small{font-size:.56rem;letter-spacing:.15em;color:#81848a}.conversion-plan-grid h3{margin:32px 0 9px;font:600 2.3rem/1 "Space Grotesk",sans-serif;letter-spacing:-.06em}.conversion-plan-grid strong{font-size:1.45rem}.conversion-plan-grid p{max-width:260px;margin:22px 0;color:#6f7279;font-size:.75rem;line-height:1.6}.conversion-plan-grid .is-featured p{color:#8f949d}.conversion-plan-grid b{margin-top:auto;font-size:.68rem}

/* FAQ + final */
.conversion-faq{padding:clamp(100px,10vw,160px) max(5vw,30px);color:#f0f2ee;background:#0a0b0f;display:grid;grid-template-columns:.7fr 1.3fr;gap:9vw}.faq-title h2{font-size:clamp(2.8rem,5vw,5.6rem)}.faq-list{border-top:1px solid rgba(255,255,255,.12)}.faq-list details{border-bottom:1px solid rgba(255,255,255,.12)}.faq-list summary{padding:25px 0;cursor:pointer;font-size:.92rem;font-weight:600;list-style:none}.faq-list summary::after{content:"+";float:right;color:var(--conversion-lime);font-size:1.2rem}.faq-list details[open] summary::after{content:"−"}.faq-list p{max-width:730px;margin:-6px 0 26px;color:#898e95;font-size:.78rem;line-height:1.7}
.conversion-final{position:relative;overflow:hidden;padding:clamp(110px,12vw,200px) 5vw;text-align:center;color:#111216;background:var(--conversion-lime)}.conversion-final h2{position:relative;z-index:2;font-size:clamp(3.5rem,8vw,8rem)}.conversion-final>p:not(.section-kicker){position:relative;z-index:2;max-width:600px;margin:26px auto 36px;font-size:.9rem;line-height:1.65}.conversion-final .final-cta-button{position:relative;z-index:2;color:#f0f2ed;background:#0c0d10;border:0}.conversion-final-orbit{position:absolute;width:62vw;height:62vw;left:19vw;top:-24vw;border:1px solid rgba(0,0,0,.16);border-radius:50%;animation:conversionOrbit 16s linear infinite}.conversion-final-orbit::before,.conversion-final-orbit::after{content:"";position:absolute;border:1px solid rgba(0,0,0,.14);border-radius:50%}.conversion-final-orbit::before{inset:12%}.conversion-final-orbit::after{inset:25%}@keyframes conversionOrbit{to{transform:rotate(360deg)}}

/* Footer */
.conversion-footer{display:grid;grid-template-columns:1.2fr .7fr 1.2fr auto;gap:32px;align-items:start}.footer-link-block{display:grid;gap:9px}.footer-link-block a{color:#858a92;font-size:.66rem}.footer-link-block a:hover{color:#fff}

/* Pricing */
.conversion-pricing-page{background:#090a0e;color:#f2f3ef}.conversion-pricing-main{padding-top:112px;overflow:hidden}.conversion-pricing-hero{padding:90px max(5vw,28px) 70px;text-align:center;background:radial-gradient(circle at 50% 0,rgba(105,75,255,.22),transparent 38%)}.conversion-pricing-hero h1{margin:0;font:600 clamp(4rem,9vw,9rem)/.82 "Space Grotesk",sans-serif;letter-spacing:-.075em}.conversion-pricing-hero>p:not(.section-kicker){max-width:560px;margin:28px auto 34px;color:#979ba2;font-size:.92rem}.conversion-pricing-hero .pricing-audience-switch{margin:0 auto}.conversion-business-plans{padding:70px max(4vw,24px) 0;background:#f4f2ed;color:#111216}.conversion-price-control{width:min(1420px,100%);margin:0 auto 22px}.conversion-smart-plan-grid{width:min(1420px,100%);margin:0 auto}.conversion-smart-plan-grid .smart-plan-card{min-height:690px;background:rgba(255,255,255,.62);border-color:rgba(10,11,14,.13)}.conversion-smart-plan-grid .smart-plan-card.is-recommended{color:#f2f3ef;background:#101116}.conversion-smart-plan-grid .smart-plan-card h2{font-size:2.6rem;letter-spacing:-.06em}.conversion-smart-plan-grid .smart-plan-card>p{min-height:75px}.conversion-compare{width:min(1420px,100%);margin:90px auto 0;padding:80px 0 120px;display:grid;grid-template-columns:.72fr 1.28fr;gap:8vw;align-items:start}.conversion-compare h2{margin:0;font:600 clamp(2.7rem,5vw,5.4rem)/.9 "Space Grotesk",sans-serif;letter-spacing:-.065em}.conversion-compare>div>p:not(.section-kicker){color:#696c72;line-height:1.7}.conversion-compare .comparison-table{box-shadow:none}.conversion-agency-plans{padding:90px max(5vw,28px) 130px;background:linear-gradient(180deg,#f4f2ed 0 32%,#090a0e 32%);color:#111216}.conversion-agency-plans .agency-intro{width:min(1420px,100%);margin:0 auto 75px}.conversion-agency-plans .agency-intro h2{margin:0;font:600 clamp(3rem,6vw,6.4rem)/.88 "Space Grotesk",sans-serif;letter-spacing:-.07em}.conversion-agency-calculator{width:min(1420px,100%);margin:0 auto;color:#f2f3ef}.conversion-agency-economics{width:min(1420px,100%);margin:20px auto 0}.conversion-pricing-cta{margin:0;padding:110px max(5vw,28px);border:0;border-radius:0;color:#101116;background:var(--conversion-lime)}.conversion-pricing-cta h2{margin:0;font:600 clamp(3rem,6vw,6.5rem)/.88 "Space Grotesk",sans-serif;letter-spacing:-.07em}.conversion-pricing-cta button{color:#f2f3ef;background:#0b0c0f}

/* Legal */
.conversion-legal-page{background:#090a0e}.conversion-legal-main{padding:180px 5vw 130px}.conversion-legal-hero{width:min(1420px,100%);margin:0 auto 65px}.conversion-legal-hero h1{margin:0;font:600 clamp(4rem,9vw,9rem)/.82 "Space Grotesk",sans-serif;letter-spacing:-.075em}.conversion-legal-hero>p:not(.section-kicker){max-width:620px;margin:30px 0 0;color:#92969e;line-height:1.7}.conversion-legal-card{width:min(1100px,100%);margin:0 auto;padding:28px;border-radius:28px;color:#111216;background:#f4f2ed;display:grid;grid-template-columns:.6fr 1.4fr;gap:45px}.conversion-legal-brand{padding:25px;border-radius:20px;color:#f1f3ef;background:#101116;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end}.conversion-legal-brand .brand-glyph{margin-bottom:auto}.conversion-legal-brand strong{font-size:2rem}.conversion-legal-brand small{margin-top:6px;color:#858a92}

@media (max-width: 1180px) {
  .landing-nav { gap: 14px; }
  .landing-nav > a:not(.nav-cta) { font-size: .67rem; }
  .conversion-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-card:nth-child(2),.process-card:nth-child(4){transform:none}.process-card:nth-child(2):hover,.process-card:nth-child(4):hover{transform:translateY(-7px)}
  .workspace-stage{grid-template-columns:230px 1fr}.workspace-inspector-demo{display:none}
  .conversion-agency{grid-template-columns:1fr}.agency-conversion-copy{max-width:800px}
  .conversion-footer{grid-template-columns:1fr 1fr}.version-badge{justify-self:start}
}
@media (max-width: 900px) {
  .landing-nav > a[href="#examples"],.landing-nav > a[href="#agencies"],.pricing-header .landing-nav > a:nth-child(1),.pricing-header .landing-nav > a:nth-child(4),.conversion-legal-page .landing-nav > a:nth-child(1),.conversion-legal-page .landing-nav > a:nth-child(4){display:none}
  .conversion-section-head,.conversion-process-head{grid-template-columns:1fr;gap:24px}
  .conversion-showcase-grid{grid-template-columns:1fr}.showcase-card-wide{grid-row:auto;min-height:680px}.showcase-card{min-height:560px}
  .workspace-stage{grid-template-columns:1fr;padding:10px}.workspace-sidebar-demo{display:none}.workspace-preview-demo{min-height:620px}.workspace-update-pill{left:35%}.workspace-proof-row{grid-template-columns:repeat(2,1fr)}
  .conversion-plan-grid{grid-template-columns:1fr}.conversion-plan-grid>a{min-height:330px}
  .conversion-faq{grid-template-columns:1fr;gap:50px}
  .conversion-compare{grid-template-columns:1fr;gap:45px}
  .conversion-legal-card{grid-template-columns:1fr}.conversion-legal-brand{min-height:240px}
}
@media (max-width: 640px) {
  .conversion-section-head,.conversion-process-head,.conversion-showcase-grid,.workspace-proof-row,.conversion-plan-grid{width:calc(100% - 32px)}
  .conversion-process-grid{width:calc(100% - 24px);grid-template-columns:1fr}.process-card{min-height:530px}
  .showcase-card-wide{min-height:580px}.showcase-mori-copy{width:72%;padding-top:25%}.mori-cup{right:-2%;width:38%}.showcase-card{border-radius:20px}
  .workspace-stage{width:calc(100% - 22px);min-height:570px;border-radius:22px}.workspace-page-demo{padding:24px 20px}.workspace-page-demo>div{width:72%;margin-top:35%}.workspace-selection{width:68%;left:4%;top:43%}.workspace-update-pill{left:50%;transform:translateX(-50%);white-space:nowrap}.workspace-proof-row{grid-template-columns:1fr}
  .conversion-agency{padding-left:20px;padding-right:20px}.agency-economics-strip{grid-template-columns:1fr}.agency-economics-strip>span{border-bottom:1px solid rgba(255,255,255,.08)}
  .conversion-footer{grid-template-columns:1fr}.footer-link-block{grid-template-columns:repeat(4,auto);justify-content:start;gap:18px}
  .conversion-pricing-main{padding-top:82px}.conversion-pricing-hero{padding-top:65px}.conversion-pricing-hero h1{font-size:clamp(3.6rem,17vw,6rem)}.conversion-smart-plan-grid .smart-plan-card{min-height:auto}.conversion-compare{padding-bottom:90px}
  .conversion-legal-main{padding:130px 18px 90px}.conversion-legal-hero h1{font-size:clamp(3.4rem,18vw,6rem)}.conversion-legal-card{padding:14px;gap:18px}
}
@media (prefers-reduced-motion: reduce) {
  .mori-cup,.mori-cup span,.form-shapes i,.signal-metric i,.prompt-demo i,.build-window,.build-window>span i,.build-cursor,.chat-user,.chat-taylo,.chat-typing i,.export-demo i,.workspace-selection,.workspace-update-pill i,.conversion-final-orbit { animation: none !important; }
}

/* v4.23 contrast corrections */
.conversion-smart-plan-grid .free-plan .smart-plan-cta,
.conversion-smart-plan-grid .launch-plan .smart-plan-cta {
  color: #f2f3ef;
  border-color: #111216;
  background: #111216;
}
.conversion-legal-hero h1 { color: #f3f4f0; }
.conversion-legal-card .legal-details dt { color: #686b70; font-weight: 600; }
.conversion-legal-card .legal-details dd { color: #111216; font-weight: 500; }
.conversion-legal-brand strong { color: #f3f4f0; }
.conversion-legal-brand small { color: #8d929a; }

/* v4.24 Fluid Plans ------------------------------------------------------- */
.fluid-pricing-page {
  --fp-ink: #090a0e;
  --fp-paper: #f4f2ed;
  --fp-paper-bright: #fbfaf7;
  --fp-line: rgba(12,13,16,.13);
  --fp-muted: #6d7077;
  --fp-lime: #b8ff35;
  --fp-violet: #8b6dff;
  color: #f1f3ef;
  background: var(--fp-ink);
}
.fluid-pricing-main { overflow: hidden; padding-top: 112px; }
.fluid-pricing-main [hidden] { display: none !important; }

.fluid-pricing-hero {
  position: relative;
  min-height: 780px;
  padding: clamp(90px,10vw,155px) max(5vw,28px) 72px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 7%,rgba(108,82,255,.22),transparent 31%),
    radial-gradient(circle at 86% 65%,rgba(184,255,53,.08),transparent 28%),
    #090a0e;
}
.fluid-pricing-hero::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.34;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:80px 80px;
  mask-image:radial-gradient(circle at 50% 35%,#000 0,transparent 68%);
}
.fluid-pricing-hero-copy { position:relative; z-index:3; max-width:1040px; }
.fluid-pricing-hero-copy h1 {
  margin: 0;
  font: 600 clamp(4rem,8vw,8.6rem)/.84 "Space Grotesk",sans-serif;
  letter-spacing: -.078em;
}
.fluid-pricing-hero-copy h1 em {
  color: var(--fp-lime);
  font-family: "Instrument Serif",serif;
  font-weight:400;
  letter-spacing:-.055em;
}
.fluid-pricing-hero-copy > p:not(.section-kicker) {
  max-width:640px;
  margin:30px auto 0;
  color:#979ca5;
  font-size:clamp(.82rem,1.15vw,.98rem);
  line-height:1.72;
}
.fluid-pricing-orbit {
  position:absolute;
  z-index:1;
  width:min(980px,82vw);
  height:min(980px,82vw);
  top:-360px;
  left:50%;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  transform:translateX(-50%);
  animation:fluidPricingOrbit 28s linear infinite;
}
.fluid-pricing-orbit i { position:absolute; inset:12%; border:1px solid rgba(255,255,255,.06); border-radius:50%; }
.fluid-pricing-orbit i:nth-child(2){inset:25%}.fluid-pricing-orbit i:nth-child(3){inset:38%}
.fluid-pricing-orbit span {
  position:absolute;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:999px;
  color:#878c94;
  background:rgba(9,10,14,.8);
  font-size:.54rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.fluid-pricing-orbit span:nth-of-type(1){left:8%;top:58%}.fluid-pricing-orbit span:nth-of-type(2){right:5%;top:64%}.fluid-pricing-orbit span:nth-of-type(3){left:46%;bottom:2%}
@keyframes fluidPricingOrbit { to { transform:translateX(-50%) rotate(360deg); } }

.fluid-pricing-flow {
  position:relative;
  z-index:4;
  width:min(980px,100%);
  margin:58px auto 40px;
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1.15fr;
  gap:14px;
  align-items:center;
}
.fluid-pricing-flow > b { color:#4d5159; font-size:1.15rem; }
.pricing-flow-step,
.pricing-flow-choices {
  min-height:112px;
  padding:18px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  text-align:left;
  background:rgba(255,255,255,.035);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
}
.pricing-flow-step { position:relative; overflow:hidden; display:grid; align-content:center; gap:5px; }
.pricing-flow-step small { color:#626771; font-size:.52rem; letter-spacing:.12em; }
.pricing-flow-step strong { font-size:.8rem; }
.pricing-flow-step > span { color:#7f848d; font-size:.62rem; }
.pricing-flow-brief > i {
  position:absolute;
  width:90px;height:90px;right:-35px;bottom:-42px;border-radius:50%;
  background:#405cff;
  filter:blur(10px);
  animation:flowBriefPulse 4.6s ease-in-out infinite;
}
@keyframes flowBriefPulse { 50%{transform:scale(1.25);opacity:.58} }
.pricing-flow-preview > div { display:flex; gap:4px; margin-top:8px; }
.pricing-flow-preview > div i { width:7px;height:7px;border-radius:50%;background:#59606a;animation:flowDot 1.2s ease-in-out infinite; }
.pricing-flow-preview > div i:nth-child(2){animation-delay:.16s}.pricing-flow-preview > div i:nth-child(3){animation-delay:.32s}
@keyframes flowDot { 50%{transform:translateY(-4px);background:var(--fp-lime)} }
.pricing-flow-choices { display:grid; gap:7px; align-content:center; }
.pricing-flow-choices span { padding:8px 11px;border-radius:9px;color:#a7abb1;background:rgba(255,255,255,.045);font-size:.62rem;animation:flowChoice 4.8s ease-in-out infinite; }
.pricing-flow-choices span:nth-child(2){animation-delay:1.6s}.pricing-flow-choices span:nth-child(3){animation-delay:3.2s}
@keyframes flowChoice { 0%,28%,100%{color:#a7abb1;background:rgba(255,255,255,.045)} 12%{color:#0b1009;background:var(--fp-lime)} }

.fluid-audience-switch { position:relative; z-index:4; margin:0 auto; border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.035); }
.fluid-audience-switch button { min-width:190px; }
.fluid-audience-switch button.is-active { color:#0a0d09; }

.fluid-pricing-rail { margin:0; }

.fluid-business-panel { color:#111216; background:var(--fp-paper); }
.fluid-pricing-intro {
  width:min(1420px,calc(100% - 10vw));
  margin:0 auto;
  padding:clamp(100px,10vw,150px) 0 55px;
  display:grid;
  grid-template-columns:1fr .68fr;
  gap:8vw;
  align-items:end;
}
.fluid-pricing-intro h2,
.fluid-choice-strip h2,
.fluid-agency-hero h2,
.fluid-agency-controls h3,
.fluid-pricing-final h2 {
  margin:0;
  font:600 clamp(2.8rem,5.7vw,6.2rem)/.88 "Space Grotesk",sans-serif;
  letter-spacing:-.07em;
}
.fluid-pricing-intro > p { max-width:520px; margin:0; color:#696c72; font-size:.84rem; line-height:1.7; }

.fluid-preview-plan {
  position:relative;
  width:min(1420px,calc(100% - 10vw));
  min-height:310px;
  margin:0 auto 28px;
  padding:26px;
  border:1px solid var(--fp-line);
  border-radius:26px;
  color:#f1f3ef;
  background:
    radial-gradient(circle at 72% 30%,rgba(75,96,255,.21),transparent 27%),
    #0d0e12;
  display:grid;
  grid-template-columns:52px minmax(240px,.8fr) minmax(300px,1.1fr) auto;
  gap:28px;
  align-items:center;
  overflow:hidden;
  transition:transform .35s ease,box-shadow .35s ease;
}
.fluid-preview-plan:hover { transform:translateY(-5px);box-shadow:0 25px 70px rgba(26,24,20,.18); }
.fluid-plan-number { color:#777b83; font-size:.62rem; letter-spacing:.12em; }
.fluid-preview-copy small,.fluid-plan-top small,.fluid-agency-pricing small { color:#818690;font-size:.55rem;font-weight:700;letter-spacing:.14em; }
.fluid-preview-copy h3,.fluid-plan h3 { margin:20px 0 12px;font:600 clamp(2.4rem,4.2vw,4.4rem)/.88 "Space Grotesk",sans-serif;letter-spacing:-.07em; }
.fluid-preview-copy p { max-width:390px;margin:0;color:#8e939c;font-size:.72rem;line-height:1.65; }
.fluid-preview-animation {
  position:relative;
  min-height:205px;
  padding:18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  background:rgba(255,255,255,.045);
  overflow:hidden;
}
.preview-browser-bar { display:flex;align-items:center;gap:5px;padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.07); }
.preview-browser-bar i{width:6px;height:6px;border-radius:50%;background:#646a73}.preview-browser-bar span{margin-left:auto;color:#666c75;font-size:.5rem}
.preview-building-lines{display:grid;gap:10px;margin-top:25px}.preview-building-lines i{height:7px;border-radius:999px;background:linear-gradient(90deg,#4f5661,#272b31);transform-origin:left;animation:previewLine 3s ease-in-out infinite}.preview-building-lines i:nth-child(2){width:78%;animation-delay:.2s}.preview-building-lines i:nth-child(3){width:58%;animation-delay:.4s}.preview-building-lines i:nth-child(4){width:88%;animation-delay:.6s}
@keyframes previewLine{0%,100%{transform:scaleX(.22);opacity:.35}55%{transform:scaleX(1);opacity:1}}
.fluid-preview-animation>b{position:absolute;left:18px;bottom:17px;color:#9da2ab;font-size:.56rem}.fluid-preview-animation>em{position:absolute;width:95px;height:95px;right:-27px;bottom:-34px;border-radius:27px;background:var(--fp-violet);transform:rotate(16deg);animation:previewShape 4s ease-in-out infinite}@keyframes previewShape{50%{transform:translate(-12px,-8px) rotate(26deg);border-radius:50%}}
.fluid-plan-button {
  min-width:190px;
  min-height:50px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:#f1f3ef;
  background:rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  font-size:.7rem;
  font-weight:800;
  cursor:pointer;
  transition:transform .22s ease,background .22s ease,border-color .22s ease;
}
.fluid-plan-button:hover { transform:translateY(-3px);border-color:rgba(184,255,53,.42); }
.fluid-plan-button.dark { color:#f2f3ef;background:#101116;border-color:#101116; }
.fluid-plan-button.lime { color:#0b1009;background:var(--fp-lime);border-color:var(--fp-lime); }

.fluid-plan-toolbar {
  width:min(1420px,calc(100% - 10vw));
  margin:70px auto 18px;
  display:flex;
  justify-content:space-between;
  align-items:end;
}
.fluid-plan-toolbar > div:first-child { display:grid;gap:6px; }
.fluid-plan-toolbar small { color:#85888e;font-size:.54rem;letter-spacing:.14em; }
.fluid-plan-toolbar strong { font-size:1rem; }
.fluid-billing-toggle { border-color:var(--fp-line);background:rgba(255,255,255,.46); }
.fluid-billing-toggle button { color:#70737a; }
.fluid-billing-toggle button.is-active { color:#f4f5f1;background:#111216; }

.fluid-plan-pair {
  width:min(1420px,calc(100% - 10vw));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.fluid-plan {
  position:relative;
  min-height:730px;
  padding:30px;
  border:1px solid var(--fp-line);
  border-radius:28px;
  background:rgba(255,255,255,.5);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .35s ease,box-shadow .35s ease;
}
.fluid-plan:hover { transform:translateY(-7px);box-shadow:0 28px 70px rgba(36,31,23,.12); }
.fluid-plan-business { color:#f1f3ef;background:#101116;border-color:#101116; }
.fluid-plan-top,.fluid-plan-title { display:flex;align-items:start;justify-content:space-between;gap:20px; }
.fluid-plan-title { margin-top:28px;align-items:end; }
.fluid-plan h3 { margin:0; }
.fluid-price { display:grid;text-align:right; }
.fluid-price strong { font:600 clamp(2rem,3.8vw,3.5rem)/1 "Space Grotesk",sans-serif;letter-spacing:-.06em; }
.fluid-price span { color:#7c7f85;font-size:.57rem; }
.fluid-plan > p { max-width:510px;min-height:52px;margin:23px 0;color:#686c72;font-size:.73rem;line-height:1.65; }
.fluid-plan-business > p { color:#8e939c; }
.fluid-plan-visual { min-height:190px;margin:10px 0 22px;border-radius:18px;overflow:hidden; }
.launch-file-visual { position:relative;padding:22px;color:#dfe2de;background:#111216;display:grid;grid-template-columns:repeat(3,1fr);gap:10px;align-items:center; }
.launch-file-visual>div{height:126px;padding:12px;border:1px solid rgba(255,255,255,.09);border-radius:12px;background:rgba(255,255,255,.04);display:grid;align-content:start;gap:9px;animation:fileFloat 4.4s ease-in-out infinite}.launch-file-visual>div:nth-child(2){transform:translateY(15px);animation-delay:.35s}.launch-file-visual>div:nth-child(3){animation-delay:.7s}.launch-file-visual small{color:#9ca1a9;font-size:.5rem}.launch-file-visual i{height:4px;border-radius:99px;background:#4d535d}.launch-file-visual i:nth-child(3){width:70%}.launch-file-visual>span{position:absolute;right:20px;bottom:17px;color:var(--fp-lime);font-size:.55rem;font-weight:700}@keyframes fileFloat{50%{transform:translateY(-6px)} }.launch-file-visual>div:nth-child(2){animation-name:fileFloatMiddle}@keyframes fileFloatMiddle{0%,100%{transform:translateY(15px)}50%{transform:translateY(8px)}}
.business-live-visual { padding:22px;color:#f0f2ee;background:linear-gradient(145deg,#181a21,#0b0c10); }
.business-live-head,.business-live-foot{display:flex;justify-content:space-between;align-items:center}.business-live-head span{color:#b7bbc2;font-size:.6rem}.business-live-head span i{display:inline-block;width:7px;height:7px;margin-right:7px;border-radius:50%;background:var(--fp-lime);box-shadow:0 0 0 5px rgba(184,255,53,.08);animation:liveBlink 1.7s ease-in-out infinite}@keyframes liveBlink{50%{opacity:.32}}.business-live-head b{font-size:.7rem}.business-live-chart{position:relative;height:105px;margin:20px 0;border-bottom:1px solid rgba(255,255,255,.08)}.business-live-chart>i{position:absolute;left:0;right:0;height:1px;background:rgba(255,255,255,.05)}.business-live-chart>i:nth-child(1){top:0}.business-live-chart>i:nth-child(2){top:25%}.business-live-chart>i:nth-child(3){top:50%}.business-live-chart>i:nth-child(4){top:75%}.business-live-chart>i:nth-child(5){bottom:0}.business-live-chart svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.business-live-chart path{fill:none;stroke:var(--fp-lime);stroke-width:3;stroke-linecap:round;stroke-dasharray:420;stroke-dashoffset:420;animation:businessChart 4s ease-in-out infinite}@keyframes businessChart{0%,10%{stroke-dashoffset:420}70%,100%{stroke-dashoffset:0}}.business-live-foot{gap:8px}.business-live-foot span{flex:1;padding:8px;border:1px solid rgba(255,255,255,.07);border-radius:8px;color:#848a93;text-align:center;font-size:.49rem}
.fluid-hosting-choice { margin:0 0 12px; }
.fluid-launch-total { margin-bottom:18px; }
.fluid-billing-note { margin:0 0 18px; }
.fluid-plan ul { margin:0 0 24px;padding:0;list-style:none;display:grid;gap:10px; }
.fluid-plan li { color:#6d7076;font-size:.67rem;line-height:1.45; }
.fluid-plan-business li { color:#a1a6ad; }
.fluid-plan li i { display:inline-grid;width:18px;height:18px;margin-right:7px;border-radius:50%;place-items:center;color:#0b1009;background:var(--fp-lime);font-size:.52rem;font-style:normal; }
.fluid-plan .fluid-plan-button { width:100%;margin-top:auto; }

.fluid-choice-strip {
  width:min(1420px,calc(100% - 10vw));
  margin:100px auto 0;
  padding:90px 0 120px;
  border-top:1px solid var(--fp-line);
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:8vw;
}
.fluid-choice-strip h2 { font-size:clamp(2.8rem,5vw,5.4rem); }
.fluid-choice-columns { display:grid;grid-template-columns:1fr 1fr;border-top:1px solid var(--fp-line); }
.fluid-choice-columns article { padding:24px 25px 24px 0;border-bottom:1px solid var(--fp-line); }
.fluid-choice-columns article+article{padding-left:25px;border-left:1px solid var(--fp-line)}
.fluid-choice-columns small{color:#85888e;font-size:.54rem;letter-spacing:.14em}.fluid-choice-columns strong{display:block;margin:16px 0 9px;font-size:1rem}.fluid-choice-columns p{margin:0;color:#6c6f75;font-size:.7rem;line-height:1.65}

.fluid-agency-panel { color:#f1f3ef;background:#090a0e; }
.fluid-agency-hero {
  width:min(1420px,calc(100% - 10vw));
  margin:0 auto;
  padding:clamp(105px,11vw,170px) 0 70px;
  display:grid;
  grid-template-columns:.76fr 1.24fr;
  gap:8vw;
  align-items:center;
}
.fluid-agency-hero h2 { max-width:700px; }
.fluid-agency-hero>div:first-child>p:not(.section-kicker){max-width:520px;margin:26px 0 0;color:#8d929a;font-size:.78rem;line-height:1.7}
.fluid-agency-console{position:relative;min-height:430px;padding:22px;border:1px solid rgba(255,255,255,.09);border-radius:26px;background:radial-gradient(circle at 80% 10%,rgba(75,97,255,.18),transparent 32%),#111218;box-shadow:0 35px 100px rgba(0,0,0,.35);overflow:hidden}.agency-console-head{display:flex;justify-content:space-between;padding:0 4px 18px;border-bottom:1px solid rgba(255,255,255,.08);font-size:.65rem}.agency-console-head b{color:#888e97;font-size:.54rem}.agency-console-head b i{display:inline-block;width:6px;height:6px;margin-right:6px;border-radius:50%;background:var(--fp-lime);animation:liveBlink 1.7s ease-in-out infinite}.agency-console-row{padding:17px 4px;border-bottom:1px solid rgba(255,255,255,.07);display:grid;grid-template-columns:42px 1fr auto;gap:13px;align-items:center;animation:agencyRowFloat 5s ease-in-out infinite}.agency-console-row:nth-child(3){animation-delay:.35s}.agency-console-row:nth-child(4){animation-delay:.7s}@keyframes agencyRowFloat{50%{transform:translateX(5px)}}.agency-console-row em{width:42px;height:42px;border-radius:13px;display:grid;place-items:center;color:#0a0d09;background:var(--fp-lime);font-style:normal;font-weight:800}.agency-console-row span{display:grid;gap:5px}.agency-console-row strong{font-size:.7rem}.agency-console-row small{color:#747a83;font-size:.54rem}.agency-console-row>b{padding:7px 10px;border:1px solid rgba(255,255,255,.08);border-radius:999px;color:#949aa3;font-size:.5rem}.agency-console-add{margin-top:18px;padding:14px;border:1px dashed rgba(255,255,255,.14);border-radius:14px;color:#7f858e;display:flex;align-items:center;gap:12px;font-size:.6rem}.agency-console-add i{width:29px;height:29px;border-radius:9px;background:rgba(255,255,255,.06);display:grid;place-items:center;color:var(--fp-lime);font-style:normal}

.fluid-agency-pricing { width:min(1420px,calc(100% - 10vw));margin:0 auto 20px;display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1); }
.fluid-agency-pricing article{padding:28px 28px 28px 0}.fluid-agency-pricing article+article{padding-left:28px;border-left:1px solid rgba(255,255,255,.1)}.fluid-agency-pricing strong{display:block;margin:17px 0 12px;font:600 2.35rem/1 "Space Grotesk",sans-serif;letter-spacing:-.055em}.fluid-agency-pricing strong em{color:#777d86;font-size:.7rem;font-style:normal}.fluid-agency-pricing p{max-width:330px;margin:0;color:#7f858e;font-size:.67rem;line-height:1.6}

.fluid-agency-calculator { width:min(1420px,calc(100% - 10vw));margin:75px auto 0;border:1px solid rgba(255,255,255,.09);border-radius:28px;background:#111218;display:grid;grid-template-columns:1fr .82fr;overflow:hidden;box-shadow:0 38px 100px rgba(0,0,0,.34); }
.fluid-agency-controls { padding:clamp(30px,4vw,55px); }
.fluid-agency-controls h3 { margin-top:8px;font-size:clamp(2.7rem,5vw,5rem); }
.fluid-agency-controls>div>p:not(.section-kicker){max-width:520px;margin:22px 0 45px;color:#818790;font-size:.72rem;line-height:1.7}
.fluid-agency-controls .agency-range-field { margin-top:27px; }
.fluid-agency-controls .agency-range-field span { color:#bfc3c9; }
.fluid-agency-controls .agency-range-field input { accent-color:var(--fp-lime); }
.fluid-agency-result { padding:clamp(30px,4vw,52px);color:#111216;background:var(--fp-paper-bright);display:flex;flex-direction:column; }
.fluid-agency-result>span{color:#85888e;font-size:.56rem;letter-spacing:.14em;text-transform:uppercase}.fluid-agency-result>strong{margin:12px 0 30px;font:600 clamp(2rem,3.4vw,3.5rem)/.95 "Space Grotesk",sans-serif;letter-spacing:-.06em}.fluid-agency-result>strong b{color:var(--fp-violet)}.fluid-agency-result>div{padding:13px 0;border-top:1px solid var(--fp-line);display:flex;justify-content:space-between;gap:20px;font-size:.67rem}.fluid-agency-result>div span{color:#6c7077}.fluid-agency-result>section{margin:22px 0 16px;padding:22px;border-radius:18px;color:#f1f3ef;background:#111216}.fluid-agency-result>section small{color:#747a83;font-size:.5rem;letter-spacing:.12em}.fluid-agency-result>section strong{display:block;margin:9px 0 5px;font:600 2.4rem/1 "Space Grotesk",sans-serif;letter-spacing:-.06em}.fluid-agency-result>section p{margin:0;color:#7e848d;font-size:.57rem}.fluid-agency-result>footer{padding:13px 0 20px;display:flex;justify-content:space-between;font-size:.65rem}.fluid-agency-result>footer span{color:#6b6f76}.fluid-agency-result .fluid-plan-button{width:100%;margin-top:auto}
.fluid-agency-no-limit{width:min(1420px,calc(100% - 10vw));margin:55px auto 0;padding:0 0 120px;display:flex;justify-content:space-between;gap:30px;border-bottom:1px solid rgba(255,255,255,.1)}.fluid-agency-no-limit span{font-size:1.05rem;font-weight:700}.fluid-agency-no-limit p{max-width:500px;margin:0;color:#7f858d;font-size:.7rem;line-height:1.6}

.fluid-pricing-final { position:relative;overflow:hidden;padding:clamp(110px,12vw,190px) max(5vw,28px);text-align:center;color:#111216;background:var(--fp-lime); }
.fluid-pricing-final>*:not(.fluid-pricing-final-rings){position:relative;z-index:2}.fluid-pricing-final h2{font-size:clamp(3.3rem,7vw,7rem)}.fluid-pricing-final>p:not(.section-kicker){max-width:570px;margin:24px auto 34px;font-size:.82rem;line-height:1.65}.fluid-pricing-final>button{min-width:230px;min-height:54px;padding:0 20px;border:0;border-radius:999px;color:#f1f3ef;background:#0b0c10;display:inline-flex;justify-content:space-between;align-items:center;gap:30px;font-size:.72rem;font-weight:800;cursor:pointer}.fluid-pricing-final-rings{position:absolute;width:760px;height:760px;left:50%;top:-430px;transform:translateX(-50%);border:1px solid rgba(0,0,0,.15);border-radius:50%;animation:fluidFinalSpin 20s linear infinite}.fluid-pricing-final-rings i{position:absolute;border:1px solid rgba(0,0,0,.13);border-radius:50%}.fluid-pricing-final-rings i:nth-child(1){inset:12%}.fluid-pricing-final-rings i:nth-child(2){inset:26%}.fluid-pricing-final-rings i:nth-child(3){inset:40%}@keyframes fluidFinalSpin{to{transform:translateX(-50%) rotate(360deg)}}

.fluid-pricing-page[data-pricing-audience="agency"] .fluid-pricing-hero { background:radial-gradient(circle at 55% 5%,rgba(75,98,255,.24),transparent 32%),radial-gradient(circle at 84% 66%,rgba(184,255,53,.07),transparent 25%),#090a0e; }
.fluid-pricing-page .fluid-business-panel,
.fluid-pricing-page .fluid-agency-panel { animation:fluidPanelIn .42s ease both; }
@keyframes fluidPanelIn { from{opacity:0;transform:translateY(12px)} }

@media (max-width: 1100px) {
  .fluid-pricing-flow { grid-template-columns:1fr 1fr; }
  .fluid-pricing-flow>b{display:none}.pricing-flow-choices{grid-column:1/-1;grid-template-columns:repeat(3,1fr);min-height:auto}
  .fluid-preview-plan{grid-template-columns:44px 1fr 1fr}.fluid-preview-plan .fluid-plan-button{grid-column:2/-1;width:100%}
  .fluid-plan-pair{grid-template-columns:1fr}.fluid-plan{min-height:auto}.fluid-plan .fluid-plan-button{margin-top:20px}
  .fluid-agency-hero{grid-template-columns:1fr}.fluid-agency-console{max-width:850px}
  .fluid-agency-calculator{grid-template-columns:1fr}
}
@media (max-width: 820px) {
  .fluid-pricing-main{padding-top:82px}
  .fluid-pricing-hero{min-height:700px;padding-top:90px}.fluid-pricing-hero-copy h1{font-size:clamp(3.7rem,15vw,6.3rem)}
  .fluid-pricing-flow{grid-template-columns:1fr;margin-top:42px}.pricing-flow-choices{grid-column:auto;grid-template-columns:1fr}
  .fluid-audience-switch button{min-width:145px}
  .fluid-pricing-intro,.fluid-choice-strip{grid-template-columns:1fr;gap:35px}
  .fluid-preview-plan{grid-template-columns:1fr;gap:20px}.fluid-preview-plan>.fluid-plan-number{position:absolute;right:24px;top:24px}.fluid-preview-plan .fluid-plan-button{grid-column:auto}
  .fluid-plan-toolbar{align-items:flex-start;gap:20px;flex-direction:column}
  .fluid-choice-columns{grid-template-columns:1fr}.fluid-choice-columns article+article{padding-left:0;border-left:0}
  .fluid-agency-pricing{grid-template-columns:1fr}.fluid-agency-pricing article+article{padding-left:0;border-left:0;border-top:1px solid rgba(255,255,255,.1)}
  .fluid-agency-no-limit{flex-direction:column}
}
@media (max-width: 560px) {
  .fluid-pricing-hero{padding-left:16px;padding-right:16px}.fluid-pricing-hero-copy h1{font-size:clamp(3.25rem,16vw,5rem)}
  .fluid-pricing-flow{width:100%}.pricing-flow-step,.pricing-flow-choices{min-height:100px}
  .fluid-audience-switch{width:100%;max-width:390px}.fluid-audience-switch button{min-width:0;flex:1}
  .fluid-pricing-intro,.fluid-preview-plan,.fluid-plan-toolbar,.fluid-plan-pair,.fluid-choice-strip,.fluid-agency-hero,.fluid-agency-pricing,.fluid-agency-calculator,.fluid-agency-no-limit{width:calc(100% - 28px)}
  .fluid-preview-plan,.fluid-plan{padding:20px;border-radius:22px}.fluid-preview-animation{min-height:180px}.fluid-plan-title{display:grid;gap:16px}.fluid-price{text-align:left}.fluid-plan-visual{min-height:170px}.launch-file-visual{padding:14px;gap:6px}.launch-file-visual>div{padding:8px}.business-live-foot{display:grid;grid-template-columns:1fr 1fr}.business-live-foot span:last-child{grid-column:1/-1}
  .fluid-choice-strip{padding-bottom:90px}.fluid-agency-console{min-height:380px;padding:16px}.agency-console-row{grid-template-columns:38px 1fr}.agency-console-row>b{display:none}.agency-console-row em{width:38px;height:38px}
  .fluid-agency-controls,.fluid-agency-result{padding:24px 18px}.fluid-agency-result>strong{font-size:2rem}.fluid-agency-result>div{font-size:.61rem}.fluid-pricing-final{padding-left:18px;padding-right:18px}
}
@media (prefers-reduced-motion: reduce) {
  .fluid-pricing-orbit,.pricing-flow-brief>i,.pricing-flow-preview>div i,.pricing-flow-choices span,.preview-building-lines i,.fluid-preview-animation>em,.launch-file-visual>div,.business-live-head span i,.business-live-chart path,.agency-console-head b i,.agency-console-row,.fluid-pricing-final-rings{animation:none!important}
}


/* ==========================================================================
   Phase 4B - full-viewport editor shell + real website canvas
   The canvas is a real layout box sized to the available editor space. The
   site is never transform-scaled, so its own breakpoints, sticky/fixed
   elements, scroll reveals, and parallax behave exactly as they will live.
   ========================================================================== */
:root {
  --studio-topbar: 0px;
  --left-panel: 300px;
  --canvas-frame: rgba(255, 255, 255, .09);
}

body.studio-mode {
  overflow: hidden;
  overscroll-behavior: none;
}

.studio {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow: hidden;
}

.studio-layout,
body:not(.editing-enabled) .studio-layout {
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: var(--left-panel) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.ai-panel,
.inspector-panel {
  grid-column: 1;
  grid-row: 1;
  width: var(--left-panel);
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* ---- Canvas shell -------------------------------------------------------- */
.canvas-area {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: block;
  overflow: hidden;
}

.canvas-scroll,
.canvas-scroll.is-fit-zoom {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.canvas-device,
.canvas-device.is-desktop,
.canvas-device.is-tablet,
.canvas-device.is-mobile {
  flex: 0 0 auto;
  min-width: 0;
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  /* Width and height are assigned in JavaScript as real logical pixels. */
  transform: none;
  transform-origin: top left;
  transition: none;
  contain: layout paint;
  overflow: hidden;
  background: #fff;
}

/* Tablet and mobile keep a device frame so the narrower viewport reads as a
   deliberate breakpoint rather than a broken desktop layout. */
/* Frame drawn with box-shadow only: a border would eat into the logical
   viewport and shift the site's breakpoints by the border width. */
.canvas-device.is-tablet,
.canvas-device.is-mobile {
  box-shadow: 0 0 0 1px var(--canvas-frame), 0 0 90px rgba(0, 0, 0, .55);
}

.browser-chrome { display: none; }

.iframe-wrap {
  position: relative;
  height: 100%;
  min-height: 0;
  background: #fff;
}

#website-preview {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  color-scheme: normal;
}

.canvas-empty {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.canvas-idle-state { text-align: center; }

/* ---- Canvas-side control affordance -------------------------------------- */
.canvas-panel-toggle {
  position: absolute;
  z-index: 12;
  left: 14px;
  top: 14px;
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
  color: #e7ebe5;
  background: rgba(12, 14, 19, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  place-items: center;
  cursor: pointer;
}
.canvas-panel-toggle svg { width: 17px; height: 17px; }

.edit-hint {
  left: calc(var(--left-panel) + 18px);
  right: auto;
  bottom: 18px;
  max-width: min(520px, calc(100vw - var(--left-panel) - 36px));
}

/* ---- Compact sidebar generation progress --------------------------------- */
/* The build monitor now lives in the sidebar. No overlay covers the canvas. */
.ai-panel .studio-build-monitor {
  display: block;
  width: auto;
  min-height: 0;
  max-height: none;
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 13px;
  background: rgba(255, 255, 255, .022);
  grid-template-columns: none;
  gap: 0;
}
.ai-panel .studio-build-monitor .build-monitor-main,
.ai-panel .studio-build-monitor .build-monitor-detail {
  display: block;
  width: auto;
  max-width: none;
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
/* The compact panel above already shows phase, title and percentage. */
.ai-panel .studio-build-monitor .build-monitor-heading,
.ai-panel .studio-build-monitor .build-orb,
.ai-panel .studio-build-monitor .build-time-estimate,
.ai-panel .studio-build-monitor .build-connection-card {
  display: none;
}
.ai-panel .studio-build-monitor .build-progress-block { margin: 0; padding: 0; }
.ai-panel .studio-build-monitor .build-progress-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.ai-panel .studio-build-monitor .build-progress-title { display: flex; align-items: baseline; gap: 6px; }
.ai-panel .studio-build-monitor .build-progress-title strong { font-size: .6rem; }
.ai-panel .studio-build-monitor .build-progress-meta span { font-size: .52rem; }
.ai-panel .studio-build-monitor .build-progress-track { height: 3px; margin-top: 7px; }
.ai-panel .studio-build-monitor .build-live-note {
  margin: 8px 0 0;
  color: #7b827c;
  font-size: .53rem;
  line-height: 1.5;
}
.ai-panel .studio-build-monitor .build-code-window {
  margin-top: 9px;
  max-height: 108px;
  overflow: hidden;
}
.ai-panel .studio-build-monitor .build-code-window pre {
  max-height: 74px;
  overflow: hidden;
  font-size: .46rem;
  line-height: 1.5;
}
.ai-panel .studio-build-monitor .build-step-list {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.ai-panel .studio-build-monitor .build-step-list li {
  padding: 5px 6px;
  gap: 7px;
  font-size: .55rem;
}
.ai-panel .studio-build-monitor .build-step-list small { display: none; }
.ai-panel .studio-build-monitor .build-step-list strong { font-size: .55rem; }
.ai-panel .studio-build-monitor .build-activity-card { margin-top: 10px; padding: 0; border: 0; background: none; }
.ai-panel .studio-build-monitor .build-detail-heading { font-size: .55rem; }
.ai-panel .studio-build-monitor .build-detail-heading strong { font-size: .58rem; }
.ai-panel .studio-build-monitor .build-activity-list {
  max-height: 132px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.ai-panel .studio-build-monitor .build-activity-list strong { font-size: .55rem; }
.ai-panel .studio-build-monitor .build-activity-list span { font-size: .5rem; }
.ai-panel .studio-build-monitor .cancel-build-button {
  width: 100%;
  margin: 8px 0;
  font-size: .55rem;
}
.ai-panel .studio-build-monitor .build-brief-card { margin-top: 9px; font-size: .55rem; }

/* ---- Responsive editor shell --------------------------------------------- */
@media (max-width: 1180px) {
  :root { --left-panel: 288px; }
}

@media (max-width: 980px) {
  :root { --left-panel: 272px; }
  .studio-layout,
  body:not(.editing-enabled) .studio-layout {
    grid-template-columns: var(--left-panel) minmax(0, 1fr);
  }
  .ai-panel,
  .inspector-panel { width: var(--left-panel); }
  /* Device, history and mode controls stay reachable: they live in the sidebar
     and are part of the Phase 4B requirement set. */
  .sidebar-control-stack .history-controls,
  .sidebar-control-stack .device-switcher { display: flex; }
  body.editing-enabled .sidebar-control-stack .mode-switcher { display: flex; }
}

@media (max-width: 860px) {
  .studio-layout,
  body:not(.editing-enabled) .studio-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .canvas-area { grid-column: 1; }
  .canvas-panel-toggle { display: grid; }
  .ai-panel,
  .inspector-panel {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 40;
    width: min(320px, 88vw);
    height: 100%;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 24px 0 60px rgba(0, 0, 0, .45);
    transition: transform 200ms ease, opacity 160ms ease, visibility 160ms ease;
  }
  .ai-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  body.ai-panel-open .ai-panel { transform: translateX(0); }
  body.ai-panel-open .ai-panel { opacity: 1; visibility: visible; pointer-events: auto; }
  body.inspector-open .ai-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
  }
  body.inspector-open .inspector-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .canvas-panel-toggle { width: 44px; height: 44px; }
  .studio-icon-button,
  .device-button,
  .zoom-control button,
  .saved-projects-refresh { min-width: 40px; min-height: 40px; }
  .edit-hint {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: calc(100vw - 32px);
  }
  .sidebar-brand-row .mobile-panel-controls { display: flex; }
}

:where(.landing-header, #landing-main, .studio, .account-projects-menu, .auth-gate, .error-panel)
  :is(button, a[href], input, textarea, select):focus-visible {
  outline: 2px solid #b7ff84;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .ai-panel,
  .inspector-panel { padding-left: 12px; padding-right: 12px; }
  .sidebar-studio-shell { padding-left: 12px; padding-right: 12px; }
  .sidebar-brand-row .project-identity strong { max-width: 112px; }
  /* The Phase 4B viewport chain is percentage-based; the old fixed-topbar
     height math no longer applies. */
  .iframe-wrap { height: 100%; }
  .canvas-scroll { padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-panel,
  .inspector-panel { transition: none; }
}

/* ========================================================================== */
/* Phase 8A — Editorial Launch Book                                            */
/* ========================================================================== */

:root {
  --ink: #101115;
  --paper: #f4f3ed;
  --surface: #fff;
  --surface-soft: #ecebe5;
  --line: rgba(16,17,21,.14);
  --line-strong: rgba(16,17,21,.24);
  --violet: #8b72ff;
  --violet-deep: #7158eb;
  --violet-soft: #ebe7ff;
  --lime: #b7ff84;
  --night: #090a0e;
  --night-soft: #111319;
  --radius-xl: 16px;
  --radius-lg: 14px;
  --radius-md: 12px;
  --content: 1240px;
  --left-panel: 288px;
  --right-panel: 300px;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

body,
button,
textarea,
input,
select { font-family: "Space Grotesk", system-ui, sans-serif; }

.skip-link {
  position: fixed;
  z-index: 4000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 8px;
  color: #101115;
  background: #b7ff84;
  font-size: .78rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.page-noise,
.aurora,
.neon-grid,
.cursor-glow,
.creation-field { display: none !important; }

.brand { gap: 8px; font-size: 1.08rem; letter-spacing: -.03em; }
.brand-glyph { width: 23px; height: 23px; }
.brand-glyph i { border-radius: 3px; }

body.landing-mode,
.fluid-pricing-page { color: #f4f5f1; background: var(--night); }

.landing-header,
.pricing-header {
  width: min(var(--content), calc(100% - 48px));
  min-height: 74px;
  color: #f4f5f1;
}
.landing-header.is-scrolled {
  position: sticky;
  top: 0;
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--content)) / 2));
  background: rgba(9,10,14,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: none;
}
.landing-nav { gap: 22px; color: #9ba29a; font-size: .78rem; }
.landing-nav > a:not(.nav-cta) { font-size: .76rem; }
.landing-nav a:hover { color: #fff; transform: none; }
.nav-cta,
.account-signup {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(183,255,132,.26);
  border-radius: 8px;
  color: #e7ffda;
  background: rgba(183,255,132,.07);
  box-shadow: none;
  backdrop-filter: none;
}
.nav-cta:hover,
.account-signup:hover { color: #101115 !important; background: var(--lime); }
.account-login { min-height: 42px; color: #b7bdb6; }

body.landing-mode .hero.hero-centered {
  width: min(var(--content), calc(100% - 48px));
  min-height: 700px;
  padding: 64px 0 82px;
  display: block;
}
body.landing-mode .hero-copy-centered {
  position: relative;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(470px,1.12fr);
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: clamp(54px,7vw,112px);
  align-items: start;
  text-align: left;
}
body.landing-mode .hero-copy.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}
body.landing-mode .hero-kicker {
  grid-column: 1;
  margin: 10px 0 24px;
  justify-content: flex-start;
  color: #c3ff9b;
  font-size: .7rem;
  letter-spacing: .08em;
}
body.landing-mode .live-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183,255,132,.11);
  animation: none;
}
body.landing-mode .hero h1 {
  grid-column: 1;
  max-width: 700px;
  margin: 0;
  color: #f7f7f3;
  font: 500 clamp(3.8rem,5.4vw,5.25rem)/.93 "Space Grotesk",system-ui,sans-serif;
  letter-spacing: -.04em;
  text-wrap: normal;
  white-space: nowrap;
}
body.landing-mode .hero h1 span {
  display: block;
  color: #c9bfff;
  background: none;
  font: 400 1.04em/.9 "Instrument Serif",Georgia,serif;
  letter-spacing: -.02em;
  -webkit-text-fill-color: currentColor;
}
body.landing-mode .hero-lede {
  grid-column: 1;
  max-width: 56ch;
  margin: 28px 0 0;
  color: #aeb4ad;
  font-size: 1rem;
  line-height: 1.65;
}
body.landing-mode .composer-centered {
  grid-column: 2;
  grid-row: 1 / span 4;
  width: 100%;
  margin: 0;
  align-self: center;
}
body.landing-mode .composer {
  min-height: 370px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  color: #eff2ed;
  background: #111319;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  backdrop-filter: none;
}
body.landing-mode .composer::before,
body.landing-mode .composer-glow { display: none; }
body.landing-mode .composer-label-row {
  min-height: 38px;
  padding: 0 6px;
  color: #d7dcd5;
  font-size: .67rem;
}
body.landing-mode .composer-label-row small { color: #737a73; }
body.landing-mode .selected-plan-context {
  margin: 0 0 2px;
  border: 0;
  border-block: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: transparent;
}
body.landing-mode #prompt {
  min-height: 190px;
  padding: 22px 8px;
  color: #f5f6f2;
  font-size: 1rem;
  line-height: 1.55;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
}
body.landing-mode #prompt::placeholder { color: #969d96; opacity: 1; }
body.landing-mode .composer-footer {
  padding: 10px 4px 3px;
  border-top: 1px solid rgba(255,255,255,.08);
}
body.landing-mode .round-tool {
  width: 44px;
  height: 44px;
  border-color: rgba(255,255,255,.1);
  color: #c9cec7;
  background: transparent;
}
body.landing-mode .generate-button {
  min-height: 48px;
  padding: 0 17px;
  border-radius: 8px;
  color: #101115;
  background: var(--lime);
  box-shadow: none;
}
body.landing-mode .generate-button:hover { background: #c7ff9e; transform: translateY(-1px); }
body.landing-mode .button-orb { display: none; }
body.landing-mode .character-count { color: #737a73; }
body.landing-mode .prompt-suggestions-centered {
  grid-column: 2;
  width: 100%;
  margin: 12px 0 0;
  justify-content: flex-start;
}
body.landing-mode .suggestion {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #8f968f;
  background: transparent;
  font-size: .62rem;
}
body.landing-mode .suggestion:hover { color: #fff; border-color: rgba(139,114,255,.48); background: transparent; }
body.landing-mode .hero-footnote-centered {
  grid-column: 1;
  width: 100%;
  margin: 38px 0 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
body.landing-mode .hero-footnote span { color: #858c85; font-size: .68rem; }
body.landing-mode .hero-footnote i { background: var(--lime); box-shadow: none; }
body.landing-mode .continue-project { grid-column: 1; width: min(100%,430px); margin: 22px 0 0; }

.conversion-rail {
  border-block: 1px solid rgba(255,255,255,.09);
  color: #b7ff84;
  background: #0d0f13;
}
.conversion-rail span,
.conversion-rail i { color: #b7ff84; }
.conversion-rail .signal-track { animation-duration: 48s; }

.conversion-showcase,
.conversion-agency,
.conversion-faq {
  color: var(--ink);
  background: var(--paper);
}
.conversion-process,
.conversion-workspace,
.conversion-plans,
.conversion-final { color: #f5f6f2; background: var(--night); }
.conversion-showcase,
.conversion-process,
.conversion-workspace,
.conversion-agency,
.conversion-plans,
.conversion-faq { padding-block: clamp(78px,9vw,132px); }
.conversion-section-head,
.conversion-process-head {
  width: min(var(--content), calc(100% - 48px));
  margin-bottom: 48px;
  grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
  gap: 7vw;
}
.conversion-section-head h2,
.conversion-process-head h2,
.agency-conversion-copy h2,
.faq-title h2,
.conversion-final h2 {
  max-width: 13ch;
  font-size: clamp(2.7rem,5vw,5.7rem);
  line-height: .95;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.section-kicker { letter-spacing: .08em; }
.conversion-showcase-grid {
  width: min(var(--content), calc(100% - 48px));
  grid-template-columns: 1.22fr .78fr;
  gap: 18px;
}
.showcase-card {
  border: 1px solid rgba(16,17,21,.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}
.showcase-card-wide { grid-row: span 2; }
.showcase-card:hover { transform: none; }
.showcase-caption { border-top: 1px solid rgba(16,17,21,.12); }
.conversion-process-grid {
  width: min(var(--content), calc(100% - 48px));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.process-card {
  min-height: 470px;
  padding: 28px 22px 24px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  background: transparent;
}
.process-card:last-child { border-right: 0; }
.process-card:hover { transform: none; box-shadow: none; }
.process-index { color: var(--lime); }
.process-demo { border-radius: 10px; box-shadow: none; }
.workspace-proof,
.agency-portfolio { border-radius: 14px; box-shadow: none; }
.conversion-plan-list a { border-radius: 0; box-shadow: none; }
.conversion-plan-list a + a { border-left: 1px solid rgba(255,255,255,.1); }
.conversion-faq details { border-radius: 0; border-inline: 0; }
.conversion-final { min-height: 520px; }
.conversion-final-orbit { display: none; }
.final-cta-button { border-radius: 8px; box-shadow: none; }

/* Pricing: shorter decision path and restrained comparison surfaces. */
.fluid-pricing-main { padding-top: 74px; }
.fluid-pricing-hero {
  min-height: 610px;
  padding: 76px 24px 54px;
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr);
  grid-template-areas: "copy flow" "switch switch";
  align-items: center;
  gap: 34px 6vw;
}
.fluid-pricing-orbit,
.fluid-pricing-hero::before { display: none; }
.fluid-pricing-hero-copy { grid-area: copy; max-width: 620px; text-align: left; }
.fluid-pricing-hero-copy h1 {
  margin: 18px 0 22px;
  color: #f6f7f3;
  font-size: clamp(4rem,6.4vw,6rem);
  line-height: .9;
  letter-spacing: -.04em;
}
.fluid-pricing-hero-copy h1 em {
  color: #c9bfff;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.fluid-pricing-hero-copy > p:last-child { margin-inline: 0; color: #a8afa8; }
.fluid-pricing-flow {
  grid-area: flow;
  width: 100%;
  margin: 0;
  gap: 0;
  border-block: 1px solid rgba(255,255,255,.11);
}
.pricing-flow-step,
.pricing-flow-choices {
  min-height: 144px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.pricing-flow-choices { border-right: 0; }
.fluid-pricing-flow > b { color: #5f655f; }
.fluid-audience-switch {
  grid-area: switch;
  width: min(480px,100%);
  margin: 0 auto;
  border-radius: 10px;
  background: #111319;
}
.fluid-audience-switch i { border-radius: 7px; }
.fluid-pricing-rail { background: #0d0f13; }
.fluid-business-panel { padding: clamp(84px,9vw,132px) 0; color: var(--ink); background: var(--paper); }
.fluid-pricing-intro,
.fluid-preview-plan,
.fluid-plan-toolbar,
.fluid-plan-pair,
.fluid-choice-strip,
.fluid-agency-hero,
.fluid-agency-pricing,
.fluid-agency-calculator,
.fluid-agency-no-limit { width: min(var(--content),calc(100% - 48px)); }
.fluid-pricing-intro h2,
.fluid-choice-strip h2,
.fluid-agency-hero h2 { letter-spacing: -.04em; }
.fluid-preview-plan {
  min-height: 300px;
  border: 1px solid rgba(16,17,21,.15);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}
.fluid-preview-animation { border-radius: 10px; box-shadow: none; }
.fluid-plan-toolbar { border-block-color: rgba(16,17,21,.16); }
.fluid-plan-toolbar small,
.fluid-plan-top small { color: #7158eb; }
.fluid-billing-toggle { border-color: rgba(16,17,21,.14); background: #e8e7e1; }
.fluid-billing-toggle button { color: #60655f; }
.fluid-billing-toggle button.is-active { color: #fff; background: #111319; }
.fluid-plan-pair { gap: 18px; }
.fluid-plan {
  min-height: 760px;
  border-radius: 14px;
  box-shadow: none;
}
.fluid-plan-launch { border: 1px solid rgba(16,17,21,.16); background: #fff; }
.fluid-plan-business { border: 0; background: #111319; }
.fluid-plan:hover { transform: none; }
.fluid-plan-launch .fluid-plan-button.dark { color: #fff; background: #111319; }
.fluid-plan-business .fluid-plan-button.lime,
.fluid-plan-button.lime { color: #101115; background: var(--lime); }
.fluid-choice-strip { border-radius: 14px; box-shadow: none; }
.fluid-agency-panel { padding: clamp(84px,9vw,132px) 0; }
.fluid-agency-console,
.fluid-agency-result { box-shadow: none; }
.fluid-agency-pricing article {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.fluid-agency-pricing article + article { border-left: 1px solid rgba(255,255,255,.1); }
.fluid-agency-calculator { border-radius: 14px; box-shadow: none; }
.fluid-pricing-final { min-height: 500px; }
.fluid-pricing-final-rings { display: none; }
.fluid-pricing-final button { border-radius: 8px; box-shadow: none; }

/* Auth, account and billing are real overlays: elevation is structural. */
.auth-gate { background: rgba(9,10,14,.96); backdrop-filter: none; }
.auth-gate-card {
  max-width: 520px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: #111319;
  box-shadow: 0 24px 64px rgba(0,0,0,.42);
}
.auth-gate-card::before { display: none; }
.auth-gate-primary,
.auth-gate-secondary { min-height: 48px; border-radius: 8px; }
.auth-gate-primary { color: #101115; background: var(--lime); box-shadow: none; }
.auth-gate-consent { border-radius: 10px; background: #0d0f13; }

.account-projects-menu {
  top: 78px;
  right: max(20px,calc((100vw - var(--content)) / 2));
  width: min(480px,calc(100vw - 32px));
  max-height: min(740px,calc(100vh - 98px));
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: #111319;
  box-shadow: 0 24px 64px rgba(0,0,0,.42);
  backdrop-filter: none;
}
.account-projects-avatar { border-radius: 10px; background: var(--violet); }
.account-projects-close { min-width: 40px; min-height: 40px; border-radius: 8px; }
.account-projects-title-row { padding-top: 20px; }
.account-projects-title-row span { color: #a996ff; }
.account-projects-title-row h2 { font-size: 1.45rem; }
.account-projects-help { color: #a1a7a0; font-size: .76rem; }
.account-projects-list { max-height: 360px; }
.account-project-card {
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  border-radius: 0;
  background: transparent;
}
.account-project-card:first-child { border-top: 1px solid rgba(255,255,255,.09); }
.account-project-open { min-height: 66px; }
.account-project-mark { border-radius: 8px; background: rgba(139,114,255,.18); }
.account-project-open strong { font-size: .79rem; }
.account-project-open small { color: #8f968f; font-size: .67rem; }
.account-project-open b { color: #b6a9ff; }
.account-email-preference,
.account-billing {
  margin: 14px 0 0;
  padding: 14px 2px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.09);
  border-radius: 0;
  background: transparent;
}
.account-billing-head span { color: #b7ff84; }
.account-billing > p { color: #9ba29a; font-size: .7rem; }
.account-billing-plan select,
.account-billing-actions button { border-radius: 8px; }
.account-projects-menu-footer button { min-height: 42px; border-radius: 8px; }

/* The canvas remains dominant; controls become a production rail. */
body.studio-mode { color: #f1f3ef; background: #0b0c10; }
.studio-layout,
body:not(.editing-enabled) .studio-layout { grid-template-columns: var(--left-panel) minmax(0,1fr); }
.ai-panel,
.inspector-panel {
  width: var(--left-panel);
  color: #e8ebe6;
  background: #0b0c10;
  border-color: rgba(255,255,255,.09);
}
.sidebar-studio-shell { border-bottom-color: rgba(255,255,255,.09); background: #0b0c10; }
.sidebar-brand-row { min-height: 64px; }
.project-identity strong { font-size: .78rem; }
.project-identity span { color: #858c85; font-size: .6rem; }
.studio-icon-button,
.device-button,
.mode-button,
.studio-text-button {
  border-radius: 8px;
  box-shadow: none;
}
.sidebar-action-row { padding-block: 12px; }
.studio-actions { gap: 7px; }
.make-editable-button,
.studio-primary-button {
  min-height: 42px;
  border-radius: 8px;
  box-shadow: none;
}
.make-editable-button { color: #101115; background: var(--lime); }
.studio-primary-button {
  color: #e4e8e1;
  border: 1px solid rgba(255,255,255,.12);
  background: #15171d;
}
.sidebar-control-stack { padding-block: 0 14px; border-bottom: 1px solid rgba(255,255,255,.09); }
.history-controls,
.device-switcher,
.mode-switcher,
.zoom-control { border-radius: 9px; background: #111319; box-shadow: none; }
.studio-account-card,
.saved-projects-card,
.publication-control,
.custom-domain-control,
.chat-card {
  margin-inline: 0;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.studio-account-card { border-top: 0; }
.studio-account-card > span,
.saved-projects-card > span,
.inspector-group-title span { color: #9e8cff; }
.studio-account-copy strong,
.saved-projects-head h2 { font-size: .88rem; }
.studio-account-copy p,
.saved-projects-card > p { color: #8f968f; font-size: .67rem; }
.saved-projects-scroll { max-height: 250px; }
.saved-project-item {
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  border-radius: 0;
  background: transparent;
}
.saved-project-item.is-current { border-color: rgba(183,255,132,.34); background: rgba(183,255,132,.045); }
.saved-project-open { min-height: 52px; }
.saved-project-open strong { font-size: .69rem; }
.saved-project-open small { color: #858c85; font-size: .57rem; }
.saved-project-versions-toggle { border-radius: 7px; }
.publication-control > p,
.custom-domain-control > p { color: #959c95; font-size: .68rem; }
.publication-status-row strong,
.custom-domain-status-row { font-size: .73rem; }
.publication-actions button,
.publication-actions a,
.custom-domain-input-row button,
.custom-domain-actions button,
.custom-domain-actions a { min-height: 40px; border-radius: 8px; }
.publication-publish,
.custom-domain-input-row button { color: #101115; border: 0; background: var(--lime); }
.custom-domain-input-row input { min-height: 42px; border-radius: 8px; background: #111319; }
.custom-domain-record { border-radius: 8px; background: #111319; }
.chat-card textarea { min-height: 112px; border-radius: 10px; color: #f1f3ef; background: #111319; }
.chat-submit { border-radius: 8px; color: #101115; background: var(--lime); }

.canvas-area { background: #d9d9d5; }
.canvas-scroll { padding: 14px; }
.iframe-wrap { border-radius: 8px; box-shadow: 0 12px 34px rgba(0,0,0,.16); }
.canvas-panel-toggle { border-radius: 8px; background: #0b0c10; box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.edit-hint { border-radius: 8px; background: #111319; box-shadow: 0 16px 40px rgba(0,0,0,.3); }

.inspector-panel { background: #0b0c10; }
.inspector-header { border-bottom-color: rgba(255,255,255,.09); }
.inspector-group { padding-block: 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.inspector-group input,
.inspector-group textarea,
.inspector-group select,
.media-search-form input { min-height: 42px; border-radius: 8px; color: #eff2ed; background: #111319; }
.media-picker-tabs { border-radius: 9px; background: #111319; }
.media-picker-tabs button { min-height: 38px; font-size: .66rem; }
.media-picker-tabs button.is-active { color: #101115; background: var(--lime); }
.media-search-form button,
.media-load-more { min-height: 42px; border-radius: 8px; }
.media-picker-status { color: #9ba29a; font-size: .64rem; }
.media-result { border-radius: 8px; }
.media-result small { font-size: .58rem; }

.studio-build-monitor {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: #111319;
  box-shadow: none;
}
.build-progress-track,
.mini-progress { background: rgba(255,255,255,.08); }
.build-progress-track span,
.initial-build-mini-progress span,
.mini-progress span { background: var(--lime); box-shadow: none; }
.build-step-list li { border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.08); background: transparent; }
.revision-progress { border-radius: 10px; background: #111319; }

@media (max-width: 1080px) {
  body.landing-mode .hero-copy-centered { grid-template-columns: minmax(0,.8fr) minmax(440px,1.2fr); column-gap: 42px; }
  body.landing-mode .hero h1 { font-size: clamp(3.5rem,6.2vw,5rem); }
  .landing-nav { gap: 15px; }
  .fluid-pricing-hero { grid-template-columns: 1fr; grid-template-areas: "copy" "flow" "switch"; }
  .fluid-pricing-hero-copy { margin-inline: auto; text-align: center; }
  .fluid-pricing-hero-copy > p:last-child { margin-inline: auto; }
}

@media (max-width: 860px) {
  :root { --left-panel: min(360px,94vw); }
  .ai-panel,
  .inspector-panel { width: min(360px,94vw); }
  .ai-panel { padding-inline: 16px; }
  .sidebar-studio-shell { margin-inline: -16px; padding-inline: 16px; }
  .canvas-scroll { padding: 0; }
  .iframe-wrap { border-radius: 0; box-shadow: none; }
}

@media (max-width: 760px) {
  .landing-header,
  .pricing-header { width: calc(100% - 28px); min-height: 66px; }
  .landing-nav { gap: 10px; }
  .nav-cta { min-height: 40px; padding-inline: 14px; }
  body.landing-mode .hero.hero-centered { width: calc(100% - 28px); min-height: auto; padding: 54px 0 64px; }
  body.landing-mode .hero-copy-centered { display: block; }
  body.landing-mode .hero-kicker { margin-bottom: 18px; justify-content: center; }
  body.landing-mode .hero h1 { max-width: 11ch; margin-inline: auto; font-size: clamp(3rem,14vw,4.45rem); text-align: center; white-space: normal; }
  body.landing-mode .hero-lede { max-width: 34ch; margin: 22px auto 30px; font-size: .94rem; text-align: center; }
  body.landing-mode .composer { min-height: 0; padding: 8px; }
  body.landing-mode #prompt { min-height: 132px; max-height: 180px; padding: 17px 6px; font-size: .94rem; }
  body.landing-mode .composer-footer { align-items: flex-end; }
  body.landing-mode .composer-tools { gap: 5px; }
  body.landing-mode .character-count { display: none; }
  body.landing-mode .generate-button { min-height: 46px; }
  body.landing-mode .prompt-suggestions-centered { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  body.landing-mode .suggestion { flex: 0 0 auto; }
  body.landing-mode .hero-footnote-centered { margin-top: 25px; justify-content: center; gap: 10px 17px; }
  .conversion-showcase,
  .conversion-process,
  .conversion-workspace,
  .conversion-agency,
  .conversion-plans,
  .conversion-faq { padding-block: 72px; }
  .conversion-section-head,
  .conversion-process-head { width: calc(100% - 28px); grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
  .conversion-section-head h2,
  .conversion-process-head h2,
  .agency-conversion-copy h2,
  .faq-title h2,
  .conversion-final h2 { font-size: clamp(2.7rem,13vw,4.4rem); }
  .conversion-showcase-grid { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .showcase-card-wide { grid-row: auto; }
  .conversion-process-grid { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .process-card { min-height: 0; padding: 28px 0 34px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-card:last-child { border-bottom: 0; }
  .conversion-plan-list a + a { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }

  .fluid-pricing-main { padding-top: 66px; }
  .fluid-pricing-hero { min-height: auto; padding: 64px 14px 46px; gap: 38px; }
  .fluid-pricing-hero-copy h1 { font-size: clamp(3.4rem,15vw,4.7rem); }
  .fluid-pricing-flow { grid-template-columns: 1fr; }
  .pricing-flow-step,
  .pricing-flow-choices { min-height: 100px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .pricing-flow-choices { border-bottom: 0; }
  .fluid-pricing-intro,
  .fluid-preview-plan,
  .fluid-plan-toolbar,
  .fluid-plan-pair,
  .fluid-choice-strip,
  .fluid-agency-hero,
  .fluid-agency-pricing,
  .fluid-agency-calculator,
  .fluid-agency-no-limit { width: calc(100% - 28px); }
  .fluid-preview-plan { min-height: 0; }
  .fluid-plan { min-height: 0; border-radius: 12px; }
  .fluid-agency-pricing article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }

  .account-projects-menu { top: 70px; right: 8px; width: calc(100vw - 16px); max-height: calc(100vh - 78px); padding: 16px; }
  .account-projects-list { max-height: 320px; }
  .account-billing-actions { grid-template-columns: 1fr; }
  .sidebar-brand-row .project-identity strong { max-width: 146px; }
  .studio-account-card,
  .saved-projects-card,
  .publication-control,
  .custom-domain-control,
  .chat-card { padding-block: 18px; }
  .saved-projects-scroll { max-height: 280px; }
  .canvas-panel-toggle { top: 12px; left: 12px; width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .signal-track,
  .build-progress-track span,
  .mini-progress span { animation: none !important; }
}

/* Phase 8A accessibility closure: keep compact production copy readable. */
body.landing-mode .composer-label-row small,
body.landing-mode .character-count { color: #9aa19a; }
body.landing-mode .selected-plan-context > span { color: #a5aba4; }
body.landing-mode .selected-plan-context strong { color: #f4f3ed; }
body.landing-mode .selected-plan-context button { color: #aa98ff; }
.conversion-footer .footer-brand-block > p { color: #9da39d; }
.conversion-footer .footer-link-block { gap: 2px; }
.conversion-footer .footer-link-block a {
  display: flex;
  min-height: 28px;
  align-items: center;
  color: #a1a6ad;
}

/* Phase 8B — prompt-to-published editorial homepage */
body.landing-mode #landing-main { overflow: hidden; }
.phase8b-hero,
.phase8b-showcase,
.phase8b-process,
.phase8b-workspace,
.phase8b-agency,
.phase8b-plans,
.phase8b-faq,
.phase8b-final { position: relative; }

.phase8b-hero {
  width: min(1520px, calc(100% - 48px));
  min-height: 1080px;
  margin: 0 auto;
  padding: clamp(74px, 8vw, 124px) 0 64px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: 0 22px;
  isolation: isolate;
}
.phase8b-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% 2% 16%;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}
.phase8b-hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .28;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 0 68%, transparent 96%);
}
.phase8b-hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,14,.94) 0 28%, rgba(9,10,14,.2) 58%, rgba(9,10,14,.55)); }
.phase8b-hero-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.08); }
.phase8b-hero-copy { z-index: 4; grid-column: 1 / 7; grid-row: 1; padding: 18px 0 0 4vw; }
.phase8b-kicker { margin: 0 0 25px; display: flex; align-items: center; gap: 10px; color: #c9ff9f; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.phase8b-kicker span { width: 6px; height: 6px; background: var(--lime); }
.phase8b-hero-copy h1 { margin: 0; color: #f5f6f2; font: 500 clamp(5rem, 8.1vw, 8.7rem)/.79 "Space Grotesk", sans-serif; letter-spacing: -.075em; }
.phase8b-hero-copy h1 em { color: #cabfff; font: 400 1.02em/.83 "Instrument Serif", Georgia, serif; letter-spacing: -.025em; }
.phase8b-hero-copy > p:not(.phase8b-kicker) { max-width: 430px; margin: 30px 0 24px; color: #aeb4ad; font-size: .98rem; line-height: 1.65; }
.phase8b-text-link { display: inline-flex; align-items: center; gap: 20px; color: #ecf0e9; font-size: .76rem; font-weight: 700; }
.phase8b-text-link span { color: var(--lime); transition: transform .2s ease; }
.phase8b-text-link:hover span { transform: translateX(5px); }
.phase8b-editor-proof { z-index: 3; grid-column: 6 / 13; grid-row: 1 / span 2; align-self: start; margin: 95px 0 0; background: #101116; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 38px 90px rgba(0,0,0,.46); transform: rotate(.8deg); }
.phase8b-editor-proof picture, .phase8b-editor-proof img { display: block; width: 100%; }
.phase8b-editor-proof img { height: auto; }
.phase8b-editor-proof figcaption { padding: 11px 13px; display: flex; align-items: center; gap: 9px; color: #d9ddd7; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.phase8b-editor-proof figcaption > span { width: 6px; height: 6px; background: var(--lime); }
.phase8b-editor-proof figcaption small { margin-left: auto; color: #757c75; font-size: .56rem; }
.phase8b-brief-shell { z-index: 5; grid-column: 1 / 12; grid-row: 2; margin: 70px 0 34px 7vw; display: grid; grid-template-columns: minmax(210px, 300px) minmax(460px, 650px); gap: clamp(28px, 4vw, 66px); align-items: end; }
.phase8b-brief-intro { padding-bottom: 16px; }
.phase8b-brief-intro span { color: var(--lime); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.phase8b-brief-intro p { margin: 18px 0 0; color: #969d96; font-size: .8rem; line-height: 1.65; }
body.landing-mode .phase8b-composer { width: 100%; margin: 0; padding: 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; background: rgba(12,13,17,.94); box-shadow: 0 25px 70px rgba(0,0,0,.4); backdrop-filter: none; }
body.landing-mode .phase8b-composer textarea { min-height: 128px; font-size: .92rem; }
body.landing-mode .phase8b-composer::before, body.landing-mode .phase8b-composer::after { display: none; }
.phase8b-brief-shell .phase8b-suggestions { grid-column: 2; margin: 12px 0 0; justify-content: flex-start; }
.phase8b-brief-shell .continue-project { grid-column: 2; margin: 12px 0 0; }
.phase8b-hero-path { grid-column: 1 / -1; grid-row: 3; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.phase8b-hero-path li { padding: 15px 8px 0; color: #737b74; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.phase8b-hero-path li span { margin-right: 9px; color: #bbc0ba; }
.phase8b-hero-path li:last-child, .phase8b-hero-path li:last-child span { color: var(--lime); }

.phase8b-showcase { padding: 120px max(4vw, 24px) 135px; color: #121316; background: #f1efe8; }
.phase8b-section-head { width: min(1430px, 100%); margin: 0 auto 74px; display: grid; grid-template-columns: 1fr .55fr; gap: 8vw; align-items: end; }
.phase8b-section-head .section-kicker { grid-column: 1 / -1; color: #654ce5; }
.phase8b-section-head h2 { margin: 13px 0 0; font: 600 clamp(3.7rem, 6.4vw, 7rem)/.84 "Space Grotesk", sans-serif; letter-spacing: -.075em; }
.phase8b-section-head h2 em { color: #6b55d7; font: 400 1em/.88 "Instrument Serif", Georgia, serif; }
.phase8b-section-head > p:last-child { max-width: 430px; margin: 0 0 8px; color: #5f625e; font-size: .92rem; line-height: 1.7; }
.phase8b-showcase-stage { width: min(1430px, 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 2.35fr) minmax(260px, .65fr); gap: 18px; }
.phase8b-generated-site-main { position: relative; min-height: 810px; overflow: hidden; color: #fff; background: #171811; }
.phase8b-site-photo { position: absolute; inset: 0; }
.phase8b-site-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,15,11,.86), rgba(16,15,11,.18) 67%), linear-gradient(0deg, rgba(12,13,10,.54), transparent 52%); }
.phase8b-site-photo img { width: 100%; height: 100%; object-fit: cover; }
.phase8b-site-chrome, .phase8b-site-nav, .phase8b-site-copy, .phase8b-site-note, .phase8b-generated-site-main > .phase8b-photo-credit { position: absolute; z-index: 2; }
.phase8b-site-chrome { top: 0; left: 0; right: 0; height: 42px; padding: 0 15px; display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.68); background: rgba(11,11,10,.78); border-bottom: 1px solid rgba(255,255,255,.14); }
.phase8b-site-chrome span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.38); }
.phase8b-site-chrome small { margin-left: auto; font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; }
.phase8b-site-nav { top: 76px; left: 5%; right: 5%; display: flex; align-items: center; justify-content: space-between; }
.phase8b-site-nav strong { font-family: "Instrument Serif", serif; font-size: 1.4rem; font-weight: 400; }
.phase8b-site-nav small { font-size: .58rem; letter-spacing: .12em; }
.phase8b-site-copy { left: 6%; bottom: 17%; max-width: 600px; }
.phase8b-site-copy > small { color: #dcffbd; font-size: .62rem; font-weight: 700; letter-spacing: .18em; }
.phase8b-site-copy h3 { margin: 18px 0 30px; font: 400 clamp(4.3rem, 7.4vw, 8rem)/.79 "Instrument Serif", Georgia, serif; letter-spacing: -.045em; }
.phase8b-site-cta { display: inline-block; padding: 13px 17px; border: 1px solid rgba(255,255,255,.48); color: #fff; background: rgba(0,0,0,.14); font-size: .65rem; font-weight: 700; }
.phase8b-site-note { right: 4%; bottom: 8%; display: grid; gap: 7px; color: rgba(255,255,255,.7); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.phase8b-direction-strip { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.phase8b-direction { position: relative; min-height: 396px; overflow: hidden; color: #fff; background: #171715; }
.phase8b-direction picture { position: absolute; inset: 0; }
.phase8b-direction picture::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,10,8,.9), rgba(11,10,8,.08) 68%); }
.phase8b-direction img { width: 100%; height: 100%; object-fit: cover; }
.phase8b-direction > div { position: absolute; z-index: 2; left: 24px; right: 20px; bottom: 46px; }
.phase8b-direction > div small { color: #dcffbd; font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.phase8b-direction h3 { margin: 9px 0; font: 400 clamp(2.1rem, 3.1vw, 3.5rem)/.87 "Instrument Serif", Georgia, serif; }
.phase8b-direction > div p { margin: 0; color: rgba(255,255,255,.69); font-size: .68rem; }
.phase8b-photo-credit { z-index: 3; left: 12px; bottom: 10px; margin: 0; color: rgba(255,255,255,.72); font-size: .62rem; }
.phase8b-photo-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.phase8b-process { padding: 125px max(5vw, 24px); display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: clamp(60px, 8vw, 130px); color: #101115; background: #fff; }
.phase8b-process-title { align-self: start; position: sticky; top: 120px; }
.phase8b-process-title .section-kicker { color: #654ce5; }
.phase8b-process-title h2 { margin: 18px 0 28px; font: 600 clamp(3.4rem, 5.4vw, 6.2rem)/.84 "Space Grotesk", sans-serif; letter-spacing: -.07em; }
.phase8b-process-title h2 em { color: #684fd9; font: 400 1em/.9 "Instrument Serif", Georgia, serif; }
.phase8b-process-title > p:last-child { max-width: 420px; color: #646863; line-height: 1.7; }
.phase8b-process-flow { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); border-top: 1px solid #c9cbc7; }
.phase8b-process-flow article { padding: 28px; border-right: 1px solid #d4d6d1; border-bottom: 1px solid #d4d6d1; }
.phase8b-process-flow article > span { color: #6750db; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.phase8b-process-flow h3 { margin: 22px 0 15px; font-size: clamp(2rem, 3.4vw, 4rem); line-height: .9; letter-spacing: -.055em; }
.phase8b-process-flow article > p { margin: 16px 0 0; color: #666a65; font-size: .78rem; line-height: 1.65; }
.phase8b-process-brief { grid-column: 1 / 8; }
.phase8b-process-brief picture, .phase8b-process-brief img { display: block; width: 100%; }
.phase8b-process-brief picture { margin-top: 25px; max-width: 480px; border: 1px solid #202126; background: #101115; }
.phase8b-process-generation { grid-column: 8 / 13; color: #f4f4ef; background: #101115; }
.phase8b-process-generation > span { color: var(--lime) !important; }
.phase8b-progress-ui { margin-top: 36px; display: grid; grid-template-columns: 10px 1fr; gap: 16px 12px; align-items: center; }
.phase8b-progress-ui i { width: 8px; height: 8px; background: var(--lime); box-shadow: 0 0 0 5px rgba(183,255,132,.08); }
.phase8b-progress-ui b { color: #aab0a9; font-size: .67rem; font-weight: 500; }
.phase8b-process-review { grid-column: 1 / 5; min-height: 270px; }
.phase8b-process-edit { grid-column: 5 / 10; min-height: 350px; background: #efede6; }
.phase8b-edit-command { margin-top: 32px; padding: 16px 48px 16px 16px; position: relative; color: #f4f5f0; background: #101115; }
.phase8b-edit-command small { display: block; margin-bottom: 8px; color: var(--lime); font-size: .56rem; text-transform: uppercase; }
.phase8b-edit-command strong { font-size: .72rem; line-height: 1.5; }
.phase8b-edit-command i { position: absolute; right: 13px; bottom: 13px; width: 26px; height: 26px; display: grid; place-items: center; color: #111; background: var(--lime); }
.phase8b-process-publish { grid-column: 10 / 13; min-height: 350px; }
.phase8b-published-state { margin-top: 26px; padding-top: 20px; position: relative; border-top: 2px solid #151618; }
.phase8b-published-state i { position: absolute; top: 25px; right: 0; width: 9px; height: 9px; background: #52cf23; }
.phase8b-published-state small { color: #497d32; font-size: .6rem; font-weight: 700; text-transform: uppercase; }
.phase8b-published-state strong { display: block; margin-top: 12px; font-size: 1.25rem; line-height: 1.15; }

.phase8b-workspace { padding: 120px max(4vw,24px) 105px; color: #f3f4ef; background: #090a0e; }
.phase8b-workspace-copy { width: min(1420px,100%); margin: 0 auto 58px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: end; }
.phase8b-workspace-copy .section-kicker { grid-column: 1 / -1; }
.phase8b-workspace-copy h2 { margin: 8px 0 0; font: 500 clamp(3.7rem, 6.2vw, 7rem)/.84 "Space Grotesk", sans-serif; letter-spacing: -.07em; }
.phase8b-workspace-copy h2 em { color: #c9bfff; font: 400 1em/.9 "Instrument Serif", Georgia, serif; }
.phase8b-workspace-copy > p:last-child { max-width: 430px; margin: 0 0 8px; color: #969d96; font-size: .86rem; line-height: 1.72; }
.phase8b-workspace-capture { width: min(1420px,100%); margin: 0 auto; border: 1px solid rgba(255,255,255,.14); background: #101115; box-shadow: 0 40px 100px rgba(0,0,0,.45); }
.phase8b-workspace-capture picture, .phase8b-workspace-capture img { display: block; width: 100%; }
.phase8b-workspace-capture img { height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
.phase8b-workspace-capture figcaption { padding: 11px 14px; color: #747b75; font-size: .58rem; line-height: 1.5; }
.phase8b-workspace-notes { width: min(1420px,100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid rgba(255,255,255,.12); }
.phase8b-workspace-notes span { padding: 18px 14px; color: #9ca29c; font-size: .65rem; border-right: 1px solid rgba(255,255,255,.12); }
.phase8b-workspace-notes b { margin-right: 10px; color: var(--lime); }

.phase8b-agency { padding: 115px max(5vw,24px); display: grid; grid-template-columns: 1fr .72fr; gap: 8vw; color: #101115; background: var(--lime); }
.phase8b-agency-title h2 { margin: 15px 0 0; font: 600 clamp(3.8rem,6.6vw,7.4rem)/.82 "Space Grotesk",sans-serif; letter-spacing: -.075em; }
.phase8b-agency-title h2 em { color: #4f39b6; font: 400 1em/.86 "Instrument Serif",Georgia,serif; }
.phase8b-agency-copy { padding-top: 48px; }
.phase8b-agency-copy p { max-width: 470px; color: #33382f; line-height: 1.72; }
.phase8b-agency-copy a { margin-top: 22px; display: inline-flex; gap: 20px; color: #101115; font-size: .72rem; font-weight: 700; }
.phase8b-agency-flow { grid-column: 1 / -1; margin: 55px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); list-style: none; border-top: 1px solid rgba(16,17,21,.34); }
.phase8b-agency-flow li { padding: 22px 26px 0 0; display: grid; grid-template-columns: 42px 1fr; gap: 7px; border-right: 1px solid rgba(16,17,21,.22); }
.phase8b-agency-flow li > span { grid-row: 1 / 3; color: #5f49c8; font-size: .62rem; font-weight: 700; }
.phase8b-agency-flow strong { font-size: 1rem; }
.phase8b-agency-flow small { color: #50554d; font-size: .7rem; line-height: 1.55; }

.phase8b-plans { padding: 120px max(5vw,24px); display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; color: #f2f3ef; background: #121318; }
.phase8b-plans h2 { margin: 18px 0 24px; font: 500 clamp(3.6rem,5.4vw,6rem)/.84 "Space Grotesk",sans-serif; letter-spacing: -.07em; }
.phase8b-plans > div:first-child > p:last-child { max-width: 400px; color: #979d97; line-height: 1.7; }
.phase8b-plan-list { border-top: 1px solid rgba(255,255,255,.16); }
.phase8b-plan-list a { min-height: 148px; padding: 23px 55px 23px 0; position: relative; display: grid; grid-template-columns: .7fr 1fr auto; grid-template-rows: auto auto; gap: 10px 22px; color: #f1f2ee; border-bottom: 1px solid rgba(255,255,255,.16); transition: padding .2s ease, color .2s ease; }
.phase8b-plan-list a:hover { padding-left: 12px; color: var(--lime); }
.phase8b-plan-list span { color: #777e78; font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; }
.phase8b-plan-list strong { font-size: 1.55rem; }
.phase8b-plan-list b { color: #c4ff9d; font-size: .75rem; }
.phase8b-plan-list small { grid-column: 2 / 4; color: #929892; font-size: .7rem; }
.phase8b-plan-list i { position: absolute; right: 0; top: 50%; color: #929892; transform: translateY(-50%); }

.phase8b-faq { padding: 115px max(5vw,24px); display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; color: #111216; background: #f1efe8; }
.phase8b-faq .faq-title h2 { color: #111216; font-size: clamp(3.5rem,5.7vw,6.2rem); }
.phase8b-faq .faq-list { width: 100%; }
.phase8b-faq details { border-color: rgba(17,18,22,.18); }
.phase8b-faq summary { color: #111216; }
.phase8b-faq details p { color: #60645f; }

.phase8b-final { min-height: 680px; padding: 100px max(5vw,24px); display: grid; place-items: center; overflow: hidden; text-align: center; color: #f4f5f0; background: #090a0e; }
.phase8b-final > picture { position: absolute; inset: 0; opacity: .3; }
.phase8b-final > picture::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50%, rgba(9,10,14,.18), rgba(9,10,14,.86) 70%); }
.phase8b-final > picture img { width: 100%; height: 100%; object-fit: cover; }
.phase8b-final > div { position: relative; z-index: 2; }
.phase8b-final h2 { margin: 17px 0 22px; font: 500 clamp(4rem,8vw,8rem)/.82 "Space Grotesk",sans-serif; letter-spacing: -.075em; }
.phase8b-final > div > p:not(.section-kicker) { color: #a2a8a1; }
.phase8b-final .final-cta-button { margin-top: 26px; border-radius: 5px; }

@media (max-width: 1080px) {
  .phase8b-hero { min-height: 1160px; }
  .phase8b-hero-copy { grid-column: 1 / 8; padding-left: 20px; }
  .phase8b-editor-proof { grid-column: 6 / 13; margin-top: 150px; }
  .phase8b-brief-shell { grid-column: 1 / 13; margin: 90px 20px 30px; }
  .phase8b-showcase-stage { grid-template-columns: 1fr; }
  .phase8b-direction-strip { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .phase8b-process { grid-template-columns: 1fr; }
  .phase8b-process-title { position: static; }
  .phase8b-process-title > p:last-child { max-width: 650px; }
  .phase8b-workspace-copy { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 760px) {
  .landing-header .nav-cta { display: none; }
  .landing-header .account-signup { min-height: 40px; padding-inline: 13px; font-size: .72rem; }
  .phase8b-hero { width: calc(100% - 28px); min-height: auto; padding: 55px 0 45px; display: block; }
  .phase8b-hero::after { inset: 3% 0 10%; }
  .phase8b-hero-art { opacity: .22; }
  .phase8b-hero-copy { padding: 0 12px; }
  .phase8b-hero-copy h1 { font-size: clamp(3.85rem, 15.8vw, 4.7rem); line-height: .83; }
  .phase8b-hero-copy > p:not(.phase8b-kicker) { margin-top: 24px; font-size: .9rem; }
  .phase8b-editor-proof { width: calc(100% + 8px); margin: 50px 0 0 -4px; transform: rotate(.4deg); }
  .phase8b-editor-proof figcaption small { display: none; }
  .phase8b-brief-shell { margin: 60px 0 0; display: block; }
  .phase8b-brief-intro { padding: 0 8px 18px; }
  body.landing-mode .phase8b-composer { padding: 13px; }
  body.landing-mode .phase8b-composer textarea { min-height: 115px; }
  .phase8b-brief-shell .phase8b-suggestions { margin: 10px 4px 0; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .phase8b-brief-shell .phase8b-suggestions .suggestion { flex: 0 0 auto; }
  .phase8b-brief-shell .continue-project { margin-inline: 4px; }
  .phase8b-hero-path { margin-top: 45px; grid-template-columns: repeat(5, max-content); justify-content: space-between; overflow: hidden; }
  .phase8b-hero-path li { padding-inline: 0; font-size: .52rem; }
  .phase8b-hero-path li span { display: none; }
  .phase8b-showcase { padding: 80px 14px 88px; }
  .phase8b-section-head { margin-bottom: 44px; display: block; }
  .phase8b-section-head h2 { font-size: clamp(3.25rem, 13.8vw, 4.35rem); line-height: .87; }
  .phase8b-section-head > p:last-child { margin-top: 27px; }
  .phase8b-generated-site-main { min-height: 660px; }
  .phase8b-site-photo::after { background: linear-gradient(0deg, rgba(16,15,11,.9), rgba(16,15,11,.06) 80%); }
  .phase8b-site-nav { top: 66px; }
  .phase8b-site-nav small { display: none; }
  .phase8b-site-copy { left: 22px; right: 22px; bottom: 18%; }
  .phase8b-site-copy h3 { font-size: clamp(3.7rem, 18vw, 5.3rem); }
  .phase8b-site-note { display: none; }
  .phase8b-direction-strip { grid-template-columns: 1fr; }
  .phase8b-direction { min-height: 480px; }
  .phase8b-process { padding: 82px 14px; gap: 50px; }
  .phase8b-process-title h2 { font-size: clamp(3.25rem,13.8vw,4.35rem); line-height: .87; }
  .phase8b-process-flow { display: block; }
  .phase8b-process-flow article { min-height: auto; padding: 24px 18px 34px; border-left: 1px solid #d4d6d1; }
  .phase8b-process-generation { min-height: 390px !important; }
  .phase8b-workspace { padding: 82px 14px 70px; }
  .phase8b-workspace-copy h2 { font-size: clamp(3.2rem,13.7vw,4.3rem); line-height: .87; }
  .phase8b-workspace-notes { grid-template-columns: 1fr 1fr; }
  .phase8b-agency { padding: 82px 18px; display: block; }
  .phase8b-agency-title h2 { font-size: clamp(3.3rem,14vw,4.45rem); line-height: .86; }
  .phase8b-agency-flow { margin-top: 45px; grid-template-columns: 1fr; }
  .phase8b-agency-flow li { padding: 19px 0; border-right: 0; border-bottom: 1px solid rgba(16,17,21,.22); }
  .phase8b-plans { padding: 82px 18px; display: block; }
  .phase8b-plan-list { margin-top: 55px; }
  .phase8b-plan-list a { min-height: 165px; grid-template-columns: 1fr auto; }
  .phase8b-plan-list small { grid-column: 1 / -1; }
  .phase8b-faq { padding: 82px 18px; display: block; }
  .phase8b-faq .faq-list { margin-top: 50px; }
  .phase8b-final { min-height: 600px; padding-inline: 18px; }
  .phase8b-final h2 { font-size: clamp(3.4rem,14.5vw,4.6rem); line-height: .86; }
}

@media (prefers-reduced-motion: reduce) {
  .phase8b-editor-proof, .phase8b-text-link span { transform: none !important; transition: none !important; }
}

/* Phase 8C — one clear product story and a compact editor command rail */
.phase8c-hero,
.phase8c-agency { position: relative; }

.phase8c-hero {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(46px, 4.5vw, 68px) 0 44px;
  color: #f4f5f0;
}
.phase8c-hero::before {
  content: "";
  position: absolute;
  inset: 5% 0 10%;
  border: 1px solid rgba(255,255,255,.075);
  pointer-events: none;
}
.phase8c-hero-intro {
  width: min(100%, 1420px);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(330px, .54fr);
  align-items: end;
  column-gap: clamp(40px, 8vw, 130px);
  row-gap: 0;
}
.phase8c-kicker {
  grid-column: 1 / -1;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #caffaa;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.phase8c-kicker span { width: 7px; height: 7px; background: var(--lime); }
.phase8c-hero-intro h1 {
  margin: 0;
  color: #f5f5f0;
  font: 600 clamp(3.7rem, 5.7vw, 6.2rem)/.79 "Space Grotesk", sans-serif;
  letter-spacing: -.075em;
}
.phase8c-hero-intro h1 em { color: #c8bcff; font: 400 1.05em/.82 "Instrument Serif", Georgia, serif; letter-spacing: -.02em; }
.phase8c-hero-intro > p:last-child { max-width: 460px; margin: 0 0 9px; color: #a8afa7; font-size: .95rem; line-height: 1.7; }

.phase8c-hero-grid {
  position: relative;
  width: min(100%, 1420px);
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(560px, 1.22fr);
  gap: 22px;
}
.phase8c-brief-shell {
  position: relative;
  z-index: 5;
  align-self: start;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(255,255,255,.14);
  background: #101116;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.phase8c-brief-heading { display: grid; grid-template-columns: 1fr auto; gap: 7px 16px; align-items: end; }
.phase8c-brief-heading span { grid-column: 1 / -1; color: var(--lime); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.phase8c-brief-heading strong { color: #f2f3ee; font-size: clamp(1.5rem, 2vw, 2rem); letter-spacing: -.045em; }
.phase8c-brief-heading small { color: #818880; font-size: .64rem; }
.phase8c-mode-row { margin: 16px 0 9px; display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.phase8c-mode-row .suggestion { flex: 0 0 auto; min-height: 34px; padding: 0 11px; color: #b9beb8; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; background: transparent; font-size: .62rem; }
.phase8c-mode-row .suggestion:first-child { color: #11130f; border-color: var(--lime); background: var(--lime); }
body.landing-mode .phase8c-composer { width: 100%; min-height: 0; margin: 0; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: #0b0c10; box-shadow: none; }
body.landing-mode .phase8c-composer::before,
body.landing-mode .phase8c-composer::after { display: none; }
body.landing-mode .phase8c-composer #prompt { min-height: 118px; padding: 16px 2px 10px; font-size: .91rem; }
body.landing-mode .phase8c-composer .generate-button { min-height: 48px; border-radius: 7px; }
.phase8c-brief-shell .continue-project { margin: 12px 0 0; }

.phase8c-proof-stack { position: relative; min-width: 0; height: 560px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 12px; }
.phase8c-result-proof { position: relative; min-width: 0; overflow: hidden; color: #fff; background: #1a1712; }
.phase8c-result-photo { position: absolute; inset: 0; }
.phase8c-result-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,13,10,.86), rgba(16,13,10,.16) 72%), linear-gradient(0deg, rgba(12,10,8,.48), transparent 65%); }
.phase8c-result-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.phase8c-result-nav,
.phase8c-result-copy,
.phase8c-result-caption { position: absolute; z-index: 2; }
.phase8c-result-nav { top: 30px; left: 5%; right: 5%; display: flex; align-items: center; justify-content: space-between; }
.phase8c-result-nav strong { font: 400 1.4rem/1 "Instrument Serif", Georgia, serif; }
.phase8c-result-nav span { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.phase8c-result-copy { left: 6%; bottom: 18%; }
.phase8c-result-copy small { color: #dcffbd; font-size: .58rem; font-weight: 700; letter-spacing: .18em; }
.phase8c-result-copy h2 { margin: 16px 0 24px; font: 400 clamp(3.5rem, 4.8vw, 5.8rem)/.79 "Instrument Serif", Georgia, serif; letter-spacing: -.04em; }
.phase8c-result-copy > span { display: inline-block; padding: 11px 15px; border: 1px solid rgba(255,255,255,.55); font-size: .62rem; font-weight: 700; }
.phase8c-result-caption { right: 14px; bottom: 12px; margin: 0; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.phase8c-result-caption i { width: 7px; height: 7px; background: var(--lime); }
.phase8c-editor-proof { position: relative; z-index: 4; min-width: 0; margin: 0; align-self: end; border: 1px solid rgba(255,255,255,.18); background: #0d0e12; box-shadow: 0 30px 70px rgba(0,0,0,.42); }
.phase8c-editor-proof picture { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.phase8c-editor-proof img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.phase8c-editor-proof figcaption { min-height: 39px; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #e7eae4; font-size: .59rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.phase8c-editor-proof figcaption span::before { content: ""; width: 6px; height: 6px; margin-right: 7px; display: inline-block; background: var(--lime); }
.phase8c-editor-proof figcaption small { color: #747b74; font-size: .52rem; }
.phase8c-hero-path { width: min(100%, 1420px); margin: 44px auto 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.phase8c-hero-path li { min-height: 74px; padding: 15px 14px 0 0; display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; color: #7d847d; border-right: 1px solid rgba(255,255,255,.11); }
.phase8c-hero-path li > span { grid-row: 1 / 3; color: #9c8aff; font-size: .61rem; font-weight: 700; }
.phase8c-hero-path strong { color: #e8ebe5; font-size: .72rem; }
.phase8c-hero-path small { font-size: .58rem; }

.phase8c-agency {
  min-height: 820px;
  padding: 110px max(5vw, 24px);
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(360px, .62fr) minmax(280px, .56fr);
  gap: clamp(40px, 6vw, 100px);
  overflow: hidden;
  color: #f2f3ee;
  background: #0a0b0f;
  border-top: 1px solid rgba(255,255,255,.1);
}
.phase8c-agency::after { content: "AGENCY"; position: absolute; left: -1vw; bottom: -4vw; color: rgba(255,255,255,.028); font: 700 clamp(10rem, 24vw, 26rem)/.7 "Space Grotesk", sans-serif; letter-spacing: -.09em; pointer-events: none; }
.phase8c-agency-copy { position: relative; z-index: 2; align-self: center; }
.phase8c-agency-copy h2 { margin: 18px 0 28px; font: 600 clamp(3.3rem, 5vw, 6.5rem)/.84 "Space Grotesk", sans-serif; letter-spacing: -.07em; }
.phase8c-agency-copy h2 em { color: #c8bcff; font: 400 1em/.88 "Instrument Serif", Georgia, serif; }
.phase8c-agency-copy > p:not(.section-kicker) { max-width: 500px; color: #9aa19a; line-height: 1.72; }
.phase8c-agency-copy a { margin-top: 28px; display: inline-flex; align-items: center; gap: 18px; color: #101115; padding: 13px 16px; background: var(--lime); font-size: .7rem; font-weight: 700; }
.phase8c-agency-ledger { position: relative; z-index: 2; align-self: center; border-top: 1px solid rgba(255,255,255,.18); }
.phase8c-agency-ledger article { min-height: 165px; padding: 24px 0; display: grid; gap: 11px; border-bottom: 1px solid rgba(255,255,255,.14); }
.phase8c-agency-ledger span { color: #a895ff; font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.phase8c-agency-ledger strong { max-width: 320px; font-size: 1.25rem; line-height: 1.15; letter-spacing: -.025em; }
.phase8c-agency-ledger small { color: #828982; font-size: .68rem; }
.phase8c-agency-film { position: relative; z-index: 2; min-height: 590px; align-self: center; }
.phase8c-agency-film picture { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.17); }
.phase8c-agency-film picture:first-child { inset: 0 18% 27% 0; }
.phase8c-agency-film picture:nth-child(2) { inset: 34% 0 0 32%; }
.phase8c-agency-film img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.08); }
.phase8c-agency-film span { position: absolute; z-index: 3; left: 0; bottom: 13%; padding: 10px 12px; color: #111; background: var(--lime); font-size: .59rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* The Phase 8C editor rail keeps the website canvas unchanged and moves low-frequency work behind disclosure. */
.ai-panel { position: relative; overflow-y: hidden; padding-top: 0; padding-bottom: 58px; }
.ai-panel:has(.sidebar-disclosure[open]) { overflow-y: auto; }
.ai-panel:has(.sidebar-disclosure[open]) .studio-account-card { position: static; }
.sidebar-studio-shell { margin-bottom: 0; }
.sidebar-brand-row { min-height: 54px; }
.sidebar-command { padding: 12px 0 10px; border-bottom: 1px solid rgba(255,255,255,.09); }
.sidebar-command .panel-heading { align-items: center; }
.sidebar-command .panel-heading h2 { margin-top: 2px; font-size: .95rem; }
.sidebar-command .panel-intro { margin: 6px 0 9px; font-size: .62rem; line-height: 1.4; }
.sidebar-command .revision-composer { padding: 8px; border-radius: 9px; }
.sidebar-command .revision-composer textarea { min-height: 58px; max-height: 92px; padding: 6px 4px; font-size: .68rem; line-height: 1.45; }
.sidebar-command .revision-submit { min-height: 36px; border-radius: 7px; font-size: .66rem; }
.sidebar-command .quick-revisions { margin-top: 7px; gap: 5px; }
.sidebar-command .quick-revisions button { min-height: 27px; padding-inline: 7px; border-radius: 6px; font-size: .54rem; }
.sidebar-action-row { padding-block: 9px 7px; }
.sidebar-action-row .studio-actions { grid-template-columns: minmax(0, 1fr) 38px 72px; }
.sidebar-action-row .make-editable-button { grid-column: 1 / -1; min-height: 36px; }
.studio-actions .studio-text-button { min-height: 36px; }
.sidebar-action-row .studio-primary-button { grid-column: auto; order: initial; min-height: 36px; padding-inline: 8px; font-size: 0; }
.studio-actions .studio-primary-button::before { content: "Export"; font-size: .62rem; }
.studio-actions .studio-primary-button svg { width: 12px; }
.sidebar-control-stack { padding-bottom: 8px; }
.sidebar-control-stack .history-controls,
.sidebar-control-stack .device-switcher { min-height: 35px; }
.sidebar-preview-row { min-height: 38px; padding-block: 5px; }
.canvas-status { max-width: 138px; }
.canvas-status span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.saved-projects-card { margin: 0; padding: 9px 0 0; }
.saved-projects-head h2 { font-size: .76rem; }
.saved-projects-kicker,
.saved-projects-copy { display: none; }
.saved-projects-actions { display: none; }
.saved-projects-save { min-height: 28px; padding-inline: 9px; font-size: .58rem; }
.saved-projects-list { max-height: none; gap: 0; overflow: visible; border-top: 1px solid rgba(255,255,255,.07); }
.saved-project-item { margin: 0; }
.saved-project-open { width: 100%; min-height: 39px; padding: 5px 4px; display: flex; align-items: center; justify-content: space-between; gap: 8px; text-align: left; }
.saved-project-open > span { min-width: 0; display: grid; gap: 1px; }
.saved-project-open strong { overflow: hidden; color: #e4e7e1; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.saved-project-open small { color: #777e77; font-size: .52rem; }
.saved-project-open b { color: #a895ff; font-size: .52rem; font-weight: 700; }
.saved-projects-all { min-height: 42px; padding: 6px 4px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; align-items: center; gap: 1px 8px; border: 0; border-bottom: 1px solid rgba(255,255,255,.08); background: transparent; color: #edf0ea; text-align: left; cursor: pointer; }
.saved-projects-all span { font-size: .64rem; font-weight: 700; }
.saved-projects-all small { color: #777e77; font-size: .52rem; }
.saved-projects-all b { grid-column: 2; grid-row: 1 / 3; color: var(--lime); }
.sidebar-disclosure { border-bottom: 1px solid rgba(255,255,255,.09); }
.sidebar-disclosure > summary { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #dfe3dc; list-style: none; cursor: pointer; }
.sidebar-disclosure > summary::-webkit-details-marker { display: none; }
.sidebar-disclosure > summary span { font-size: .64rem; font-weight: 700; }
.sidebar-disclosure > summary small { color: #747b74; font-size: .52rem; }
.sidebar-disclosure > summary::after { content: "+"; color: #9b89ff; font-size: .8rem; }
.sidebar-disclosure[open] > summary::after { content: "−"; }
.sidebar-disclosure .publication-control,
.sidebar-disclosure .custom-domain-control { padding: 11px 0; }
.sidebar-version-disclosure .version-list { max-height: 190px; overflow-y: auto; }
.studio-account-card { position: absolute; z-index: 12; left: 16px; right: 16px; bottom: 0; min-height: 50px; margin: 0; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 0; background: #0b0c10; }
.studio-account-copy { gap: 1px; }
.studio-account-copy .saved-projects-kicker,
.studio-account-copy small { display: none; }
.studio-account-copy strong { max-width: 165px; font-size: .66rem; }
.studio-account-card .account-login,
.studio-account-card .account-signup { min-height: 30px; padding: 0 8px; font-size: .56rem; }
.studio-account-card .account-signed-out { display: flex; flex-direction: row; gap: 5px; }
.studio-account-actions .account-login,
.studio-account-actions .account-signup { width: auto; }
.initial-build-panel,
.ai-panel .studio-build-monitor { position: absolute; z-index: 15; inset: 56px 10px auto; max-height: calc(100% - 66px); overflow-y: auto; background: #101217; box-shadow: 0 25px 70px rgba(0,0,0,.55); }
.account-projects-menu[data-context="projects"] .account-email-preference,
.account-projects-menu[data-context="projects"] .account-billing { display: none; }
.account-projects-menu[data-context="projects"] .account-projects-list { max-height: min(560px, calc(100vh - 250px)); }

@media (max-width: 1380px) {
  .phase8c-hero-grid { grid-template-columns: minmax(330px, .8fr) minmax(480px, 1.2fr); }
  .phase8c-proof-stack { grid-template-columns: 1fr; grid-template-rows: minmax(360px, 1.5fr) minmax(190px, .75fr); height: 650px; }
  .phase8c-editor-proof { width: min(100%, 620px); }
  .phase8c-agency { grid-template-columns: 1fr 1fr; }
  .phase8c-agency-film { grid-column: 1 / -1; min-height: 460px; }
  .phase8c-agency-film picture:first-child { inset: 0 48% 8% 0; }
  .phase8c-agency-film picture:nth-child(2) { inset: 8% 0 0 48%; }
}

@media (max-width: 860px) {
  .ai-panel { overflow-y: auto; padding-bottom: 10px; }
  .studio-account-card { position: static; }
  .studio-actions .studio-text-button { display: block; }
  .studio-actions #open-preview-button { display: grid; }
  .phase8c-hero { width: calc(100% - 28px); padding-top: 42px; }
  .phase8c-hero-intro { display: block; }
  .phase8c-hero-intro h1 { font-size: clamp(3.5rem, 10vw, 5.7rem); }
  .phase8c-hero-intro > p:last-child { margin-top: 25px; }
  .phase8c-hero-grid { min-height: 0; display: flex; flex-direction: column; }
  .phase8c-brief-shell { width: min(100%, 620px); }
  .phase8c-proof-stack { height: auto; grid-template-rows: 500px auto; }
  .phase8c-editor-proof { width: min(100%, 680px); }
}

@media (max-width: 760px) {
  .phase8c-hero::before { inset: 2% 0 4%; }
  .phase8c-hero-intro { margin-bottom: 32px; padding-inline: 8px; }
  .phase8c-kicker { margin-bottom: 18px; }
  .phase8c-hero-intro h1 { font-size: clamp(3.15rem, 14.5vw, 4.2rem); letter-spacing: -.065em; }
  .phase8c-hero-intro > p:last-child { font-size: .88rem; }
  .phase8c-brief-shell { padding: 16px; }
  .phase8c-brief-heading { grid-template-columns: 1fr; }
  .phase8c-brief-heading small { display: none; }
  body.landing-mode .phase8c-composer #prompt { min-height: 106px; }
  .phase8c-proof-stack { height: auto; margin-top: 16px; grid-template-rows: 460px auto; }
  .phase8c-result-copy h2 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .phase8c-result-nav span { display: none; }
  .phase8c-editor-proof { width: 100%; }
  .phase8c-editor-proof figcaption small { display: none; }
  .phase8c-hero-path { margin-top: 28px; grid-template-columns: 1fr 1fr; }
  .phase8c-hero-path li { min-height: 65px; }
  .phase8c-agency { min-height: 0; padding: 82px 18px; display: block; }
  .phase8c-agency-copy h2 { font-size: clamp(3.25rem, 14vw, 4.4rem); }
  .phase8c-agency-ledger { margin-top: 55px; }
  .phase8c-agency-ledger article { min-height: 140px; }
  .phase8c-agency-film { min-height: 500px; margin-top: 45px; }
  .phase8c-agency-film picture:first-child { inset: 0 18% 37% 0; }
  .phase8c-agency-film picture:nth-child(2) { inset: 42% 0 0 22%; }
  .phase8c-agency-film span { bottom: 31%; }
}

@media (max-height: 760px) and (min-width: 861px) {
  .ai-panel { overflow-y: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .phase8c-editor-proof { transform: none !important; }
}
