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

:root {
  color-scheme: light;
  --midnight: #14172a;
  --midnight-2: #1f2342;
  --midnight-3: #2a2f55;
  --gold: #c9a35a;
  --gold-light: #d6b87a;
  --gold-soft: #e7d6a8;
  --gold-deep: #8b6a2d;
  --sage: #eef5f1;
  --sage-2: #dfece6;
  --sage-3: #c8ddd3;
  --coral: #b8584a;
  --teal: #0f766e;
  --ink: #1a1f3a;
  --ink-soft: #4a527a;
  --muted: #7e85a3;
  --line: #d4dfd8;
  --line-2: #c3d2ca;
  --white: #fdfefa;
  --shadow-sm: 0 1px 3px rgba(20, 23, 42, 0.06), 0 4px 16px rgba(20, 23, 42, 0.06);
  --shadow: 0 12px 42px rgba(20, 23, 42, 0.13);
  --shadow-lg: 0 28px 70px rgba(20, 23, 42, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  color: var(--midnight);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 84% 4%, rgba(15, 118, 110, 0.18), transparent 28rem),
    radial-gradient(circle at 8% 12%, rgba(201, 163, 90, 0.14), transparent 26rem),
    linear-gradient(180deg, #f6fbf8 0%, var(--sage) 52%, var(--sage-2) 100%);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a.download-link,
.cta-btn,
.ghost-btn {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s, border-color 0.18s, box-shadow 0.18s;
}

button,
.cta-btn,
a.download-link {
  border: 0;
  background: var(--midnight);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(20, 23, 42, 0.16);
}

button:hover,
.cta-btn:hover,
.ghost-btn:hover,
a.download-link:hover {
  transform: translateY(-1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}

button svg,
a.download-link svg {
  width: 18px;
  height: 18px;
}

.cta-btn.gold,
.hero-start-btn,
.pricing-cta,
.modal-btn-confirm {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 8px 26px rgba(201, 163, 90, 0.42);
}

.cta-btn.gold:hover,
.hero-start-btn:hover,
.pricing-cta:hover,
.modal-btn-confirm:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 34px rgba(201, 163, 90, 0.52);
}

.ghost-btn,
.wiz-close,
.modal-btn-cancel {
  border: 1.5px solid var(--line-2);
  background: transparent;
  color: var(--midnight);
  box-shadow: none;
}

.ghost-btn:hover,
.wiz-close:hover,
.modal-btn-cancel:hover {
  border-color: var(--midnight);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.ghost-btn.on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.ghost-btn.on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

.wide {
  width: 100%;
}

.hidden {
  display: none !important;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.kicker,
.eyebrow {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wordmark-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--midnight);
  text-decoration: none;
  white-space: nowrap;
}

.wm-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background: rgba(253, 254, 250, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.wordmark {
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 48px;
  background: rgba(246, 251, 248, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.lp-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 251, 248, 0.96);
  box-shadow: var(--shadow-sm);
}

.lp-header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.lp-header-nav a {
  color: inherit;
  text-decoration: none;
}

.lp-header-nav a:hover {
  color: var(--midnight);
}

.lp-header-cta {
  min-height: 40px;
  background: var(--midnight);
}

.hero {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 74px 60px 78px;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.lp-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 7px 15px;
  background: var(--white);
  color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
}

.hero-title {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 650;
  line-height: 0.98;
}

.hero-title em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.58;
}

.hero-start {
  max-width: 560px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.hero-start-label {
  display: grid;
  gap: 5px;
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 650;
}

.hero-start-row {
  display: flex;
  gap: 10px;
}

.hero-start-input {
  flex: 1;
  min-width: 0;
}

.hero-start-btn {
  border: 0;
  padding: 0 24px;
}

.hero-start-fine {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.stars,
.floater-stars,
.story-card span {
  color: var(--gold);
  letter-spacing: 1.5px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 34px;
  height: 34px;
  border: 2px solid var(--white);
  border-radius: 50%;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-right {
  position: relative;
  min-height: 590px;
}

.hero-comic-card {
  max-width: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
}

.comic-art-stack {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--midnight);
}

.comic-art-stack img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.comic-cover-overlay {
  position: absolute;
  inset: auto 24px 24px;
  color: var(--white);
}

.comic-cover-overlay::before {
  content: "";
  position: absolute;
  inset: -180px -80px -24px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(20, 23, 42, 0.9));
}

.comic-cover-overlay span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.comic-cover-overlay h3 {
  margin: 8px 0 4px;
  color: var(--white);
  font-size: 30px;
}

.comic-cover-overlay p {
  margin-bottom: 0;
  color: var(--gold-soft);
}

.comic-page-strip {
  height: 80px;
  padding: 18px 22px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.comic-page-strip span {
  flex: 1;
  height: 64%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.comic-page-strip span:nth-child(1) { height: 72%; }
.comic-page-strip span:nth-child(2) { height: 52%; }
.comic-page-strip span:nth-child(3) { height: 88%; }
.comic-page-strip span:nth-child(4) { height: 44%; }
.comic-page-strip span:nth-child(5) { height: 64%; }
.comic-page-strip span:nth-child(6) { height: 76%; }
.comic-page-strip span:nth-child(7) { height: 58%; }
.comic-page-strip span:nth-child(8) { height: 82%; }
.comic-page-strip span:nth-child(9) { height: 48%; }

.comic-meta {
  display: flex;
  justify-content: space-between;
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-floater,
.hero-note {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-floater {
  right: 8%;
  top: 9%;
  width: 240px;
  padding: 20px;
}

.hero-floater p {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.floater-cite {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.hero-note {
  right: 0;
  bottom: 52px;
  width: 280px;
  padding: 17px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-note svg {
  color: var(--gold-deep);
}

.hero-note p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.occasion-strip {
  border-block: 1px solid var(--line);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  background: rgba(253, 254, 250, 0.72);
}

.occasion-strip span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.occasion-strip ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 700;
  white-space: nowrap;
}

.section-block {
  padding: 90px 60px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head h2 {
  margin: 8px 0 12px;
  color: var(--midnight);
  font-size: clamp(34px, 4vw, 56px);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
}

.how-grid,
.examples-grid,
.stories-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.how-grid {
  grid-template-columns: repeat(4, 1fr);
}

.examples-grid {
  grid-template-columns: repeat(3, 1fr);
}

.how-card,
.example-card,
.story-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.how-card {
  min-height: 220px;
  padding: 24px;
}

.how-card span,
.pricing-eyebrow {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.how-card p,
.example-card p {
  color: var(--ink-soft);
}

.example-card {
  overflow: hidden;
}

.example-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.example-card div {
  padding: 20px;
}

.example-card span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stories,
.final-cta {
  padding: 94px 60px;
  background: var(--midnight);
  color: var(--white);
}

.section-head.dark h2,
.final-cta h2 {
  color: var(--white);
}

.section-head.dark p,
.final-cta p {
  color: var(--gold-soft);
}

.stories-grid {
  grid-template-columns: repeat(4, 1fr);
}

.story-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--midnight-2);
  border-color: rgba(231, 214, 168, 0.22);
  color: var(--white);
}

.story-card blockquote {
  margin: 0;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
}

.story-card strong {
  margin-top: auto;
}

.story-card small {
  color: var(--gold-soft);
}

.pricing-card {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.8fr 1.3fr auto;
  gap: 42px;
  align-items: center;
}

.pricing-amount {
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-amount span {
  color: var(--gold-deep);
  font-size: 36px;
  vertical-align: top;
}

.pricing-card small {
  color: var(--muted);
}

.pricing-features {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 14px;
}

.pricing-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  background: var(--gold);
}

.pricing-cta {
  border: 0;
  white-space: nowrap;
  padding: 0 26px;
}

.faq {
  background: rgba(255, 255, 255, 0.24);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 20px 24px;
}

.faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 24px;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  width: min(820px, 100%);
  margin: 0 auto 16px;
  font-size: clamp(36px, 5vw, 66px);
}

.lp-footer {
  padding: 58px 60px 28px;
  background: #0f1324;
  color: var(--gold-soft);
}

.footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(231, 214, 168, 0.14);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 46px;
}

.footer-brand .wordmark {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  color: var(--muted);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-cols h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-cols a {
  display: block;
  color: var(--gold-soft);
  text-decoration: none;
  padding: 4px 0;
  font-size: 14px;
}

.footer-bottom {
  width: min(1240px, 100%);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.wizard-page,
.studio-page {
  min-height: 100dvh;
}

.wiz-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 251, 248, 0.94);
  backdrop-filter: blur(14px);
}

.wiz-progress-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wiz-step-label,
.wiz-percent {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.wiz-progress {
  flex: 1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage-3);
}

.wiz-progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 0.2s;
}

.wiz-close {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.wizard-body {
  min-height: 100dvh;
  padding: 112px 22px 42px;
  display: grid;
  place-items: start center;
}

.wizard-card {
  width: min(860px, 100%);
  min-height: 620px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-page {
  display: none;
  gap: 18px;
}

.step-page.active {
  display: grid;
}

.step-page h1 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(36px, 5vw, 58px);
}

.step-page > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--midnight);
  padding: 13px 15px;
  outline: none;
  font-weight: 500;
  line-height: 1.35;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.option-card {
  min-height: 92px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(238, 245, 241, 0.72);
  color: var(--midnight);
  box-shadow: none;
  padding: 14px;
  text-align: left;
  justify-content: flex-start;
  font-weight: 800;
}

.option-card:hover,
.option-card.selected {
  border-color: var(--gold);
  background: rgba(231, 214, 168, 0.28);
  box-shadow: var(--shadow-sm);
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--sage);
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.char-counter {
  margin: -10px 0 0;
  color: var(--muted);
  text-align: right;
  font-size: 12px;
  font-weight: 800;
}

.reference-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.reference-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
}

.wiz-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.studio-status-badge {
  flex: 1;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: var(--white);
  color: var(--gold-deep);
  padding: 6px 16px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.studio-body {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 112px 36px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.studio-storyboard,
.studio-player {
  min-width: 0;
}

.studio-storyboard {
  display: grid;
  gap: 18px;
}

.studio-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.studio-section-head h2 {
  margin: 0 0 8px;
  color: var(--midnight);
  font-size: clamp(32px, 4vw, 50px);
}

#projectLogline {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.studio-player {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.player-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

#coverCanvas {
  width: 100%;
  height: auto;
  display: block;
  background: var(--midnight);
}

.player-controls {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audio-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.studio-pill,
#projectStatus {
  min-height: 32px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--white);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.purchase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--midnight);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.purchase-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 90, 0.36), transparent 70%);
}

.purchase-card > * {
  position: relative;
}

.purchase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.purchase-top h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 24px;
}

.purchase-top p,
.asset-card p {
  margin-bottom: 0;
  color: var(--gold-soft);
  font-size: 12px;
}

.price-tag {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.price-tag .dollar {
  font-size: 18px;
  vertical-align: top;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.preview-tile {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border: 1px solid rgba(231, 214, 168, 0.16);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(201, 163, 90, 0.3), transparent 48%),
    linear-gradient(180deg, var(--midnight-3), #0e1124);
}

.preview-tile img {
  width: 100%;
  height: 100%;
  min-height: 164px;
  display: block;
  object-fit: cover;
}

.preview-tile span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(253, 254, 250, 0.94);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 900;
}

.page-list,
.asset-list {
  display: grid;
  gap: 12px;
}

.story-page,
.asset-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 14px;
}

.story-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-page-header strong {
  color: var(--gold-deep);
  white-space: nowrap;
}

.story-page textarea {
  min-height: 82px;
}

.asset-list {
  max-height: 480px;
  overflow: auto;
  padding-right: 4px;
}

.asset-card {
  border-color: rgba(231, 214, 168, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.asset-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(231, 214, 168, 0.22);
  border-radius: var(--radius-xs);
}

#toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  max-width: min(440px, calc(100vw - 40px));
  border: 1px solid rgba(231, 214, 168, 0.24);
  border-radius: var(--radius-sm);
  background: var(--midnight);
  color: var(--white);
  padding: 13px 16px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  width: min(430px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--gold-deep);
}

.modal-title {
  margin: 0 0 8px;
  color: var(--midnight);
  font-size: 30px;
}

.modal-body {
  color: var(--ink-soft);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .hero,
  .studio-body,
  .pricing-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .how-grid,
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-right {
    min-height: 540px;
  }

  .studio-player {
    position: static;
  }
}

@media (max-width: 760px) {
  .lp-header {
    padding: 16px 20px;
  }

  .lp-header-nav {
    display: none;
  }

  .hero,
  .section-block,
  .stories,
  .final-cta,
  .lp-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-start-row,
  .wiz-footer,
  .purchase-top,
  .studio-section-head,
  .story-page-header {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-right {
    min-height: auto;
  }

  .hero-comic-card {
    transform: none;
  }

  .hero-floater,
  .hero-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .examples-grid,
  .how-grid,
  .stories-grid,
  .option-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .wiz-header {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .wiz-progress-wrap {
    order: 3;
    flex-basis: 100%;
  }

  .wizard-body,
  .studio-body {
    padding: 126px 16px 34px;
  }

  .wizard-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .split-fields,
  .modal-actions {
    grid-template-columns: 1fr;
  }

  .reference-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
  }

  .step-page h1 {
    font-size: 36px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .occasion-strip {
    padding-inline: 18px;
  }
}
