:root {
  --bg: #f8fbff;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(15, 23, 42, 0.08);
  --text: #112031;
  --heading: #081120;
  --muted: #526173;
  --muted-2: #758295;
  --accent: #0a84ff;
  --accent-2: #7c4dff;
  --accent-3: #13b981;
  --accent-4: #ff8a00;
  --yellow-soft: #fff9db;
  --orange-soft: #fff2e8;
  --blue-soft: #edf7ff;
  --cyan-soft: #eafcff;
  --purple-soft: #f4f0ff;
  --green-soft: #ecfff5;
  --pink-soft: #fff0f6;
  --slate-soft: #f4f8fc;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 36px rgba(15, 23, 42, 0.06);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 42%, #f9fbff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 108px 0; position: relative; isolation: isolate; }

.bg-orb {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.26;
  pointer-events: none;
  z-index: -2;
  animation: floatOrb 16s ease-in-out infinite alternate;
}
.orb-one { background: #8ad4ff; top: -160px; left: -180px; }
.orb-two { background: #c8b6ff; right: -190px; bottom: -180px; animation-delay: 2s; }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--heading);
}
.brand-logo {
  display: block;
  width: clamp(132px, 15vw, 188px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 20px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--heading); }
.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, #0a84ff 0%, #7c4dff 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(17,24,39,.16);
}

.hero {
  padding-top: 126px;
  background:
    radial-gradient(circle at 14% 0%, rgba(10,132,255,0.22), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(124,77,255,0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.08), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 58px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -0.06em; color: var(--heading); }
h1 { font-size: clamp(46px, 5.9vw, 76px); max-width: 880px; font-weight: 835; }
h2 { font-size: clamp(32px, 4.3vw, 54px); font-weight: 820; }
h3 { font-size: 24px; letter-spacing: -0.04em; }
p { color: var(--muted); }
.hero-subtitle { max-width: 690px; font-size: 21px; margin: 24px 0 0; color: #4b5563; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #0a84ff 0%, #7c4dff 55%, #13b981 100%);
  box-shadow: 0 18px 44px rgba(10,132,255,0.24);
}

.btn.secondary {
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.86);
  color: var(--heading);
  box-shadow: var(--shadow-soft);
}
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,0.075);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--muted);
  font-size: 14px;
  box-shadow: 0 4px 18px rgba(15,23,42,.045);
}

.glass-card,
.problem-card,
.output-card,
.tool-card,
.builder-card,
.prompt-card,
.cta-panel {
  border: 1px solid rgba(0,0,0,0.075);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.90));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}
.workflow-card { position: relative; padding: 26px; border-radius: var(--radius-xl); overflow: hidden; }
.workflow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,113,227,0.14), transparent 34%),
    radial-gradient(circle at 100% 40%, rgba(123,97,255,0.13), transparent 42%);
  z-index: -1;
}
.mini-browser { display: flex; gap: 8px; margin-bottom: 28px; }
.mini-browser span { width: 12px; height: 12px; border-radius: 50%; background: rgba(15,23,42,0.18); }
.flow-line { display: grid; gap: 14px; text-align: center; }
.flow-node, .flow-stack span, .result-grid span {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  padding: 15px;
  color: var(--heading);
  font-weight: 820;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.flow-node.active { background: linear-gradient(135deg, rgba(0,113,227,0.13), rgba(255,255,255,0.82)); }
.flow-node.accent { background: linear-gradient(135deg, rgba(123,97,255,0.14), rgba(255,255,255,0.82)); }
.flow-stack, .result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.flow-arrow { color: var(--accent); font-size: 22px; }

/* Bright dynamic section tones */
.problem { background: linear-gradient(180deg, #fff3df 0%, #fffaf0 100%); }
.solution { background: linear-gradient(180deg, #eafcff 0%, #f5fdff 100%); }
.build-output { background: linear-gradient(180deg, #f5eeff 0%, #fcf8ff 100%); }
.how { background: linear-gradient(180deg, #ecfff5 0%, #f6fff9 100%); }
.prompt-library { background: linear-gradient(180deg, #fefcff 0%, #f6faff 20%, #f7fbff 100%); }
.final-cta { background: radial-gradient(circle at 18% 0%, rgba(255,138,0,0.14), transparent 30%), radial-gradient(circle at 84% 0%, rgba(10,132,255,0.14), transparent 30%), linear-gradient(180deg, #ffffff 0%, #eef7ff 100%); }

.section-heading { max-width: 800px; }
.section-heading.narrow { margin: 0 auto 50px; text-align: center; }
.section-heading.narrow .eyebrow { justify-content: center; }
.section-heading p { font-size: 18px; color: var(--muted); }
.two-col, .output-grid, .builder-grid, .tool-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.problem-card, .output-card, .tool-card, .builder-card { padding: 32px; border-radius: var(--radius-lg); }
.card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(0,113,227,0.10);
  color: var(--accent);
  font-weight: 900;
}
.check-list li, .feature-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: var(--muted);
}
.check-list li::before, .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-3);
  font-weight: 900;
}
.section-note {
  max-width: 790px;
  margin: 32px auto 0;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.86);
  text-align: center;
  color: var(--heading);
  font-weight: 750;
  box-shadow: var(--shadow-soft);
}
.solution-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.tool-cards { grid-template-columns: 1fr; }
.tool-card { transition: transform .25s ease, box-shadow .25s ease; }
.tool-card:hover, .output-card:hover, .builder-card:hover, .problem-card:hover { transform: translateY(-5px); box-shadow: 0 28px 90px rgba(15,23,42,.13); }

.phase-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow-soft);
}
.phase-bar a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.phase-bar a:hover { background: #111827; color: #fff; box-shadow: 0 10px 24px rgba(17,24,39,.14); }

.phase {
  margin-top: 76px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 18px 50px rgba(15,23,42,0.05);
}
.phase:nth-of-type(1) { --phase-a: #edf7ff; --phase-b: #ffffff; --phase-c: #0a84ff; background: linear-gradient(180deg, #eef8ff 0%, #ffffff 100%); }
.phase:nth-of-type(2) { --phase-a: #f4f0ff; --phase-b: #ffffff; --phase-c: #7c4dff; background: linear-gradient(180deg, #f6f1ff 0%, #ffffff 100%); }
.phase:nth-of-type(3) { --phase-a: #ecfff5; --phase-b: #ffffff; --phase-c: #13b981; background: linear-gradient(180deg, #ecfff5 0%, #ffffff 100%); }
.phase:nth-of-type(4) { --phase-a: #fff2e8; --phase-b: #ffffff; --phase-c: #ff8a00; background: linear-gradient(180deg, #fff3e9 0%, #ffffff 100%); }
.phase:nth-of-type(5) { --phase-a: #fff0f6; --phase-b: #ffffff; --phase-c: #ec4899; background: linear-gradient(180deg, #fff0f7 0%, #ffffff 100%); }
.phase-heading {
  position: sticky;
  top: 96px;
  z-index: 8;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--phase-a, #fff), rgba(255,255,255,0.95));
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: var(--shadow-soft);
}
.phase-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--phase-c, var(--accent));
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.phase-heading p { margin-bottom: 0; }
.prompt-card {
  margin: 18px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.prompt-card:hover { border-color: rgba(0,113,227,0.25); transform: translateY(-2px); box-shadow: 0 24px 74px rgba(15,23,42,.12); }
.prompt-card summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}
.prompt-card summary::-webkit-details-marker { display: none; }
.prompt-card summary span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,113,227,0.10);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.prompt-card summary em {
  color: var(--muted-2);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}
.prompt-card > p { padding: 0 26px; }
.prompt-card textarea {
  width: calc(100% - 52px);
  min-height: 330px;
  margin: 0 26px 26px;
  padding: 20px;
  resize: vertical;
  border: 1px solid rgba(10,132,255,0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fbfdff 0%, #f1f8ff 100%);
  color: #11324a;
  font: 14px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 24px rgba(10,132,255,0.05);
}

.prompt-card textarea:focus { border-color: rgba(10,132,255,0.48); box-shadow: 0 0 0 4px rgba(10,132,255,0.10); }
.prompt-card.compact textarea { min-height: 245px; }
.prompt-card.final textarea { min-height: 520px; }
.expected {
  margin: 0 26px 26px;
  padding: 14px 16px !important;
  border-radius: 16px;
  background: rgba(19,185,129,0.09);
  border: 1px solid rgba(19,185,129,0.18);
  color: #166534;
  font-size: 14px;
}

.final-prompt { margin-top: 88px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 990px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 78px);
  border-radius: var(--radius-xl);
  text-align: center;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,138,0,0.18), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(10,132,255,0.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62));
  pointer-events: none;
}
.cta-panel h2, .cta-panel p, .cta-panel a { position: relative; }
.cta-panel p { max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-reminder { margin-top: 26px; font-size: 14px; color: var(--muted-2); }
.site-footer {
  padding: 34px 0 60px;
  color: var(--muted-2);
  background: #f6fbff;
}
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--border); padding-top: 24px; }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-brand p { margin: 0; }
.footer-logo { display: block; width: 142px; height: auto; object-fit: contain; }
.footer-grid > div:last-child { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-grid a:hover { color: var(--heading); }

.reveal { animation: riseIn .85s cubic-bezier(.2,.8,.2,1) both; }
.delay-1 { animation-delay: .16s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatOrb {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(38px,-34px,0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
@media (max-width: 980px) {
  .hero-grid, .solution-grid, .two-col, .output-grid, .builder-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 88px; }
  .section-pad { padding: 78px 0; }
  .phase-heading { position: relative; top: auto; }
}
@media (max-width: 640px) {
  .brand-logo { width: 126px; max-height: 36px; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-logo { width: 126px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { border-radius: 22px; align-items: flex-start; top: 8px; }
  .header-cta { display: none; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions, .hero-actions.center { flex-direction: column; }
  .btn { width: 100%; }
  .flow-stack, .result-grid { grid-template-columns: 1fr; }
  .phase-bar { border-radius: 28px; }
  .prompt-card summary { grid-template-columns: 1fr; gap: 8px; }
  .prompt-card textarea { width: calc(100% - 28px); margin-left: 14px; margin-right: 14px; font-size: 13px; }
  .prompt-card > p, .expected { margin-left: 14px; margin-right: 14px; padding-left: 0; padding-right: 0; }
  .footer-grid { flex-direction: column; }
}

/* === Bright Sections V2: strong visual separation overrides === */
body {
  background: #f7fbff !important;
}
.site-header {
  background: rgba(255,255,255,0.92) !important;
}
.hero {
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 132, 255, 0.28), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(124, 77, 255, 0.20), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%) !important;
}
.problem {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 180, 80, 0.35), transparent 28%),
    linear-gradient(180deg, #fff0d8 0%, #fff8e8 100%) !important;
}
.solution {
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 194, 255, 0.28), transparent 30%),
    linear-gradient(180deg, #dff8ff 0%, #f2fdff 100%) !important;
}
.build-output {
  background:
    radial-gradient(circle at 10% 6%, rgba(151, 98, 255, 0.24), transparent 30%),
    linear-gradient(180deg, #efe6ff 0%, #fbf5ff 100%) !important;
}
.how {
  background:
    radial-gradient(circle at 86% 12%, rgba(29, 216, 125, 0.24), transparent 30%),
    linear-gradient(180deg, #ddffed 0%, #f2fff8 100%) !important;
}
.prompt-library {
  background:
    linear-gradient(180deg, #fff6df 0%, #e9f7ff 18%, #f3ecff 38%, #ebfff4 62%, #fff0f6 84%, #ffffff 100%) !important;
}
.final-cta {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 138, 0, 0.26), transparent 30%),
    radial-gradient(circle at 84% 0%, rgba(10, 132, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #e6f5ff 100%) !important;
}
.glass-card,
.problem-card,
.output-card,
.tool-card,
.builder-card,
.prompt-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #0f172a !important;
}
.prompt-card textarea {
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%) !important;
  color: #123047 !important;
  border-color: rgba(10, 132, 255, 0.28) !important;
}
.phase {
  border: 1px solid rgba(15,23,42,0.08) !important;
}
#phase-plan {
  background: linear-gradient(180deg, #e7f5ff 0%, #ffffff 100%) !important;
}
#phase-build {
  background: linear-gradient(180deg, #f2e9ff 0%, #ffffff 100%) !important;
}
#phase-pages {
  background: linear-gradient(180deg, #e5fff1 0%, #ffffff 100%) !important;
}
#phase-system {
  background: linear-gradient(180deg, #fff0dc 0%, #ffffff 100%) !important;
}
#launch,
.phase#launch,
#phase-launch {
  background: linear-gradient(180deg, #ffe9f3 0%, #ffffff 100%) !important;
}
.phase-heading {
  background: rgba(255,255,255,0.94) !important;
}

/* Copy prompt controls */
.prompt-card summary {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}
.copy-prompt-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(10,132,255,0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #0a84ff 0%, #7c4dff 100%);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(10,132,255,0.16);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.copy-prompt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10,132,255,0.22);
}
.copy-prompt-btn.copied {
  border-color: rgba(19,185,129,0.28);
  background: linear-gradient(135deg, #13b981 0%, #16a34a 100%);
  box-shadow: 0 10px 24px rgba(19,185,129,0.18);
}
.copy-prompt-bottom {
  margin: -10px 26px 22px;
  width: auto;
}
.prompt-card.long-prompt textarea {
  margin-bottom: 22px;
}
.brand-logo {
  width: clamp(118px, 12vw, 156px) !important;
  max-height: 34px !important;
}
.footer-logo {
  width: 128px !important;
  max-height: 42px !important;
}
@media (max-width: 640px) {
  .prompt-card summary {
    grid-template-columns: 1fr;
  }
  .copy-prompt-btn {
    width: 100%;
    margin-top: 4px;
  }
  .copy-prompt-bottom {
    width: calc(100% - 28px);
    margin: -8px 14px 20px;
  }
  .brand-logo {
    width: 118px !important;
    max-height: 32px !important;
  }
}


/* Affiliate link and builder CTA upgrades */
.inline-affiliate-link {
  color: #075fc7;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.inline-affiliate-link:hover { color: #7c4dff; }
.builder-affiliate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(10,132,255,0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 32px rgba(10,132,255,0.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.builder-affiliate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10,132,255,0.24);
  filter: saturate(1.06);
}
.builder-affiliate-btn.base44 { background: linear-gradient(135deg, #0a84ff 0%, #7c4dff 100%); }
.builder-affiliate-btn.lovable { background: linear-gradient(135deg, #ff6b9a 0%, #7c4dff 100%); }
.builder-affiliate-btn.small { min-height: 38px; padding: 0 15px; font-size: 13px; }
.builder-card .builder-affiliate-btn { margin-top: 18px; }
.builder-step-cta,
.post-copy-affiliate,
.final-builder-choice {
  width: calc(100% - 52px);
  margin: 0 26px 22px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(10,132,255,0.16);
  background: linear-gradient(135deg, rgba(10,132,255,0.09), rgba(255,255,255,0.86));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.055);
}
.builder-step-cta p,
.post-copy-affiliate p,
.final-builder-choice p {
  margin: 0;
  color: #21425f;
  font-weight: 750;
}
.post-copy-affiliate {
  display: none;
  background: linear-gradient(135deg, rgba(19,185,129,0.10), rgba(255,255,255,0.92));
  border-color: rgba(19,185,129,0.20);
}
.post-copy-affiliate.is-visible { display: flex; }
.prompt-bottom-actions {
  width: calc(100% - 52px);
  margin: -8px 26px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.prompt-bottom-actions .copy-prompt-bottom { margin: 0; }
.final-builder-choice {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}
.builder-choice-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.affiliate-disclosure {
  flex-basis: 100%;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,0.08);
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .builder-step-cta,
  .post-copy-affiliate,
  .final-builder-choice,
  .prompt-bottom-actions {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .builder-affiliate-btn,
  .builder-choice-actions .builder-affiliate-btn { width: 100%; }
  .builder-choice-actions { width: 100%; }
}


/* Friendly headline scale override - only typography sizing changed */
h1 { font-size: clamp(46px, 5.9vw, 76px) !important; max-width: 880px; font-weight: 835; }
h2 { font-size: clamp(32px, 4.3vw, 54px) !important; font-weight: 820; }
@media (max-width: 640px) {
  h1 { font-size: 40px !important; }
  h2 { font-size: 32px !important; }
}


/* === Premium Hero Image Enhancement === */
.hero-visual {
  position: relative;
}
.hero-image-shell {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero-image-frame {
  position: relative;
  width: min(100%, 760px);
  margin: 0;
  padding: 14px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.90));
  box-shadow: 0 32px 90px rgba(10, 25, 47, 0.20), 0 12px 30px rgba(10,132,255,0.09);
  transform: perspective(1600px) rotateY(-5deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform .45s ease, box-shadow .45s ease;
}
.hero-visual:hover .hero-image-frame {
  transform: perspective(1600px) rotateY(-2deg) rotateX(1.2deg) translateY(-6px);
  box-shadow: 0 40px 110px rgba(10, 25, 47, 0.24), 0 18px 36px rgba(124,77,255,0.10);
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.65);
}
.hero-image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(255,255,255,0.12) 26%, rgba(255,255,255,0.34) 34%, transparent 46%);
  transform: translateX(-130%);
  animation: heroShine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.hero-image-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: .68;
  z-index: -2;
  animation: heroPulse 8s ease-in-out infinite alternate;
}
.hero-image-glow-one {
  width: 220px;
  height: 220px;
  background: rgba(10,132,255,0.22);
  top: 14px;
  right: 36px;
}
.hero-image-glow-two {
  width: 250px;
  height: 250px;
  background: rgba(124,77,255,0.18);
  bottom: 18px;
  left: 0;
  animation-delay: 1.3s;
}
.hero-image-badge,
.hero-floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}
.hero-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--heading);
  font-size: 13px;
  font-weight: 760;
}
.hero-image-badge-top {
  top: 8px;
  left: 10px;
  animation: floatTag 6s ease-in-out infinite;
}
.hero-image-badge-bottom {
  left: 24px;
  bottom: 6px;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 12px;
  min-width: 240px;
  animation: floatTag 7s ease-in-out infinite 1.2s;
}
.hero-image-badge-bottom strong {
  font-size: 14px;
  color: var(--heading);
}
.hero-image-badge-bottom span { color: var(--muted); }
.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a84ff, #7c4dff);
  box-shadow: 0 0 0 6px rgba(10,132,255,0.10);
}
.hero-floating-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  max-width: 220px;
  animation: floatCard 7s ease-in-out infinite;
}
.hero-floating-card strong {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.35;
}
.floating-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-floating-card-left {
  left: -12px;
  bottom: 96px;
  animation-delay: .4s;
}
.hero-floating-card-right {
  right: -12px;
  top: 104px;
  animation-delay: 1.3s;
}

@keyframes heroShine {
  0%, 14% { transform: translateX(-130%); }
  28%, 100% { transform: translateX(160%); }
}
@keyframes heroPulse {
  0% { transform: scale(.92); opacity: .44; }
  100% { transform: scale(1.08); opacity: .74; }
}
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .hero-panel.hero-visual { order: -1; }
  .hero-image-shell {
    min-height: auto;
    padding-top: 20px;
  }
  .hero-image-frame {
    width: 100%;
    transform: none;
  }
  .hero-visual:hover .hero-image-frame {
    transform: translateY(-4px);
  }
  .hero-floating-card-right {
    right: 0;
    top: 86px;
  }
  .hero-floating-card-left {
    left: 0;
    bottom: 82px;
  }
  .hero-image-badge-top {
    left: 12px;
    top: 0;
  }
  .hero-image-badge-bottom {
    left: 16px;
    bottom: -2px;
  }
}
@media (max-width: 640px) {
  .hero-image-frame {
    padding: 10px;
    border-radius: 24px;
  }
  .hero-image {
    border-radius: 16px;
  }
  .hero-image-shell {
    display: grid;
    gap: 12px;
  }
  .hero-image-badge {
    font-size: 12px;
  }
  .hero-image-badge-bottom,
  .hero-floating-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }
  .hero-image-badge-bottom {
    min-width: 0;
  }
  .hero-image-glow-one {
    width: 160px;
    height: 160px;
    top: 0;
    right: 12px;
  }
  .hero-image-glow-two {
    width: 180px;
    height: 180px;
    left: 4px;
    bottom: 70px;
  }
}


/* Clean Hero Image: remove extra explanatory labels near the visual */
.hero-image-badge-bottom,
.hero-floating-card {
  display: none !important;
}
