:root {
  --bg: #150d11;
  --bg-soft: #20141a;
  --ink: #fff6f2;
  --muted: #c9b5b1;
  --rose: #ff4d8d;
  --rose-2: #ff8eb0;
  --teal: #2fd6b6;
  --gold: #f4c36a;
  --line: rgba(255, 255, 255, 0.11);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(38, 22, 29, 0.92);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 77, 141, 0.13), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(47, 214, 182, 0.09), transparent 30%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}

.brand-lg {
  font-size: 1.2rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rose), #ffb054);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(255, 77, 141, 0.35);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 750;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), #ff7d9e);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 77, 141, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 77, 141, 0.45);
}

.btn-lg {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1.06rem;
}

.btn-block {
  width: 100%;
}

.text-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-block;
  color: var(--rose-2);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 72px 20px;
}

.section-head {
  max-width: 1120px;
  margin: 0 auto 30px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.1rem);
  font-weight: 600;
  line-height: 1.05;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

/* Age gate */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 77, 141, 0.2), transparent 46%),
    #120b0f;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-inner {
  width: 100%;
  max-width: 400px;
  display: grid;
  gap: 26px;
  justify-items: center;
}

.age-panel {
  width: 100%;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 77, 141, 0.5);
  border-radius: 8px;
  background: rgba(255, 77, 141, 0.14);
  color: var(--rose-2);
  font-size: 1.3rem;
  font-weight: 900;
}

.age-panel h1 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1.1;
}

.age-panel p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.age-panel .btn {
  margin-bottom: 14px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-create-gf.avif");
  background-size: cover;
  background-position: center 28%;
  opacity: 0.5;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 13, 17, 0.72) 0%, rgba(21, 13, 17, 0.62) 34%, rgba(21, 13, 17, 0.9) 74%, var(--bg) 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(18px, 4vw, 46px);
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 6, 8, 0.5);
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(47, 214, 182, 0.5);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 214, 182, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(47, 214, 182, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 214, 182, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px 44px;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 11vw, 4.7rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero-copy h1 em {
  color: var(--rose-2);
  font-style: normal;
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.chat-teaser {
  width: 100%;
  max-width: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 12, 16, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.chat-teaser-head,
.chat-window-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.chat-teaser-name {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.chat-teaser-name strong {
  font-size: 0.96rem;
}

.chat-teaser-name span {
  color: var(--muted);
  font-size: 0.76rem;
}

.typing-dots {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 18px;
}

.typing-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 1.2s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.18s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes blink {
  0%,
  70%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-teaser-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.bubble {
  max-width: 86%;
  margin: 0;
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bubble-them {
  justify-self: start;
  border-bottom-left-radius: 2px;
}

.typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
}

.typing-bubble span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.2s ease-in-out infinite;
}

.typing-bubble span:nth-child(2) {
  animation-delay: 0.18s;
}

.typing-bubble span:nth-child(3) {
  animation-delay: 0.36s;
}

.hero-peek {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px 26px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.peek-avatars {
  display: flex;
  align-items: center;
}

.peek-avatars i {
  width: 30px;
  height: 30px;
  display: block;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  margin-left: -8px;
}

.peek-avatars i:first-child {
  margin-left: 0;
}

/* Quiz */

.quiz-section {
  padding-top: 40px;
}

.quiz-shell {
  max-width: 840px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.quiz-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

#quizChoiceLabel {
  color: var(--gold);
  text-align: right;
}

.progress {
  height: 6px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.progress-fill {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.35s ease;
}

.quiz-body h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.08;
}

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

.quiz-option {
  min-height: 96px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  text-align: left;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.quiz-option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 77, 141, 0.5);
}

.quiz-option.is-selected {
  border-color: var(--rose);
  background: rgba(255, 77, 141, 0.14);
}

.option-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
}

.option-icon svg {
  width: 17px;
  height: 17px;
}

.option-label {
  font-size: 0.98rem;
  line-height: 1.2;
}

.option-proof {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.quiz-back {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.quiz-back.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.quiz-complete {
  padding: 20px 0 6px;
  color: var(--muted);
  line-height: 1.6;
}

.quiz-complete strong {
  color: var(--gold);
}

/* Chat simulation */

.chat-section {
  padding-top: 24px;
}

.chat-window {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 12, 16, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chat-window-body {
  min-height: 250px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-window-body .bubble {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.chat-window-body .bubble.is-in {
  opacity: 1;
  transform: translateY(0);
}

.chat-window-body .bubble-me {
  justify-self: end;
  align-self: flex-end;
  background: linear-gradient(135deg, var(--rose), #ff7d9e);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.chat-actions {
  max-width: 480px;
  margin: 20px auto 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.chat-actions .btn {
  width: 100%;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.chat-actions .btn.is-ready {
  opacity: 1;
  pointer-events: auto;
}

/* Character wall */

.wall-section {
  padding-top: 20px;
}

.character-wall {
  display: flex;
  gap: 14px;
  padding: 8px 4px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.character-wall::-webkit-scrollbar {
  display: none;
}

.character-card {
  position: relative;
  flex: 0 0 158px;
  width: 158px;
  height: 238px;
  scroll-snap-align: start;
  display: flex;
  align-items: end;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.character-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.character-card:hover img {
  transform: scale(1.04);
}

.character-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 8, 0.08) 34%, rgba(10, 6, 8, 0.92) 100%);
}

.character-info {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 12px;
}

.character-info strong {
  display: block;
  font-size: 1.02rem;
}

.character-info span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.character-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 6, 8, 0.55);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(6px);
}

.character-online {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
}

.character-online i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* Create your own */

.create-section {
  padding-top: 12px;
}

.create-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 195, 106, 0.1), transparent 42%),
    var(--panel);
  display: grid;
  gap: 26px;
}

.create-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.05;
}

.create-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.create-controls {
  display: grid;
  gap: 18px;
}

.control-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.control-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.control-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.control-chip.is-active {
  border-color: var(--teal);
  background: rgba(47, 214, 182, 0.14);
  color: #b9fff0;
}

.create-preview {
  padding: 18px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.create-preview p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
}

/* Features */

.features-section {
  padding-top: 24px;
}

.features {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.feature-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.feature-head {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 77, 141, 0.12);
  color: var(--rose-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-title {
  font-size: 1.02rem;
  font-weight: 750;
}

.feature-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.feature-row.is-open .feature-chevron {
  transform: rotate(225deg);
}

.feature-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.feature-row.is-open .feature-panel {
  grid-template-rows: 1fr;
}

.feature-panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 18px;
}

.feature-row.is-open .feature-panel-inner {
  padding: 0 18px 20px;
}

.feature-panel-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-media {
  width: 100%;
  max-width: 560px;
  margin-bottom: 14px;
  border-radius: 8px;
}

/* Proof strip */

.proof-section {
  padding: 34px 20px;
}

.proof-strip {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.proof-item {
  min-height: 104px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 5px;
  padding: 18px 10px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--teal);
}

.proof-item span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

/* Offer */

.offer-section {
  padding-top: 12px;
}

.offer-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 38px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 77, 141, 0.22), transparent 55%),
    var(--panel);
  text-align: center;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(244, 195, 106, 0.14);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-panel h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 6vw, 2.7rem);
  font-weight: 600;
  line-height: 1.08;
}

.offer-list {
  max-width: 420px;
  margin: 0 auto 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  text-align: left;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
}

.offer-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(47, 214, 182, 0.16);
  border: 1px solid rgba(47, 214, 182, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232fd6b6' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Footer */

.footer {
  padding: 42px 20px 120px;
  border-top: 1px solid var(--line);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

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

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Sticky CTA */

.sticky-cta {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(17, 10, 14, 0.94);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-copy {
  display: grid;
  gap: 2px;
}

.sticky-copy strong {
  font-size: 0.92rem;
}

.sticky-copy span {
  color: var(--muted);
  font-size: 0.76rem;
}

.sticky-cta .btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.94rem;
  white-space: nowrap;
}

/* Desktop */

@media (min-width: 720px) {
  .section {
    padding: 96px 32px;
  }

  .hero-content {
    grid-template-columns: 1.15fr 0.85fr;
    padding-top: 70px;
  }

  .chat-teaser {
    justify-self: end;
  }

  .quiz-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .create-panel {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 44px;
  }

  .create-copy,
  .create-controls {
    grid-column: 1;
  }

  .create-preview {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .create-panel .btn-block {
    grid-column: 1;
  }

  .character-card {
    flex-basis: 172px;
    width: 172px;
    height: 256px;
  }
}

@media (min-width: 1024px) {
  .offer-panel {
    padding: 52px 40px;
  }

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