﻿:root {
  --bg: #10111d;
  --bg-deep: #090b14;
  --panel: #181a2a;
  --panel-soft: #202338;
  --text: #fff;
  --muted: #9ba0b6;
  --muted-2: #c9ccda;
  --line: rgba(255, 255, 255, 0.09);
  --ember: #f6c65b;
  --gold: #ffd978;
  --gold-deep: #d89a28;
  --premium: linear-gradient(180deg, #ffe596 0%, #f6c65b 54%, #d89a28 100%);
  --primary: linear-gradient(180deg, #ffe596 0%, #f6c65b 58%, #d89a28 100%);
  --radius: 18px;
  --content: 1212px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  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(255, 207, 90, 0.07), transparent 420px),
    linear-gradient(180deg, #151725 0%, #10111d 42%, #090b14 100%);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
  padding: 10px 32px;
  background: rgba(16, 17, 29, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.site-logo {
  width: 224px;
  height: auto;
}

.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: #10111d;
  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(255, 207, 90, 0.18), transparent 32rem),
    radial-gradient(ellipse at 88% 18%, rgba(216, 154, 40, 0.16), transparent 28rem),
    linear-gradient(180deg, #101010 0%, #111321 58%, #10111d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(255, 207, 90, 0.22), transparent 22rem),
    radial-gradient(ellipse at 30% 46%, rgba(246, 198, 91, 0.08), transparent 30rem),
    radial-gradient(ellipse at 76% 22%, rgba(216, 154, 40, 0.16), transparent 26rem);
  filter: blur(22px);
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.96) 0%, rgba(15, 15, 15, 0.52) 42%, rgba(15, 15, 15, 0.24) 78%, #10111d 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.1), #10111d 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: center;
  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(255, 207, 90, 0.12);
  box-shadow: 0 16px 48px rgba(255, 207, 90, 0.08);
  color: #fff3cc;
  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, 207, 90, 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: 700;
}

.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: #10111d;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(255, 207, 90, 0.12);
  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-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.hero-preview-strip div {
  min-height: 48px;
  padding: 9px 10px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 207, 90, 0.13), 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: 12px;
  width: min(100%, 470px);
  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, 207, 90, 0.22), rgba(216, 154, 40, 0.08), transparent 62%);
  filter: blur(26px);
}

.character-card-preview {
  position: relative;
  overflow: hidden;
  min-height: 405px;
  border-radius: 26px;
  background: #181a2a;
  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: 405px;
  object-fit: cover;
  object-position: center 18%;
}

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

.character-status {
  top: 18px;
  right: 18px;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 207, 90, 0.88);
  color: #10111d;
  font-size: 13px;
  font-weight: 900;
}

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

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

.character-panel strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.character-panel span {
  color: var(--muted-2);
  font-size: 11px;
  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;
}

.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: 700;
}

.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: 700;
}

.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: 700;
  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: 390px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 207, 90, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #181a2a;
  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, 207, 90, 0.45), rgba(216, 154, 40, 0.18), 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, 207, 90, 0.13), transparent 65%);
}

.benefit-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 207, 90, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 207, 90, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032)),
    #202338;
}

.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: #10111d;
  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(255, 207, 90, 0.08);
  color: #fff3cc;
  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: 700;
  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, 207, 90, 0.35), rgba(216, 154, 40, 0.22), 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, 207, 90, 0.12), transparent 5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #181a2a;
  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, 207, 90, 0.17), transparent 5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    #202338;
}

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

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

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

.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: #181a2a;
}

.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: 700;
  line-height: 1.35;
}

.character-copy em {
  width: max-content;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #10111d;
  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(255, 207, 90, 0.11);
  color: #fff3cc;
  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, 207, 90, 0.11), transparent 18rem),
    radial-gradient(circle at 88% 10%, rgba(216, 154, 40, 0.09), 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, 207, 90, 0.42), 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, 207, 90, 0.08), 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: 700;
  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, 207, 90, 0.08), rgba(216, 154, 40, 0.06)),
    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: #101010;
  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: 700;
}

.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: #090b14;
}

.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: 700;
}

.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: #10111d;
  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 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    min-height: 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 {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 62px;
  }

  .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: 410px;
  }

  .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: 176px;
  }

  .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 {
    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;
  }
}

