:root {
  color-scheme: light;
  --page: #ffffff;
  --surface: #f8fafc;
  --surface-strong: #f1f5f9;
  --ink: #08152f;
  --ink-soft: #1d2a44;
  --muted: #5c6880;
  --ghost: #8791a4;
  --line: #dce3ec;
  --line-strong: #c6d1df;
  --coral: #fa5134;
  --coral-dark: #df3f25;
  --coral-soft: #fff2ee;
  --green: #208a52;
  --green-soft: #edf8f1;
  --navy: #071633;
  --shadow-xs: 0 1px 2px rgba(8, 21, 47, .05);
  --shadow-sm: 0 10px 30px rgba(8, 21, 47, .07);
  --shadow-md: 0 24px 70px rgba(8, 21, 47, .10);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

button, textarea, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

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

:focus-visible {
  outline: 3px solid rgba(250, 81, 52, .38);
  outline-offset: 3px;
}

.cj-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 236, .72);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.site-nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.nav-menu > a:not(.button) {
  padding-block: 12px;
  transition: color 180ms ease;
}

.nav-menu > a:not(.button):hover { color: var(--coral); }

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
.nav-toggle[aria-expanded="true"] .menu-close-icon { display: block; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: #aebaca;
  box-shadow: var(--shadow-sm);
}

.button-primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(250, 81, 52, .22);
}

.button-primary:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.button-secondary { background: #fff; }
.button-large { min-height: 54px; padding-inline: 26px; font-size: 15px; }
.button .cj-icon { width: 18px; height: 18px; }

.hero {
  position: relative;
  padding: 12px 0 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-inner { text-align: center; }

.eyebrow, .section-kicker, .mini-label {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #ffd5ca;
  border-radius: 999px;
  background: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow .cj-icon { width: 16px; height: 16px; }

.hero h1 {
  max-width: 920px;
  margin: 14px auto 10px;
  color: var(--ink);
  font-size: clamp(46px, 3.9vw, 56px);
  font-weight: 850;
  line-height: .99;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: balance;
}

.prompt-composer {
  max-width: 1040px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 24px;
  padding: 16px;
  border: 1px solid #c9d8ea;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 44px rgba(8, 21, 47, .06);
  text-align: left;
}

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

.prompt-main label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.prompt-main label .cj-icon { width: 15px; height: 15px; }

.prompt-main textarea {
  width: 100%;
  min-height: 98px;
  display: block;
  resize: vertical;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.prompt-main textarea::placeholder { color: #8b95a8; }
.prompt-main textarea:focus { border-color: #90a8c6; outline: 0; box-shadow: 0 0 0 3px rgba(93, 124, 164, .12); }
.prompt-main textarea[aria-invalid="true"] { border-color: #c9362d; box-shadow: 0 0 0 3px rgba(201, 54, 45, .10); }

.prompt-examples {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.prompt-examples span { color: var(--muted); font-size: 11px; }
.prompt-examples button {
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: #40506a;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.prompt-examples button:hover, .prompt-examples button.is-selected {
  border-color: #9bb7dd;
  background: #f2f7fd;
  color: #175aa8;
}

.field-error {
  min-height: 18px;
  margin: 5px 0 -8px;
  color: #b42318;
  font-size: 12px;
}
.field-error:empty { display: none; }

.prompt-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.prompt-action .button { width: 100%; }
.prompt-action p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.prompt-action p .cj-icon { width: 15px; height: 15px; margin-top: 2px; color: var(--green); }

.launch-story { margin-top: 28px; }

.launch-rail {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.launch-stage {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, auto);
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.stage-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease;
}

.launch-stage:hover .stage-icon, .launch-stage.is-active .stage-icon { transform: translateY(-2px); background: var(--coral); }
.stage-icon .cj-icon { width: 18px; height: 18px; }
.launch-stage strong { display: block; font-size: 14px; line-height: 1.1; }
.launch-stage small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.25; white-space: nowrap; }
.stage-line { height: 1px; display: block; background: #f2ad9e; position: relative; }
.stage-line i { position: absolute; width: 8px; height: 8px; top: -4px; left: 50%; border: 2px solid #f2ad9e; border-radius: 50%; background: #fff; transform: translateX(-50%); }

.launch-canvas {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.55fr .82fr 1fr .72fr;
  gap: 14px;
  align-items: stretch;
  text-align: left;
}

.stage-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.stage-panel.is-highlighted { border-color: #9db2cf; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.stage-prompt.stage-panel { display: none; }

.browser-preview { height: 100%; margin: 0; background: #fff; }
.browser-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #cdd5df; }
.browser-bar > span:first-child { background: #f37a68; }
.browser-bar > span:nth-child(2) { background: #efbb57; }
.browser-bar > span:nth-child(3) { background: #63bd7b; }
.browser-bar i { margin-left: 6px; color: var(--ghost); font-size: 8px; font-style: normal; }
.browser-preview > img { width: 100%; height: calc(100% - 34px); min-height: 248px; object-fit: cover; object-position: top; }

.search-window { height: 100%; padding: 14px 12px; background: #fbfcfe; }
.search-query { min-height: 34px; display: flex; align-items: center; gap: 8px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #505b6f; font-size: 9px; }
.search-g { color: #4285f4; font-size: 16px; font-weight: 850; }
.search-result { margin-top: 14px; padding: 14px 12px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.search-result > span { color: var(--muted); font-size: 8px; }
.search-result h3 { margin: 6px 0; color: #1a0dab; font-size: 13px; line-height: 1.35; }
.search-result p { margin-bottom: 8px; color: #4b5568; font-size: 9px; line-height: 1.5; }
.search-result small { color: #1a0dab; font-size: 8px; }

.social-post-grid { height: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 10px; background: #fbfcfe; }
.social-post-grid article { min-width: 0; padding: 8px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.social-post-grid article > img { width: 100%; height: 68px; margin: 6px 0; border-radius: 4px; object-fit: cover; object-position: center; }
.social-post-grid p { margin: 0; color: #4f596d; font-size: 8px; line-height: 1.35; }
.network { display: flex; align-items: center; gap: 5px; color: var(--ink); font-size: 8px; font-weight: 800; }
.network img { width: 13px; height: 13px; }

.publish-card { height: 100%; padding: 16px 14px; background: var(--green-soft); }
.publish-card .status-dot { width: 8px; height: 8px; display: block; margin-bottom: 18px; border-radius: 50%; background: #37a866; }
.publish-card > strong { display: block; margin: 5px 0 8px; color: var(--ink); font-size: 11px; overflow-wrap: anywhere; }
.publish-card em { display: inline-flex; padding: 3px 8px; border-radius: 999px; background: #d5f2df; color: #257c4a; font-size: 8px; font-style: normal; font-weight: 800; }
.publish-card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.publish-card li { display: grid; grid-template-columns: 14px 1fr auto; align-items: center; gap: 5px; padding: 9px 0; border-top: 1px solid #d7e9dd; color: var(--ink-soft); font-size: 8px; }
.publish-card li .cj-icon { width: 13px; height: 13px; color: var(--green); }
.publish-card li span { color: var(--green); }
.launch-summary { display: none; }

.hero-proof {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof .cj-icon { width: 16px; height: 16px; color: var(--green); }

section:not(.hero) { padding: 112px 0; }
.section-heading { max-width: 700px; margin-bottom: 46px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .pricing-heading h2, .faq-intro h2, .comparison-intro h2, .narrative-grid h2, .final-inner h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 840;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-heading > p:last-child, .pricing-heading > div > p:last-child, .faq-intro > p:last-child, .comparison-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.examples-section { background: var(--surface); }
.showcase-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; }
.showcase-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.showcase-large { grid-row: span 2; }
.showcase-image { min-height: 250px; display: block; overflow: hidden; border-bottom: 1px solid var(--line); background: #e9edf2; }
.showcase-large .showcase-image { min-height: 400px; }
.showcase-image img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: top; transition: transform 320ms ease; }
.showcase-image:hover img { transform: scale(1.012); }
.showcase-copy { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 22px; }
.showcase-copy span { color: var(--coral); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.showcase-copy h3 { margin: 5px 0 6px; font-size: 22px; }
.showcase-copy p { max-width: 560px; margin: 0; color: var(--muted); font-size: 13px; }
.showcase-copy > a { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 800; white-space: nowrap; }
.showcase-copy > a .cj-icon { width: 16px; height: 16px; }
.showcase-invite { min-height: 260px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 32px; background: var(--navy); color: #fff; }
.showcase-invite h3 { max-width: 440px; margin: 10px 0; color: #fff; font-size: 26px; line-height: 1.15; }
.showcase-invite > p:not(.section-kicker) { margin-bottom: 22px; color: #b7c1d3; font-size: 14px; }
.showcase-invite .button { border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.08); color: #fff; }

.narrative-section { border-bottom: 1px solid var(--line); }
.narrative-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.narrative-copy { padding-top: 10px; }
.narrative-copy p { margin-bottom: 20px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.asset-flow { margin-top: 58px; display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr; align-items: center; }
.asset-flow article { min-height: 210px; padding: 24px; border-top: 2px solid var(--coral); background: var(--surface); }
.asset-flow article > span { color: var(--ghost); font-size: 11px; font-weight: 800; }
.asset-flow article > .cj-icon { width: 26px; height: 26px; margin: 32px 0 18px; color: var(--coral); }
.asset-flow article strong { display: block; font-size: 17px; }
.asset-flow article p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.asset-flow > i { height: 1px; background: var(--line-strong); }

.demo-section { background: var(--navy); color: #fff; }
.demo-section .section-kicker { color: #ff8a72; }
.demo-section .section-heading h2 { color: #fff; }
.demo-section .section-heading > p:last-child { color: #aeb9cb; }
.product-demo { overflow: hidden; border: 1px solid #2b3955; border-radius: var(--radius-lg); background: #0d1d3b; box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.demo-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid #2b3955; }
.demo-tabs button { min-height: 58px; border: 0; border-right: 1px solid #2b3955; background: transparent; color: #aeb9cb; font-weight: 750; cursor: pointer; }
.demo-tabs button:last-child { border-right: 0; }
.demo-tabs button:hover, .demo-tabs button.is-active { background: #14284d; color: #fff; }
.demo-tabs button.is-active { box-shadow: inset 0 -3px 0 var(--coral); }
.demo-body { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); min-height: 520px; }
.demo-visual { min-width: 0; padding: 28px; border-right: 1px solid #2b3955; background: #09172f; }
.demo-panel { height: 100%; min-height: 440px; overflow: hidden; border: 1px solid #2b3955; border-radius: var(--radius-md); background: #fff; color: var(--ink); }
.demo-panel > img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.demo-copy { padding: 50px 38px; }
.demo-copy h3 { margin: 11px 0 16px; color: #fff; font-size: 28px; line-height: 1.15; }
.demo-copy > p:not(.section-kicker) { color: #b8c2d3; line-height: 1.7; }
.demo-copy ul { display: grid; gap: 10px; margin: 28px 0; padding: 0; list-style: none; color: #dbe2ed; font-size: 14px; }
.demo-copy li::before { content: ""; width: 6px; height: 6px; display: inline-block; margin: 0 10px 2px 0; border-radius: 50%; background: var(--coral); }
.demo-copy a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; }
.demo-copy a .cj-icon { width: 17px; height: 17px; }
.seo-visual { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 34px; padding: 42px; background: #f8fafc; }
.seo-score { width: 180px; height: 180px; display: grid; place-content: center; border: 12px solid #ccebd8; border-radius: 50%; text-align: center; }
.seo-score strong { color: var(--green); font-size: 62px; line-height: .9; }
.seo-score span { margin-top: 8px; color: var(--muted); font-size: 12px; }
.seo-visual ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.seo-visual li { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; font-size: 13px; }
.seo-visual li .cj-icon { color: var(--green); }
.social-visual { padding: 28px; background: #f8fafc; }
.calendar-head { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.calendar-head span { color: var(--green); font-size: 12px; font-weight: 800; }
.calendar-row { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.calendar-row > span { color: var(--muted); font-size: 12px; font-weight: 800; }
.calendar-row article { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; font-weight: 800; }
.calendar-row small { display: block; margin-top: 4px; color: var(--muted); font-weight: 500; }
.publish-visual { display: grid; place-items: center; padding: 40px; background: #f3faf6; }
.publish-success { max-width: 360px; text-align: center; }
.publish-success .cj-icon { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--green); }
.publish-success span, .publish-success strong { display: block; }
.publish-success span { color: var(--green); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.publish-success strong { margin: 8px 0; font-size: 28px; overflow-wrap: anywhere; }
.publish-success p { color: var(--muted); }
.demo-panel[hidden] { display: none !important; }

.steps-section { background: var(--surface); }
.steps-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid var(--line-strong); }
.steps-list li { position: relative; padding: 34px 36px 0 0; }
.steps-list li > span { position: absolute; top: -12px; left: 0; padding-right: 10px; background: var(--surface); color: var(--coral); font-size: 12px; font-weight: 850; }
.step-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 56px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; color: var(--coral); box-shadow: var(--shadow-xs); }
.step-icon .cj-icon { width: 24px; height: 24px; }
.steps-list h3 { margin-bottom: 9px; font-size: 22px; }
.steps-list p { max-width: 340px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.comparison-section { border-bottom: 1px solid var(--line); }
.comparison-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; align-items: start; }
.comparison-intro { position: sticky; top: 120px; }
.comparison-list { border-top: 1px solid var(--line); }
.comparison-list article { min-height: 118px; display: grid; grid-template-columns: 170px 1fr; gap: 28px; align-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.comparison-list span { color: var(--muted); font-size: 13px; font-weight: 700; }
.comparison-list strong { font-size: 15px; line-height: 1.55; }
.comparison-highlight { position: relative; margin-top: 12px; border: 1px solid #ffd2c8 !important; border-radius: var(--radius-md); background: var(--coral-soft); }
.comparison-highlight > .cj-icon { position: absolute; top: 18px; right: 18px; color: var(--coral); }

.use-cases-section { background: var(--surface); }
.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.use-case-grid article { min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.use-case-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 54px; border: 1px solid #ffd8cf; border-radius: var(--radius-md); background: var(--coral-soft); color: var(--coral); }
.use-case-icon .cj-icon { width: 24px; height: 24px; }
.use-case-grid h3 { margin: 9px 0 12px; font-size: 25px; line-height: 1.15; }
.use-case-grid article > p:not(.mini-label) { color: var(--muted); font-size: 14px; line-height: 1.7; }
.use-case-grid a { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--ink); font-size: 13px; font-weight: 800; }
.use-case-grid a .cj-icon { width: 16px; height: 16px; }

.pricing-section { border-bottom: 1px solid var(--line); }
.pricing-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.pricing-heading > div:first-child { max-width: 780px; }
.billing-toggle { display: inline-grid; grid-template-columns: 1fr 1fr; padding: 4px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.billing-toggle button { min-height: 42px; padding: 0 15px; border: 0; border-radius: 5px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer; }
.billing-toggle button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: var(--shadow-xs); }
.billing-toggle button span { color: var(--green); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { min-width: 0; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.price-card.is-featured { border-color: var(--coral); box-shadow: 0 22px 56px rgba(250, 81, 52, .10); }
.price-card-top { min-height: 28px; }
.price-card-top span { display: inline-flex; min-height: 26px; align-items: center; padding: 0 9px; border-radius: 999px; background: var(--coral-soft); color: var(--coral-dark); font-size: 10px; font-weight: 850; }
.price-card-top .quiet-badge { background: #edf3ff; color: #29599a; }
.price-card h3 { margin: 16px 0 6px; font-size: 24px; }
.price-card > p { min-height: 66px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.price-display { display: flex; align-items: baseline; gap: 8px; }
.price-display strong { font-size: 44px; line-height: 1; }
.price-display span { color: var(--muted); font-size: 12px; }
.price-card .price-billing { min-height: 42px; margin: 8px 0 18px; color: var(--muted); font-size: 12px; }
.price-card .price-billing strong { color: var(--ink-soft); }
.price-card ul { display: grid; gap: 12px; margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 13px; }
.price-card li .cj-icon { width: 17px; height: 17px; margin-top: 1px; color: var(--green); }
.price-card .button { width: 100%; margin-top: auto; }
.pricing-free-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 24px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.pricing-free-note .cj-icon { width: 17px; height: 17px; color: var(--green); }
.plan-comparison { margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-comparison summary { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
.plan-comparison summary::-webkit-details-marker { display: none; }
.plan-comparison summary .cj-icon { transition: transform 180ms ease; }
.plan-comparison[open] summary .cj-icon { transform: rotate(180deg); }
.comparison-table-wrap { overflow-x: auto; padding-bottom: 24px; }
.comparison-table-wrap table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 13px; }
.comparison-table-wrap th, .comparison-table-wrap td { padding: 14px; border-top: 1px solid var(--line); text-align: center; }
.comparison-table-wrap th:first-child { text-align: left; }
.comparison-table-wrap tbody th { color: var(--muted); font-weight: 700; }

.faq-section { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 96px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro a { color: var(--coral-dark); font-weight: 750; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--ink); font-weight: 780; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .cj-icon { width: 18px; height: 18px; transition: transform 180ms ease; }
.faq-list details[open] summary .cj-icon { transform: rotate(180deg); }
.faq-list details p { max-width: 690px; margin: -2px 40px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-section { padding-block: 88px !important; background: var(--navy); color: #fff; }
.final-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; }
.final-inner .section-kicker { color: #ff8a72; }
.final-inner h2 { max-width: 800px; color: #fff; }
.final-inner > div:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.final-inner > div:last-child > p { color: #bac4d5; }
.final-inner small { margin-top: 10px; color: #8794aa; }

.site-footer { padding: 64px 0 24px; background: #050f24; color: #a9b5c8; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 48px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid .brand { color: #fff; }
.footer-grid p { max-width: 330px; margin: 8px 0 0; color: #8491a8; font-size: 13px; }
.footer-grid strong { margin-bottom: 8px; color: #fff; font-size: 13px; }
.footer-grid a:not(.brand) { font-size: 13px; transition: color 180ms ease; }
.footer-grid a:not(.brand):hover { color: #fff; }
.footer-bottom { margin-top: 54px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #1b2942; color: #718099; font-size: 11px; }

@media (max-width: 1120px) {
  .nav-menu { gap: 20px; }
  .launch-stage { grid-template-columns: 36px minmax(0, auto); gap: 8px; }
  .stage-icon { width: 36px; height: 36px; }
  .launch-stage small { display: none; }
  .launch-canvas { grid-template-columns: 1.4fr .78fr 1fr .72fr; gap: 10px; }
  .asset-flow { grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr; }
  .demo-body { grid-template-columns: 1fr 330px; }
  .comparison-grid, .faq-layout { gap: 58px; }
}

@media (max-width: 900px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .nav-toggle { display: grid; }
  .nav-menu {
    position: fixed;
    inset: 80px 0 auto 0;
    max-height: calc(100vh - 80px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > a:not(.button) { min-height: 48px; display: flex; align-items: center; padding-inline: 10px; border-bottom: 1px solid var(--line); }
  .nav-menu .nav-cta { margin-top: 16px; }
  .hero { padding-top: 44px; }
  .hero h1 { max-width: 760px; font-size: clamp(46px, 8vw, 64px); }
  .prompt-composer { grid-template-columns: 1fr; }
  .prompt-action { display: grid; grid-template-columns: minmax(220px, .55fr) 1fr; align-items: center; }
  .launch-rail { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .launch-stage { min-width: 150px; scroll-snap-align: start; }
  .stage-line { min-width: 36px; }
  .launch-canvas { grid-template-columns: 1.15fr .85fr; }
  .stage-social, .stage-publish { min-height: 270px; }
  .browser-preview > img { min-height: 270px; }
  section:not(.hero) { padding: 88px 0; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-large { grid-row: auto; }
  .narrative-grid, .comparison-grid, .faq-layout, .final-inner { grid-template-columns: 1fr; gap: 34px; }
  .comparison-intro, .faq-intro { position: static; }
  .asset-flow { grid-template-columns: 1fr 1fr; gap: 16px; }
  .asset-flow > i { display: none; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-visual { border-right: 0; border-bottom: 1px solid #2b3955; }
  .demo-copy { padding: 34px; }
  .steps-list, .use-case-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-list { gap: 48px; border-top: 0; }
  .steps-list li { padding: 28px 0 0; border-top: 1px solid var(--line-strong); }
  .step-icon { margin-bottom: 28px; }
  .pricing-heading { align-items: flex-start; flex-direction: column; }
  .billing-toggle { align-self: stretch; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .site-nav { min-height: 70px; }
  .brand { font-size: 18px; }
  .brand img { width: 38px; height: 38px; }
  .nav-menu { inset-block-start: 70px; max-height: calc(100vh - 70px); }
  .hero { padding: 32px 0 24px; }
  .eyebrow { min-height: 30px; font-size: 11px; }
  .hero h1 { margin-top: 18px; font-size: clamp(38px, 11.8vw, 52px); line-height: 1.01; }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .prompt-composer { margin-top: 22px; gap: 14px; padding: 14px; }
  .prompt-main textarea { min-height: 120px; }
  .prompt-examples { flex-wrap: nowrap; margin-inline: -14px; padding: 0 14px 2px; overflow-x: auto; }
  .prompt-examples span, .prompt-examples button { flex: 0 0 auto; }
  .prompt-action { display: flex; }
  .prompt-action .button { order: 1; }
  .prompt-action p { order: 2; }
  .launch-story { margin-top: 24px; }
  .launch-canvas { grid-template-columns: 1fr; }
  .stage-search, .stage-social, .stage-publish { display: none !important; }
  .stage-panel.is-mobile-active { display: block !important; }
  .launch-canvas.has-mobile-selection .stage-website:not(.is-mobile-active) { display: none; }
  .stage-website { min-height: 320px; }
  .browser-preview > img { min-height: 286px; }
  .launch-stage { min-width: 138px; }
  .hero-proof { justify-content: flex-start; gap: 10px 20px; text-align: left; }
  section:not(.hero) { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .pricing-heading h2, .faq-intro h2, .comparison-intro h2, .narrative-grid h2, .final-inner h2 { font-size: clamp(34px, 10vw, 44px); }
  .showcase-large .showcase-image { min-height: 260px; }
  .showcase-copy { align-items: flex-start; flex-direction: column; }
  .narrative-copy p { font-size: 16px; }
  .asset-flow { grid-template-columns: 1fr; }
  .asset-flow article { min-height: 176px; }
  .asset-flow article > .cj-icon { margin-top: 22px; }
  .demo-tabs { display: flex; overflow-x: auto; }
  .demo-tabs button { min-width: 132px; padding-inline: 16px; border-bottom: 0; }
  .demo-visual { padding: 14px; }
  .demo-panel { min-height: 350px; }
  .demo-copy { padding: 28px 22px; }
  .seo-visual { grid-template-columns: 1fr; justify-items: center; padding: 26px 18px; }
  .seo-score { width: 132px; height: 132px; border-width: 9px; }
  .seo-score strong { font-size: 46px; }
  .comparison-list article { grid-template-columns: 1fr; gap: 8px; padding: 20px 12px; }
  .use-case-grid article { min-height: 350px; }
  .price-card { padding: 24px; }
  .price-display strong { font-size: 40px; }
  .faq-list summary { min-height: 66px; font-size: 14px; }
  .final-section { padding-block: 64px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 24px); }
  .brand span { font-size: 16px; }
  .hero h1 { font-size: 37px; }
  .prompt-composer { margin-inline: -2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
