﻿:root {
  --bg: #090000;
  --bg-deep: #000;
  --panel: #21070a;
  --panel-soft: #350b10;
  --text: #fff;
  --muted: #c9aeb1;
  --muted-2: #ead6d8;
  --line: rgba(255, 92, 99, 0.17);
  --ember: #ff3138;
  --gold: #ff4b52;
  --gold-deep: #8f0711;
  --premium: linear-gradient(180deg, #ff535a 0%, #cb111e 54%, #71000a 100%);
  --primary: linear-gradient(180deg, #ff535a 0%, #c8101c 58%, #76000a 100%);
  --radius: 18px;
  --content: 1212px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  padding-top: 68px;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 14, 28, 0.17), transparent 420px),
    linear-gradient(180deg, #190204 0%, #090000 42%, #000 100%);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
  padding: 10px 32px;
  background: rgba(8, 0, 1, 0.94);
  border-bottom: 1px solid rgba(255, 59, 67, 0.2);
  backdrop-filter: blur(18px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.section-narrow,
.section-wide {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 28px max(24px, calc((100vw - var(--content)) / 2)) 48px;
  background:
    radial-gradient(ellipse at 68% 44%, rgba(222, 22, 34, 0.18), transparent 32rem),
    radial-gradient(ellipse at 88% 18%, rgba(112, 0, 8, 0.16), transparent 28rem),
    linear-gradient(180deg, #100001 0%, #190204 58%, #080000 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(255, 37, 46, 0.18), transparent 22rem),
    radial-gradient(ellipse at 30% 46%, rgba(125, 0, 8, 0.13), transparent 30rem),
    radial-gradient(ellipse at 76% 22%, rgba(255, 83, 90, 0.10), transparent 26rem);
  filter: blur(22px);
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 0, 0, 0.97) 0%, rgba(18, 0, 2, 0.65) 42%, rgba(62, 0, 6, 0.27) 78%, #090000 100%),
    linear-gradient(180deg, rgba(9, 0, 0, 0.08), #090000 98%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  max-width: var(--content);
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.58fr);
  align-items: start;
  gap: clamp(28px, 4.6vw, 56px);
}

.hero-copy {
  display: grid;
  justify-items: start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(182, 12, 24, 0.24);
  border: 1px solid rgba(255, 67, 75, 0.32);
  box-shadow: 0 16px 48px rgba(135, 0, 10, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 18px rgba(255, 49, 56, 0.85);
}

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

h1,
h2,
.section-title {
  font-family: "Arial Narrow", "Roboto Condensed", "Oswald", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transform: scaleX(0.88);
  transform-origin: center;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(38px, 3.35vw, 54px);
  line-height: 1.02;
  transform-origin: left center;
}

.hero p {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

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

.hero-note {
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(187, 0, 13, 0.24);
  transition: transform 180ms ease, filter 180ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.primary-cta svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.hero-service-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
}

.hero-preview-strip {
  display: grid;
  width: 100%;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.hero-preview-strip div {
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 49, 56, 0.18), transparent 4.5rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 12, 0.62);
  text-align: left;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-character {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(100%, 376px);
  justify-self: end;
}

.hero-character::before {
  content: "";
  position: absolute;
  inset: 8% -10% 18%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 49, 56, 0.24), rgba(143, 7, 17, 0.12), transparent 62%);
  filter: blur(26px);
}

.character-card-preview {
  position: relative;
  overflow: hidden;
  min-height: 324px;
  border-radius: 21px;
  background: #21070a;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.42);
}

.character-card-preview::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.character-card-preview img {
  width: 100%;
  height: 100%;
  min-height: 324px;
  object-fit: cover;
  object-position: center 18%;
}

.character-status,
.character-panel {
  position: absolute;
  z-index: 1;
}

.character-status {
  top: 14px;
  right: 14px;
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(232, 29, 39, 0.92);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.character-panel {
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
}

.character-panel strong,
.character-panel span {
  display: block;
}

.character-panel strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.character-panel span {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
}

.hero-preview-strip strong,
.hero-preview-strip small {
  display: block;
}

.hero-preview-strip strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.hero-preview-strip small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.image-block {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  align-items: center;
  gap: 50px;
  padding: 0 0 68px;
}

.ai-cast {
  padding: 16px 0 76px;
}

.ai-cast-head {
  width: 100%;
  max-width: none;
  margin-bottom: 26px;
  text-align: center;
}

.ai-cast-kicker {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-cast-head h2 {
  width: 100%;
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.ai-cast-head > p:not(.ai-cast-kicker) {
  width: 100%;
  max-width: none;
  font-weight: 400;
}

.ai-cast-head > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 400;
}

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

.ai-cast-card {
  position: relative;
  display: block;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.ai-cast-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.ai-cast-card::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.94));
}

.ai-cast-card > div {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.ai-cast-card span {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}

.ai-cast-card h3 {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ai-cast-card p {
  margin: 10px 0 12px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.ai-cast-card em {
  display: block;
  width: max-content;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.ai-cast-card small {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.ai-cast-card small b {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(214, 18, 31, 0.2);
  color: #ffd8da;
  font-size: 10px;
  font-weight: 900;
}

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

.image-block:not(.image-block-flip) {
  grid-template-columns: minmax(0, 1fr) 500px;
}

.image-block-flip .image-block-media {
  order: -1;
}

.image-block-media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 0;
}

.portrait-media {
  width: min(100%, 360px);
  justify-self: center;
}

.portrait-media img {
  aspect-ratio: 4 / 5;
  max-height: 430px;
  border-radius: 24px;
  object-position: center top;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.image-block-copy {
  max-width: 620px;
}

.image-block-copy h2,
.seo-section h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 2.55vw, 42px);
  line-height: 1.04;
  transform-origin: left center;
}

.image-block-copy p,
.seo-section p,
.section-description {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}

.image-block-copy p:last-child,
.seo-section p:last-of-type {
  margin-bottom: 0;
}

.feature-section {
  padding: 12px 0 66px;
}

.section-title {
  margin-bottom: 24px;
  font-size: clamp(31px, 2.55vw, 42px);
  line-height: 1;
  transform-origin: left center;
}

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

.feature-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  min-height: 230px;
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-card > div {
  padding: 24px;
}

.feature-card h3,
.benefit-grid h3,
.steps-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.1;
}

.feature-card p,
.benefit-grid p,
.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.feature-card img {
  align-self: end;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits {
  display: grid;
  justify-items: center;
  padding: 18px 0 76px;
}

.benefits-head {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 32px;
  text-align: center;
}

.benefits-kicker {
  margin: 0 0 10px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-head .section-title {
  margin-bottom: 16px;
  transform-origin: center;
}

.benefits-head > p:not(.benefits-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.benefits-head > p + p {
  margin-top: 12px;
}

.benefit-grid {
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 49, 56, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #21070a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 75, 82, 0.48), rgba(143, 7, 17, 0.22), transparent 52%);
  opacity: 0.55;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 49, 56, 0.16), transparent 65%);
}

.benefit-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 71, 79, 0.32);
  background:
    linear-gradient(135deg, rgba(210, 15, 28, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032)),
    #31080d;
}

.benefit-grid span,
.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.benefit-grid article h3,
.benefit-grid article p,
.benefit-tags,
.steps-grid article span,
.steps-grid article h3,
.steps-grid article p {
  position: relative;
  z-index: 1;
}

.benefit-grid article h3 {
  max-width: 420px;
}

.benefit-grid article p {
  max-width: 470px;
  margin-bottom: 12px;
  line-height: 1.55;
}

.benefit-grid article p:last-of-type {
  margin-bottom: 0;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.benefit-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(214, 18, 31, 0.16);
  color: #ffd8da;
  font-size: 12px;
  font-weight: 800;
}

.steps {
  display: grid;
  justify-items: center;
  padding: 18px 0 82px;
}

.steps-head {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin-bottom: 34px;
  text-align: center;
}

.steps-kicker,
.seo-kicker {
  margin: 0 0 10px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-head .section-title {
  margin-bottom: 16px;
  transform-origin: center;
}

.steps-head p:not(.steps-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.steps-head p + p {
  margin-top: 12px;
}

.steps-grid {
  position: relative;
  display: grid;
  width: min(100%, 1110px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 47px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 75, 82, 0.4), rgba(143, 7, 17, 0.28), transparent);
  pointer-events: none;
}

.steps-grid article {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 49, 56, 0.16), transparent 5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #21070a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.steps-grid article:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 49, 56, 0.22), transparent 5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    #350b10;
}

.steps-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 7, 17, 0.16), transparent 68%);
}

.showcase {
  padding: 6px 0 70px;
}

.section-description {
  max-width: none;
  margin-bottom: 14px;
}

.showcase > .section-title,
.showcase > .section-description {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
  transform-origin: center;
}

.showcase .section-description:last-of-type {
  margin-bottom: 24px;
}

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

.character-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius);
  background: #21070a;
}

.character-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.character-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.character-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.character-copy span,
.character-copy strong,
.character-copy p,
.character-copy em,
.character-copy small {
  display: block;
}

.character-copy span {
  font-size: 20px;
  font-weight: 900;
}

.character-copy strong {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.character-copy p {
  margin: 10px 0 12px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.character-copy em {
  width: max-content;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.character-copy small {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.character-copy small b {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(214, 18, 31, 0.17);
  color: #ffd8da;
  font-size: 10px;
  font-weight: 900;
}

.seo-section {
  display: grid;
  justify-items: center;
  padding: 18px 0 88px;
}

.seo-shell {
  position: relative;
  overflow: hidden;
  width: min(100%, 1120px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 49, 56, 0.14), transparent 18rem),
    radial-gradient(circle at 88% 10%, rgba(143, 7, 17, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    #141414;
}

.seo-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 75, 82, 0.46), transparent);
}

.seo-shell > .seo-kicker,
.seo-shell > h2 {
  text-align: center;
}

.seo-section h2 {
  max-width: 920px;
  margin-inline: auto;
}

.seo-intro {
  max-width: 930px;
  margin: 0 auto 30px;
  text-align: center;
}

.seo-intro p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.seo-grid article {
  padding: 22px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 49, 56, 0.12), transparent 9rem),
    rgba(255, 255, 255, 0.035);
}

.seo-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.seo-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ember);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-grid p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
}

.seo-grid p:last-child {
  margin-bottom: 0;
}

.seo-trust {
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 49, 56, 0.11), rgba(143, 7, 17, 0.09)),
    rgba(255, 255, 255, 0.035);
}

.seo-trust h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.seo-trust p {
  max-width: 980px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.65;
}

.seo-section .primary-cta {
  margin-top: 26px;
}

.faq {
  padding: 8px 0 78px;
}

.accordion {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.accordion-item {
  overflow: hidden;
  border-radius: 20px;
  background: var(--panel);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: 900 20px/1.2 Arial, Helvetica, sans-serif;
  text-align: left;
}

.accordion-item button::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #100001;
  color: var(--ember);
  font-size: 24px;
  flex: 0 0 auto;
}

.accordion-item-open button::after {
  content: "-";
}

.accordion-item > div {
  display: none;
  padding: 0 24px 24px;
}

.accordion-item-open > div {
  display: block;
}

.accordion-item p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  align-items: center;
  gap: 48px;
  padding: 44px max(24px, calc((100vw - var(--content)) / 2)) 52px;
  border-top: 1px solid var(--line);
  background: #090000;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-left p,
.footer-left span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.footer-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

html[data-viewport="wide"] h1 {
  font-size: 52px;
}

html[data-viewport="wide"] .hero {
  padding-top: 26px;
}

html[data-viewport="wide"] .image-block-copy h2,
html[data-viewport="wide"] .seo-section h2,
html[data-viewport="wide"] .section-title {
  font-size: 40px;
}

@media (max-width: 1180px) {
  .topbar {
    padding-inline: 20px;
  }

  .benefit-grid,
  .steps-grid,
  .character-grid,
  .ai-cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    min-height: 64px;
  }

  body {
    padding-top: 64px;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  h1 {
    transform-origin: center;
  }

  h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-service-row {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    text-align: left;
  }

  .hero-character {
    width: min(100%, 410px);
    justify-self: center;
    margin-inline: auto;
  }

  .character-card-preview,
  .character-card-preview img {
    min-height: 430px;
  }

  .image-block,
  .image-block-flip,
  .image-block:not(.image-block-flip) {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 62px;
  }

  .image-block-copy {
    width: 100%;
    min-width: 0;
    justify-self: center;
    text-align: center;
  }

  .image-block-copy h2 {
    transform-origin: center;
  }

  .image-block-flip .image-block-media {
    order: 0;
  }

  .image-block-media {
    order: -1;
  }

  .feature-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    max-height: 260px;
  }

  .hero-preview-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .steps-grid::before {
    display: none;
  }

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

  .benefits-head {
    margin-bottom: 24px;
  }

  .benefit-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .section-narrow,
  .section-wide {
    width: min(100% - 28px, var(--content));
  }

  .topbar {
    padding-inline: 14px;
  }

  .site-logo {
    width: 52px;
    height: 52px;
  }

  .top-cta {
    height: 38px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .hero p,
  .image-block-copy p,
  .seo-section p,
  .section-description {
    font-size: 17px;
  }

  .primary-cta {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .hero {
    width: 100%;
    padding-inline: 14px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .hero-service-row {
    gap: 8px;
  }

  .hero-service-row span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero-preview-strip {
    margin-top: 8px;
  }

  .hero-note {
    max-width: none;
    text-align: center;
  }

  .character-card-preview,
  .character-card-preview img {
    min-height: 380px;
  }

  .character-card-preview {
    border-radius: 24px;
  }

  .hero-preview-strip div {
    min-height: 50px;
    padding: 8px;
  }

  .hero-preview-strip strong {
    font-size: 11px;
  }

  .hero-preview-strip small {
    font-size: 9px;
  }

  .benefit-grid,
  .steps-grid,
  .character-grid,
  .ai-cast-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: auto;
  }

  .seo-shell {
    padding: 22px;
    border-radius: 22px;
  }

  .benefit-grid article {
    padding: 22px;
  }

  .footer {
    padding-inline: 18px;
  }
}

/* AI MILF red / burgundy / black finish */
.hero-preview-strip div,
.feature-card,
.benefit-grid article,
.steps-grid article,
.seo-shell,
.seo-grid article,
.seo-trust,
.accordion-item,
.final-cta {
  border-color: rgba(255, 62, 70, 0.18);
  background-color: #160204;
}

.hero-preview-strip div {
  background:
    radial-gradient(circle at 12% 15%, rgba(211, 19, 31, 0.22), transparent 4.5rem),
    linear-gradient(135deg, rgba(92, 3, 10, 0.82), rgba(15, 0, 1, 0.84));
}

.feature-card,
.benefit-grid article,
.steps-grid article,
.seo-grid article,
.seo-trust {
  background:
    radial-gradient(circle at 14% 8%, rgba(202, 15, 27, 0.14), transparent 10rem),
    linear-gradient(180deg, rgba(50, 5, 10, 0.98), rgba(15, 0, 1, 0.98));
}

.ai-cast-card,
.character-card,
.image-block-media,
.character-card-preview {
  border-color: rgba(255, 60, 68, 0.28);
  box-shadow: 0 24px 70px rgba(54, 0, 5, 0.46);
}

.image-block-copy h2,
.section-title,
.seo-section h2,
.final-cta h2 {
  text-shadow: 0 12px 36px rgba(131, 0, 10, 0.32);
}

.steps-cta {
  margin-top: 30px;
  text-align: center;
}

.final-cta {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto 76px;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(255, 62, 70, 0.26);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 18%, rgba(227, 24, 36, 0.26), transparent 18rem),
    linear-gradient(135deg, #3c060c, #100001 68%);
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin: 0 auto 22px;
  font-size: clamp(36px, 5vw, 66px);
}

.final-cta p {
  max-width: 820px;
  margin: 0 auto 14px;
  color: var(--muted-2);
  font-weight: 400;
}

.final-cta .primary-cta { margin-top: 18px; }

@media (max-width: 560px) {
  .final-cta { width: min(100% - 28px, var(--content)); padding: 28px 20px; }
  .topbar { min-height: 68px; }
  .logo-link { min-width: 52px; }
}

