:root {
  --paper: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f2eee8;
  --surface-3: #f7f4ef;
  --ink: #0f1220;
  --muted: #596072;
  --soft: #8d93a3;
  --line: rgba(15, 18, 32, 0.1);
  --line-strong: rgba(15, 18, 32, 0.18);
  --accent: #5750f2;
  --accent-dark: #29256f;
  --brand-action: #5b5ff4;
  --brand-action-2: #2677e8;
  --rose: #c84475;
  --green: #047a5b;
  --amber: #bb7814;
  --blue: #1976b8;
  --radius: 8px;
  --shadow: 0 26px 70px rgba(17, 19, 32, 0.12);
  --shadow-tight: 0 10px 30px rgba(17, 19, 32, 0.08);
  --ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 248, 0.88);
  border-bottom: 1px solid rgba(16, 20, 37, 0.08);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 7px;
  background: transparent;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 650;
  white-space: nowrap;
}

.btn:hover {
  border-color: var(--line-strong);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--rose));
  color: #fff;
  box-shadow: 0 16px 36px rgba(92, 85, 242, 0.22);
}

.btn-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.btn-small {
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 54px;
  align-items: center;
  padding: 68px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(92, 85, 242, 0.22);
  border-radius: 999px;
  background: rgba(92, 85, 242, 0.08);
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(13, 159, 113, 0.12);
}

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

h1 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 500;
}

h1 span,
h2 span {
  color: var(--accent);
  font-style: italic;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 153, 102, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.hero-board {
  position: relative;
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 14px;
  align-items: end;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.tall {
  aspect-ratio: 3 / 4;
}

.photo-card.small {
  aspect-ratio: 4 / 5;
}

.stack {
  display: grid;
  gap: 14px;
}

.floating-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  font-size: 13px;
}

.metric {
  font-family: var(--mono);
  color: var(--accent-dark);
  font-weight: 800;
}

.logo-row {
  padding: 24px 0 52px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.logo-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-row strong {
  color: var(--ink);
}

.logo-list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 20px;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: #f4f1ed;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.section-head p,
.section-intro {
  color: var(--muted);
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.feature-card {
  min-height: 230px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--accent);
  font-weight: 900;
}

.feature-card h3,
.plan h3,
.policy-content h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-card p,
.plan p,
.mini-copy,
.policy-content p,
.policy-content li {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 210px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.template-card {
  overflow: hidden;
  padding: 0;
}

.template-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.template-card div {
  padding: 14px;
}

.template-card strong {
  display: block;
  margin-bottom: 4px;
}

.template-card span {
  color: var(--muted);
  font-size: 13px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}

.pricing-chat-note {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin: 18px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(8, 14, 31, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 248, 0.86));
  box-shadow: 0 12px 26px rgba(8, 14, 31, 0.05);
  color: var(--text);
  font-size: 14px;
  text-align: left;
}

.pricing-chat-note span {
  color: var(--muted);
  line-height: 1.55;
}

.billing-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(480px, 100%);
  gap: 10px;
  margin: 24px auto 0;
  padding: 6px;
  border: 1px solid rgba(8, 14, 31, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 14, 31, 0.06);
}

.billing-choice button {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 10px 14px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

.billing-choice button span {
  font-size: 15px;
  font-weight: 800;
}

.billing-choice button small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.billing-choice button.active {
  background: linear-gradient(100deg, #5b4df5, #d84a86);
  color: #fff;
  box-shadow: 0 12px 26px rgba(92, 85, 242, 0.24);
}

.billing-choice button.active small {
  color: rgba(255, 255, 255, 0.86);
}

.yearly-nudge {
  margin: 10px 0 0;
  color: #087453;
  font-size: 14px;
  font-weight: 800;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.plan .badge {
  align-self: flex-start;
  margin-bottom: 12px;
}

.plan.highlight {
  border-color: rgba(92, 85, 242, 0.38);
  box-shadow: 0 18px 50px rgba(92, 85, 242, 0.12);
}

.price {
  margin: 20px 0 8px;
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--ui);
  font-size: 14px;
}

.plan ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
}

.plan .btn {
  margin-top: auto;
}

.app-frame {
  display: grid;
  grid-template-columns: 230px 1fr 280px;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.app-side,
.app-settings {
  background: #f7f5f1;
  padding: 18px;
}

.app-main {
  padding: 18px;
}

.app-nav-item,
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.app-nav-item.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(16, 20, 37, 0.06);
}

.canvas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-2);
}

.result img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.prompt-box {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.prompt-box textarea {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(13, 159, 113, 0.1);
  color: #087453;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.cta-band {
  padding: 54px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 12%, rgba(219, 75, 120, 0.22), transparent 32%),
    linear-gradient(135deg, #111526, #242944);
  color: #fff;
}

.cta-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 68px 0 38px;
}

.page-hero h1 {
  max-width: 780px;
}

.pricing-hero {
  display: grid;
  justify-items: center;
  padding: 52px 0 18px;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 780px;
}

.pricing-hero .lede {
  max-width: 760px;
}

.pricing-hero .billing-toggle {
  margin: 22px auto 0;
}

.pricing-plans-section {
  padding-top: 30px;
}

.policy-content {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 80px;
}

.policy-content section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.policy-content ul {
  padding-left: 20px;
}

.table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 700;
}

.mobile-menu {
  display: none;
}

.mobile-menu span,
.mobile-menu span::before,
.mobile-menu span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.mobile-menu span {
  position: relative;
}

.mobile-menu span::before,
.mobile-menu span::after {
  position: absolute;
  left: 0;
}

.mobile-menu span::before {
  top: -6px;
}

.mobile-menu span::after {
  top: 6px;
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: 40px 1fr 40px;
    justify-content: stretch;
  }

  .nav-inner .brand {
    grid-column: 2;
    justify-self: center;
    gap: 11px;
    font-size: 21px;
  }

  .nav-inner .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
    grid-column: 3;
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .nav.open .nav-links {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: 8px;
  }

  .hero,
  .section-head,
  .app-frame {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .grid-3,
  .grid-4,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .app-settings {
    display: none;
  }

  .cta-band {
    padding: 30px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 46px;
  }

  .hero-board {
    grid-template-columns: 1fr;
  }

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

  .floating-note {
    position: static;
    margin-top: 12px;
  }
}

/* Posiro original-inspired landing */
.landing-v2 {
  background: var(--paper);
}

.posiro-nav {
  background: rgba(251, 250, 248, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
}

.posiro-hero {
  position: relative;
  overflow: hidden;
}

.posiro-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 58px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 76px;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  color: var(--ink);
  font-family: var(--ui);
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy h1 span,
.how-original h2 span,
.samples-original h2 span,
.final-original h2 span {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.pill-original {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 650;
}

.pill-original span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.pill-original.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.ai-flow {
  position: relative;
  min-height: 560px;
}

.step-label,
.output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.step-label span,
.output-head span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.step-label strong {
  color: var(--ink);
  font-size: 13px;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.input-selfie {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 3px dashed rgba(99, 91, 255, 0.32);
  border-radius: 14px;
  background: #f3f4f6;
  box-shadow: 0 4px 12px rgba(10, 14, 39, 0.06);
}

.input-selfie:nth-child(1) {
  transform: rotate(-2.5deg);
}

.input-selfie:nth-child(2) {
  transform: rotate(1.2deg);
}

.input-selfie:nth-child(3) {
  transform: rotate(-1.4deg);
}

.input-selfie img,
.output-grid img,
.marquee-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef1f5;
}

.input-selfie em {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(10, 14, 39, 0.15);
}

.ai-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 0 11px;
}

.ai-connector i {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(99, 91, 255, 0.32), transparent);
}

.ai-connector div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--rose));
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.3);
}

.output-step {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 2px 4px rgba(10, 14, 39, 0.04), 0 30px 70px rgba(10, 14, 39, 0.12);
}

.output-head span {
  background: linear-gradient(135deg, var(--accent), var(--rose));
}

.output-head strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 11px;
}

.output-head strong i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.output-grid img {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
}

.three-to-many {
  position: absolute;
  top: -10px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(10, 14, 39, 0.25);
  transform: rotate(4deg);
}

.three-to-many span {
  color: #fff;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.three-to-many span:last-child {
  color: #ff80b5;
}

.three-to-many b {
  opacity: 0.55;
}

.how-original,
.samples-original,
.final-original {
  padding: 72px 0;
}

.how-original {
  background: #fff;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.section-kicker.pink {
  color: var(--muted);
}

.how-original h2,
.samples-original h2,
.final-original h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--ui);
  font-size: clamp(30px, 4.3vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.samples-original h2 span,
.final-original h2 span {
  color: var(--rose);
}

.steps-original {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.steps-original article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.steps-original b {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef2ff, #fce7f3);
  color: var(--accent);
  font-size: 16px;
}

.steps-original h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.steps-original p,
.sample-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.sample-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.sample-head p {
  max-width: 540px;
  margin-top: 12px;
}

.segment {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.segment button {
  min-height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.segment button.active {
  background: var(--ink);
  color: #fff;
}

.billing-toggle {
  margin-top: 24px;
}

.billing-toggle button span {
  margin-left: 6px;
  color: inherit;
  opacity: 0.72;
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.marquee-track {
  --marquee-gap: 12px;
  display: flex;
  width: max-content;
  gap: var(--marquee-gap);
  padding: 4px 0;
  will-change: transform;
  animation: marquee 50s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 6px), 0, 0);
  }
}

.marquee-track figure {
  position: relative;
  flex-shrink: 0;
  width: 170px;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 14, 39, 0.04), 0 8px 24px rgba(10, 14, 39, 0.06);
}

.marquee-track figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.final-original {
  padding: 84px 0 96px;
}

.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 42px 0;
  border-top: 1px solid rgba(15, 18, 32, 0.12);
  border-bottom: 1px solid rgba(15, 18, 32, 0.12);
}

.final-copy {
  max-width: 680px;
}

.final-original .final-copy h2 {
  max-width: 680px;
  margin: 12px 0 14px;
  color: var(--ink);
  font-family: var(--ui);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.final-original .final-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.final-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.final-note {
  max-width: 250px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 900px) {
  .posiro-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .ai-flow {
    min-height: 610px;
  }

  .steps-original,
  .sample-head {
    grid-template-columns: 1fr;
  }

  .steps-original {
    display: grid;
  }

  .sample-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 42px;
  }

  .posiro-hero-grid {
    gap: 34px;
  }

  .ai-flow {
    min-height: 520px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .step-label,
  .output-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-original {
    grid-template-columns: 1fr;
  }

  .marquee-track figure {
    width: 145px;
  }

  .final-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-actions {
    justify-items: start;
  }

  .final-note {
    max-width: none;
    text-align: left;
  }
}

/* Minimal usable app layer */
.auth-page {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  min-height: 100vh;
  background: var(--paper);
}

.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(460px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
}

.auth-panel h1,
.product-top h1 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family: var(--ui);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.04;
}

.auth-panel p,
.product-top p {
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.auth-form label,
.upload-card label,
.prompt-card label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.auth-form input,
.upload-card input,
.prompt-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.auth-form input,
.upload-card input {
  min-height: 48px;
  padding: 0 14px;
}

.auth-status-success,
.auth-status-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.45;
}

.auth-status-success {
  border: 1px solid rgba(0, 153, 102, 0.24);
  background: rgba(0, 153, 102, 0.1);
  color: #087453;
}

.auth-status-error {
  border: 1px solid rgba(219, 75, 120, 0.24);
  background: rgba(219, 75, 120, 0.1);
  color: #8f2148;
}

.auth-resend {
  justify-self: start;
}

.prompt-card textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.auth-switch {
  margin-top: 18px;
  font-size: 14px;
}

.auth-switch a {
  color: var(--accent);
  font-weight: 800;
}

.auth-art {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  background:
    radial-gradient(circle at 88% 14%, rgba(236, 72, 153, 0.3), transparent 34%),
    linear-gradient(135deg, #0a0e27, #252a53);
  color: #fff;
}

.auth-art h2 {
  margin: 12px 0 26px;
  font-family: var(--ui);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.auth-art h2 span {
  color: #ff80b5;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.auth-mini-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 12px;
}

.auth-mini-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.product-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--paper);
}

.product-side {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.product-side nav {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.product-side nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.product-side nav a.active,
.product-side nav a:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.product-main {
  padding: 34px;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.product-top h1 {
  margin-top: 8px;
}

.product-top > span {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-grid,
.train-layout,
.studio-workspace {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-hero-card h2,
.train-status h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-hero-card p,
.train-status p {
  color: var(--muted);
}

.app-gallery {
  margin-top: 18px;
}

.app-gallery img,
.reference-preview img,
.result-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
}

.upload-card,
.prompt-card,
.train-status {
  display: grid;
  gap: 16px;
}

.drop-zone {
  padding: 28px;
  border: 1px dashed rgba(99, 91, 255, 0.35);
  border-radius: 8px;
  background: rgba(99, 91, 255, 0.05);
  text-align: center;
}

.drop-zone input {
  min-height: auto;
  border: 0;
  background: transparent;
}

.drop-zone span {
  color: var(--muted);
  font-weight: 500;
}

.reference-preview,
.studio-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.training-progress {
  display: grid;
  gap: 8px;
}

.training-progress div {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: var(--surface-2);
}

.training-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--rose));
  transition: width 120ms linear;
}

.training-done {
  padding: 16px;
  border-radius: 8px;
  background: rgba(13, 159, 113, 0.1);
}

.quick-scenes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-scenes button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.result-card {
  margin: 0;
}

.result-card figcaption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .auth-page,
  .product-shell,
  .dashboard-grid,
  .train-layout,
  .studio-workspace {
    grid-template-columns: 1fr;
  }

  .auth-art {
    min-height: 420px;
  }

  .product-side {
    position: static;
    height: auto;
  }

  .product-side nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-main {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .product-side nav {
    grid-template-columns: 1fr 1fr;
  }

  .reference-preview,
  .studio-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Posiro premium refresh - unified creator studio language
   ========================================================================== */

body {
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f7f2eb 48%, #fbfaf7 100%);
  color: var(--ink);
  font-family: var(--ui);
}

.site-shell {
  background:
    linear-gradient(90deg, rgba(15, 18, 32, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 18, 32, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}

.container {
  width: min(1180px, calc(100% - 48px));
}

.nav {
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(15, 18, 32, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
}

.nav-inner {
  min-height: 78px;
}

.brand {
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  gap: 30px;
  color: #626879;
  font-size: 14px;
  font-weight: 650;
}

.btn {
  min-height: 44px;
  border-radius: 8px;
  border-color: rgba(15, 18, 32, 0.14);
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  font-weight: 800;
  letter-spacing: 0;
}

.btn:hover {
  border-color: rgba(15, 18, 32, 0.24);
  transform: translateY(-1px);
}

.btn-primary,
.btn-dark {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-action) 0%, var(--brand-action-2) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 106, 230, 0.22);
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
}

.mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(87, 80, 242, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(200, 68, 117, 0.07), transparent 34%);
}

.posiro-hero {
  border-bottom: 1px solid rgba(15, 18, 32, 0.07);
}

.posiro-hero-grid {
  min-height: 720px;
  padding-top: 52px;
  padding-bottom: 60px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 20px 0 22px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
}

.hero-shout {
  display: block;
  color: var(--brand-action);
  font-family: var(--ui);
  font-size: 0.92em;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-copy h1 .creator-line {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--ui);
  font-size: 0.88em;
  font-style: normal;
  font-weight: 1000;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.hero-slogan {
  margin: 22px 0 0;
  color: var(--brand-action);
  font-family: var(--ui);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.08;
}

.platform-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 8px -8px;
  white-space: nowrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 48px;
  border-radius: 18px;
  color: #fff;
  font-family: var(--ui);
  font-size: 22px;
  font-style: normal;
  font-weight: 1000;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 26px rgba(17, 19, 32, 0.16);
  transform: rotate(-4deg);
}

.platform-badge:nth-child(2) {
  transform: rotate(5deg);
}

.platform-badge:nth-child(3) {
  transform: rotate(-2deg);
}

.platform-of {
  background: linear-gradient(135deg, #00a7e8, #0567d8);
}

.platform-fv {
  background: linear-gradient(135deg, #40ec65, #10b444);
  color: #06130a;
}

.platform-fs {
  background: linear-gradient(135deg, #45a3ff, #2d7cf4 54%, #2f4fde);
  border-radius: 10px 16px 10px 16px;
}

.how-original h2 span,
.samples-original h2 span,
.final-original h2 span,
.auth-art h2 span {
  color: var(--accent);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

.lede {
  max-width: 610px;
  color: #596173;
  font-size: 18px;
  line-height: 1.7;
}

.hero-lede {
  max-width: 690px;
  color: #1f2432;
  font-size: 24px;
  line-height: 1.45;
}

.pill-original {
  min-height: 32px;
  border: 1px solid rgba(87, 80, 242, 0.18);
  background: #fff;
  color: #3d36c8;
  box-shadow: var(--shadow-tight);
}

.pill-original span {
  animation: none;
}

.platform-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 9px;
  color: #fff;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 1000;
  line-height: 1;
  transform: rotate(-3deg);
}

.hero-actions {
  gap: 10px;
  margin: 32px 0 22px;
}

.trust-row {
  gap: 14px;
  color: #697082;
}

.creator-proof-card {
  display: grid;
  gap: 14px;
  max-width: 550px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(15, 18, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px rgba(17, 19, 32, 0.08);
}

.creator-proof-card strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.creator-proof-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #202637;
  font-size: 17px;
  font-weight: 750;
}

.check {
  background: rgba(4, 122, 91, 0.1);
  color: var(--green);
}

.ai-flow {
  min-height: 620px;
}

.step-label span,
.output-head span {
  border-radius: 8px;
  background: #111525;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0;
}

.input-grid {
  gap: 12px;
}

.input-selfie {
  border: 1px solid rgba(87, 80, 242, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 19, 32, 0.1);
}

.ai-connector div,
.output-head span {
  background: linear-gradient(135deg, var(--brand-action), var(--brand-action-2));
  font-family: var(--ui);
  letter-spacing: 0;
}

.output-step {
  border-radius: 8px;
  border-color: rgba(15, 18, 32, 0.12);
  box-shadow: 0 28px 70px rgba(17, 19, 32, 0.13);
}

.output-grid {
  gap: 10px;
}

.output-grid img {
  border-radius: 8px;
}

.three-to-many {
  border-radius: 8px;
  background: #111525;
  transform: rotate(2deg);
}

.three-to-many span {
  font-family: var(--display);
}

.how-original,
.samples-original,
.final-original {
  padding: 86px 0;
}

.how-original {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 18, 32, 0.07);
}

.section-impact {
  max-width: none !important;
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-family: var(--ui) !important;
  font-size: clamp(46px, 7vw, 76px) !important;
  font-style: normal !important;
  font-weight: 1000 !important;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-subhead {
  max-width: 760px;
  margin: 18px auto 42px;
  color: #697082;
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: #6a7080;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.how-original h2,
.samples-original h2,
.final-original h2 {
  max-width: 760px;
  font-size: 48px;
  line-height: 1.08;
}

.steps-original {
  gap: 14px;
}

.steps-original article,
.card,
.plan,
.upload-card,
.prompt-card,
.train-status {
  border-radius: 8px;
  border-color: rgba(15, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(17, 19, 32, 0.06);
}

.steps-original article {
  min-height: 230px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(91, 95, 244, 0.98), rgba(156, 75, 232, 0.88));
  color: #fff;
  box-shadow: 0 26px 70px rgba(87, 80, 242, 0.18);
}

.steps-original b {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.steps-original article h3,
.steps-original article p {
  color: #fff;
}

.steps-original article p {
  opacity: 0.82;
}

.steps-original article:nth-child(2) {
  background:
    linear-gradient(145deg, #111525, #4535dd 80%);
}

.steps-original article:nth-child(3) {
  background:
    linear-gradient(145deg, #15b66e, #4b55df 78%, #7b3ff1);
}

.creator-demand-section {
  padding: 88px 0 30px;
}

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

.demand-card {
  display: grid;
  align-content: space-between;
  min-height: 660px;
  padding: 44px 28px 0;
  overflow: hidden;
  border: 1px solid rgba(15, 18, 32, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(17, 19, 32, 0.1);
  text-align: center;
}

.demand-card h2 {
  max-width: 360px;
  margin: 0 auto 20px;
  color: #05070d;
  font-family: var(--ui);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 1000;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.demand-card p {
  max-width: 360px;
  margin: 0 auto 34px;
  color: #777b86;
  font-size: 18px;
  line-height: 1.55;
}

.demand-visual {
  display: flex;
  justify-content: center;
  min-height: 330px;
  margin: 0 -28px;
  padding-top: 30px;
  border-radius: 34px 34px 0 0;
}

.demand-visual img {
  width: min(78%, 260px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.demand-visual-dark {
  background: #050505;
}

.demand-visual-purple {
  background: linear-gradient(135deg, #8a37ee, #4a32d8);
}

.demand-visual-blue {
  background: linear-gradient(135deg, #27bd75, #6577de 52%, #7137e8);
}

.realism-band {
  padding: 70px 0 92px;
}

.realism-band .container {
  display: grid;
  justify-items: center;
  padding: 70px 34px;
  border-radius: 8px;
  background: #05070d;
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 90px rgba(17, 19, 32, 0.2);
}

.realism-band h2 {
  max-width: 960px;
  margin: 0 0 18px;
  font-family: var(--ui);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
}

.realism-band p {
  max-width: 740px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.45;
}

.sample-head {
  align-items: end;
}

.sample-note {
  max-width: 280px;
  margin: 0;
  color: #697082;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.marquee-track figure {
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 19, 32, 0.1);
}

.marquee-track figcaption {
  border-radius: 8px;
  font-weight: 800;
}

.final-card {
  width: min(760px, calc(100% - 40px));
  border-radius: 8px;
  background:
    linear-gradient(135deg, #111525 0%, #1d2140 48%, #514af0 100%);
  box-shadow: 0 32px 86px rgba(17, 19, 32, 0.2);
}

.final-card h2 {
  max-width: none;
}

.pricing-hero {
  padding: 58px 0 22px;
}

.pricing-hero h1,
.page-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: var(--ui);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.02;
}

.pricing-hero .lede {
  max-width: 720px;
  font-size: 17px;
}

.billing-choice {
  width: min(520px, 100%);
  gap: 8px;
  margin-top: 30px;
  border-color: rgba(15, 18, 32, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(17, 19, 32, 0.1);
}

.billing-choice button {
  min-height: 66px;
  border-radius: 8px;
}

.billing-choice button span {
  font-size: 15px;
}

.billing-choice button.active {
  background: linear-gradient(135deg, var(--brand-action), var(--brand-action-2));
}

.yearly-nudge {
  color: var(--green);
  font-size: 14px;
}

.pricing-plans-section {
  padding-top: 32px;
}

.pricing-grid-compact {
  max-width: 900px;
  gap: 18px;
}

.plan {
  padding: 28px;
}

.plan h3 {
  font-size: 24px;
  font-weight: 850;
}

.plan.highlight {
  border-color: rgba(87, 80, 242, 0.42);
  box-shadow: 0 26px 70px rgba(87, 80, 242, 0.15);
}

.price {
  margin: 24px 0 8px;
  font-size: 52px;
}

.price small {
  font-size: 14px;
}

.form-note {
  margin: 0;
  color: #697082;
  font-size: 14px;
  line-height: 1.55;
}

.plan ul {
  gap: 13px;
  margin: 28px 0;
}

.plan li {
  color: #4f5668;
  line-height: 1.45;
}

.plan .btn {
  width: 100%;
}

.pricing-chat-note {
  max-width: 820px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 19, 32, 0.08);
}

.auth-page {
  background:
    linear-gradient(90deg, #fbfaf7 0%, #fbfaf7 52%, #f4f6ff 52%, #eef3ff 100%);
}

.auth-panel {
  width: min(470px, calc(100% - 48px));
}

.auth-panel h1,
.product-top h1 {
  font-size: 46px;
  letter-spacing: 0;
}

.auth-form {
  gap: 16px;
}

.auth-form input,
.upload-card input,
.prompt-card textarea {
  border-radius: 8px;
  border-color: rgba(15, 18, 32, 0.14);
  background: #fff;
}

.auth-art {
  background:
    linear-gradient(135deg, #f8f9ff 0%, #eef3ff 54%, #f6fbff 100%);
  color: var(--ink);
}

.auth-art h2 {
  font-size: 54px;
}

.auth-art h2 span {
  color: var(--brand-action);
  font-family: var(--ui);
  font-style: normal;
  font-weight: 800;
}

.auth-mini-grid img,
.app-gallery img,
.reference-preview img,
.result-card img {
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(47, 82, 160, 0.13);
}

.product-shell {
  background: #fbfaf7;
}

.product-side {
  border-right-color: rgba(15, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.product-side nav a {
  border-radius: 8px;
}

.product-side nav a.active,
.product-side nav a:hover {
  background: #f0edff;
}

.product-main {
  padding: 42px;
}

.product-top {
  margin-bottom: 30px;
}

.product-top h1 span {
  color: var(--accent);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

.product-hero-card {
  min-height: 230px;
}

.product-hero-card h2,
.train-status h2 {
  font-family: var(--ui);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.14;
}

.drop-zone {
  position: relative;
  border-radius: 8px;
  border-color: rgba(87, 80, 242, 0.28);
  background: #f7f5ff;
  cursor: pointer;
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.drop-zone strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 19, 32, 0.08);
}

.quick-scenes button {
  border-radius: 8px;
}

.result-card figcaption {
  color: #697082;
  font-weight: 650;
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.studio-workspace {
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1.14fr);
  align-items: start;
}

.studio-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-inner {
    min-height: 70px;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    padding-bottom: 12px;
  }

  .posiro-hero-grid {
    min-height: 0;
    gap: 38px;
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .platform-badge {
    width: 46px;
    height: 40px;
    border-radius: 14px;
    font-size: 18px;
  }

  .ai-flow {
    min-height: 0;
  }

  .how-original h2,
  .samples-original h2,
  .final-original h2,
  .pricing-hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .sample-note {
    max-width: none;
    text-align: left;
  }

  .pricing-grid-compact {
    max-width: 620px;
  }

  .creator-demand-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .demand-card {
    min-height: 560px;
  }

  .auth-page {
    background: #fbfaf7;
  }

  .auth-art {
    min-height: 430px;
  }

  .product-main {
    padding: 28px 20px;
  }

  .app-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 39px;
  }

  .lede,
  .pricing-hero .lede {
    font-size: 16px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-slogan {
    margin-top: 18px;
    font-size: 28px;
  }

  .platform-row {
    gap: 5px;
    margin: 6px 0 -2px;
  }

  .platform-badge {
    width: 39px;
    height: 34px;
    border-radius: 12px;
    font-size: 16px;
  }

  .creator-proof-card {
    padding: 18px;
  }

  .creator-proof-card span {
    font-size: 15px;
  }

  .trust-row {
    display: grid;
    gap: 10px;
  }

  .how-original,
  .samples-original,
  .final-original,
  .creator-demand-section,
  .realism-band {
    padding: 60px 0;
  }

  .section-impact {
    font-size: 40px !important;
  }

  .section-subhead {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .steps-original article {
    min-height: 190px;
    padding: 24px;
  }

  .demand-card {
    min-height: 520px;
    padding: 34px 18px 0;
    border-radius: 24px;
  }

  .demand-card h2 {
    font-size: 29px;
  }

  .demand-card p {
    font-size: 16px;
  }

  .demand-visual {
    min-height: 280px;
    margin-right: -18px;
    margin-left: -18px;
  }

  .realism-band .container {
    padding: 46px 20px;
  }

  .realism-band h2 {
    font-size: 36px;
  }

  .realism-band p {
    font-size: 18px;
  }

  .how-original h2,
  .samples-original h2,
  .final-original h2,
  .pricing-hero h1,
  .page-hero h1,
  .auth-panel h1,
  .product-top h1 {
    font-size: 36px;
  }

  .billing-choice {
    grid-template-columns: 1fr;
  }

  .marquee-wrap {
    margin-right: calc((100vw - 100%) / -2);
    margin-left: calc((100vw - 100%) / -2);
    padding: 2px 0;
    mask-image: linear-gradient(to right, transparent, #000 11%, #000 89%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 11%, #000 89%, transparent);
  }

  .marquee-track {
    --marquee-gap: 10px;
    padding-left: 16px;
    animation-duration: 42s;
  }

  .marquee-track figure {
    width: 150px;
  }

  .landing-v2 .output-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-v2 .output-grid img:nth-child(n + 7) {
    display: none;
  }

  .plan {
    padding: 22px;
  }

  .price {
    font-size: 46px;
  }

  .auth-panel {
    width: min(100% - 32px, 470px);
  }

  .auth-art {
    padding: 32px 20px;
  }

  .auth-art h2 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .marquee-wrap {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
