:root {
  --bg: #f2e8f4;
  --surface: rgba(255, 250, 255, 0.88);
  --surface-strong: rgba(255, 252, 255, 0.96);
  --ink: #27172f;
  --muted: #735f79;
  --brand: #7d3b8e;
  --brand-deep: #5a2868;
  --brand-soft: #d4a0d5;
  --accent: #36c8b2;
  --accent-deep: #158a7d;
  --gold: #ffc857;
  --line: rgba(72, 35, 83, 0.12);
  --shadow: 0 24px 70px rgba(74, 39, 86, 0.14);
  --shadow-strong: 0 34px 90px rgba(58, 24, 72, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(212, 160, 213, 0.32), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(54, 200, 178, 0.18), transparent 22%),
    radial-gradient(circle at 78% 82%, rgba(255, 200, 87, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf4ff 0%, var(--bg) 100%);
}

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

button,
summary {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 52px;
}

.hero,
.surface,
.cta-strip {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  min-height: calc(100vh - 56px);
  padding: 24px 36px 36px;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 239, 255, 0.82)),
    radial-gradient(circle at 75% 22%, rgba(125, 59, 142, 0.16), transparent 28%);
}

.topbar,
.brand,
.hero-actions,
.hero-proof,
.phone-head,
.credit-row,
.cta-strip,
.footer {
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand img,
.phone-head img {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(90, 40, 104, 0.16);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(125, 59, 142, 0.1);
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
  align-items: center;
  gap: 38px;
  padding-top: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(125, 59, 142, 0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-copy h1,
.section-head h2,
.cta-strip h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 42rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #a84bad 60%, #e86fc3);
  box-shadow: 0 16px 34px rgba(125, 59, 142, 0.3);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.hero-note {
  margin: 14px 0 0;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 59, 142, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.phone-stage {
  display: grid;
  place-items: center;
  min-width: 0;
}

.phone {
  width: min(100%, 390px);
  min-height: 650px;
  padding: 22px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.24), transparent 24%),
    radial-gradient(circle at 78% 88%, rgba(54, 200, 178, 0.34), transparent 26%),
    linear-gradient(180deg, #4d235a 0%, #79388c 50%, #d090cf 100%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.phone-real-demo {
  min-height: 0;
  padding: 0;
  aspect-ratio: 591 / 1280;
  background: #5a2868;
  display: block;
}

.phone-real-demo::after {
  display: none;
}

.demo-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.phone::after {
  content: "";
  position: absolute;
  inset: auto -70px -64px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.phone-head {
  gap: 12px;
  position: relative;
  z-index: 1;
}

.phone-head img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.phone-head strong,
.phone-head span {
  display: block;
}

.phone-head span,
.phone-message span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.trend-preview {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.portrait-card {
  min-height: 265px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.88) 0 8%, transparent 9%),
    radial-gradient(circle at 43% 31%, rgba(39, 23, 47, 0.5) 0 3%, transparent 4%),
    radial-gradient(circle at 57% 31%, rgba(39, 23, 47, 0.5) 0 3%, transparent 4%),
    radial-gradient(circle at 50% 45%, rgba(255, 200, 87, 0.32), transparent 20%),
    linear-gradient(135deg, rgba(54, 200, 178, 0.9), rgba(232, 111, 195, 0.92));
  box-shadow: inset 0 -40px 70px rgba(39, 23, 47, 0.2);
  position: relative;
  overflow: hidden;
}

.portrait-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  width: 118px;
  height: 154px;
  transform: translateX(-50%);
  border-radius: 54px 54px 40px 40px;
  background: linear-gradient(180deg, #ffe3d6, #f7bfae);
  box-shadow: 0 0 0 16px rgba(39, 23, 47, 0.2);
}

.portrait-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 240px;
  height: 118px;
  transform: translateX(-50%);
  border-radius: 80px 80px 0 0;
  background: rgba(255, 255, 255, 0.28);
}

.spark {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.spark-a {
  left: 24px;
  top: 26px;
}

.spark-b {
  right: 28px;
  top: 112px;
}

.trend-chip,
.phone-message,
.phone-button,
.prompt-card,
.credit-row {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.trend-chip {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 16px;
  font-weight: 800;
}

.trend-chip.active {
  background: rgba(255, 255, 255, 0.24);
}

.phone-message {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.phone-button {
  min-height: 50px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  border-radius: 18px;
  background: #fff;
  color: var(--brand-deep);
  font-weight: 900;
  position: relative;
  z-index: 1;
}

main {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.surface {
  padding: 34px;
}

.accent {
  background:
    radial-gradient(circle at top right, rgba(54, 200, 178, 0.16), transparent 30%),
    var(--surface-strong);
}

.section-head {
  max-width: 56rem;
}

.section-head h2 {
  font-size: clamp(28px, 3.8vw, 48px);
}

.section-head p,
.card p,
.step p,
.feature-block p,
.faq-list p,
.cta-strip p,
.footer p,
.panel-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

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

.card,
.step,
.feature-block,
.seo-card,
.article-cta-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.step:hover,
.feature-block:hover,
.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(74, 39, 86, 0.12);
  border-color: rgba(125, 59, 142, 0.18);
}

.card h3,
.step h3,
.feature-block h3,
.seo-card h3,
.article-copy h2,
.article-cta-card h3,
.panel-copy h3,
.faq-list summary {
  margin: 0 0 10px;
  font-size: 20px;
}

.seo-card {
  min-height: 196px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.seo-card-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-card p,
.article-copy p,
.article-list,
.article-cta-card p {
  color: var(--muted);
  line-height: 1.65;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--brand-deep);
}

.article-hero {
  min-height: calc(78vh - 56px);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  align-items: center;
  gap: 34px;
  padding-top: 24px;
}

.article-visual {
  min-height: 380px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(180deg, #4d235a, #873d99 56%, #d090cf);
  box-shadow: var(--shadow-strong);
}

.article-visual img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: auto;
}

.article-visual strong {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.92;
}

.article-visual span {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
}

.article-copy {
  display: grid;
  gap: 14px;
}

.article-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.article-side {
  align-self: start;
  position: sticky;
  top: 18px;
}

.article-cta-card {
  display: grid;
  gap: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.showcase-tabs {
  display: grid;
  gap: 12px;
}

.showcase-tab {
  min-height: 92px;
  display: grid;
  gap: 6px;
  justify-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  text-align: left;
}

.showcase-tab small {
  color: var(--muted);
  line-height: 1.35;
}

.showcase-tab.active {
  border-color: rgba(125, 59, 142, 0.28);
  background: rgba(125, 59, 142, 0.1);
}

.showcase-stage {
  min-height: 400px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #4d235a, #8b3f9c 55%, #d090cf);
}

.showcase-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(250px, 1fr);
  gap: 20px;
  align-items: center;
  padding: 28px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.showcase-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.panel-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.panel-copy h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.panel-visual {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.visual-trends span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.prompt-card {
  padding: 22px;
  border-radius: 22px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.visual-credits {
  gap: 12px;
}

.credit-row {
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 18px;
  font-weight: 800;
}

.accent-row {
  background: rgba(54, 200, 178, 0.22);
}

.trust {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 200, 87, 0.2), transparent 24%),
    var(--surface);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.cta-strip {
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background:
    radial-gradient(circle at 86% 20%, rgba(54, 200, 178, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 252, 255, 0.94), rgba(246, 230, 250, 0.9));
}

.cta-strip > div {
  max-width: 760px;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero {
    min-height: 0;
    padding: 22px;
  }

  .hero-grid,
  .showcase,
  .showcase-panel,
  .grid.two,
  .grid.three,
  .steps {
    grid-template-columns: 1fr;
  }

  .phone {
    min-height: 590px;
  }

  .phone-real-demo {
    min-height: 0;
  }

  .showcase-stage {
    min-height: 620px;
  }

  .showcase-panel {
    align-content: start;
  }

  .cta-strip,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .surface,
  .cta-strip {
    border-radius: 22px;
  }

  .surface,
  .cta-strip {
    padding: 22px;
  }

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

  .hero-lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .phone {
    min-height: 560px;
    padding: 18px;
    border-radius: 28px;
  }

  .phone-real-demo {
    min-height: 0;
    padding: 0;
  }

  .portrait-card {
    min-height: 220px;
  }

  .showcase-stage {
    min-height: 690px;
  }

  .panel-visual {
    min-height: 260px;
  }
}
