/* =========================================================
   SolarPoolPower.com
   Manga solar pool superhero site
   Clean energy. Clear water. Superhero afternoons.
   ========================================================= */

:root {
  --sun: #ffbf19;
  --sun-hot: #ff7a18;
  --solar-blue: #0878d8;
  --pool-blue: #00b7ff;
  --deep-blue: #071735;
  --night-blue: #020815;
  --ink: #111827;
  --paper: #fff8e8;
  --cream: #fff3c7;
  --white: #ffffff;
  --gray: #5b6474;
  --purple: #6d28d9;
  --danger: #ef233c;
  --green: #1fa971;

  --shadow: 0 24px 70px rgba(2, 8, 21, 0.28);
  --soft-shadow: 0 12px 34px rgba(7, 23, 53, 0.18);
  --comic-border: 4px solid #0b1020;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;

  --max: 1180px;
}

/* ===================== Base ===================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 191, 25, 0.22), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(0, 183, 255, 0.20), transparent 34%),
    linear-gradient(180deg, #fff7d9 0%, #e9f8ff 34%, #fffaf0 74%, #071735 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p {
  font-size: 1.04rem;
  line-height: 1.7;
}

strong {
  font-weight: 900;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 999;
  background: var(--sun);
  color: #000;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 900;
}

.skip-link:focus {
  top: 14px;
}

/* ===================== Top Bar / Navigation ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 10, 28, 0.92);
  border-bottom: 3px solid var(--sun);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 1000;
  letter-spacing: -0.04em;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--deep-blue);
  background:
    radial-gradient(circle at 32% 30%, #fff 0 8%, transparent 9%),
    linear-gradient(135deg, var(--sun), var(--sun-hot));
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(255, 191, 25, 0.25);
}

.brand span span {
  color: var(--pool-blue);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 3px solid var(--sun);
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 1000;
  cursor: pointer;
}

.nav-toggle .bars {
  display: inline-grid;
  gap: 4px;
  vertical-align: middle;
  margin-right: 8px;
}

.nav-toggle .bars i {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--sun);
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: #f9fbff;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 900;
  padding: 11px 12px;
  border-radius: 999px;
  transition: 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background: var(--sun);
  color: var(--night-blue);
  outline: none;
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--sun), var(--sun-hot));
  color: #111;
  box-shadow: 0 8px 22px rgba(255, 122, 24, 0.24);
}

/* Mobile nav uses checkbox-free JS class support, but still works as stacked nav */
body.nav-open {
  overflow: hidden;
}

/* ===================== Buttons ===================== */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 3px solid #111;
  background: var(--sun);
  color: #111;
  font-weight: 1000;
  box-shadow: 5px 5px 0 #111;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover,
.btn:focus {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #111;
  outline: none;
}

.btn.secondary {
  background: #fff;
}

.btn.blue {
  background: var(--pool-blue);
}

.btn.dark {
  background: var(--deep-blue);
  color: #fff;
  border-color: #fff;
  box-shadow: 5px 5px 0 var(--sun);
}

/* ===================== Hero ===================== */

.hero {
  position: relative;
  color: #fff;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night-blue);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 21, 0.86) 0%, rgba(2, 8, 21, 0.48) 42%, rgba(2, 8, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 8, 21, 0.86) 0%, transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -80px -8%;
  height: 160px;
  z-index: 2;
  background: #fff8e8;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 110px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 9px 13px;
  border: 3px solid #111;
  border-radius: 999px;
  background: var(--sun);
  color: #111;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 5px 5px 0 #111;
}

.kicker::before {
  content: "☀";
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.3rem, 9vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  text-shadow:
    5px 5px 0 #0b1020,
    0 12px 34px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
  color: var(--sun);
}

.hero-subtitle {
  max-width: 720px;
  margin: 22px 0 0;
  color: #fff6d8;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  font-weight: 900;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: #111;
  background: #fff;
  border: 2px solid #111;
  font-weight: 1000;
  box-shadow: 3px 3px 0 #111;
}

/* ===================== Sections ===================== */

.section {
  position: relative;
  padding: 82px 0;
}

.section.light {
  background: #fff8e8;
}

.section.blue {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 183, 255, 0.35), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255, 191, 25, 0.20), transparent 30%),
    linear-gradient(135deg, #071735, #092d63 62%, #06101f);
}

.section.white {
  background: #fff;
}

.section-title {
  max-width: 880px;
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.section-title .sun {
  color: var(--sun-hot);
}

.section-title .blue-text {
  color: var(--solar-blue);
}

.section-lede {
  max-width: 820px;
  margin: 0 0 34px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: #263248;
}

.section.blue .section-lede,
.section.blue p {
  color: #e9f8ff;
}

/* ===================== Comic Cards / Grids ===================== */

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: var(--comic-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.card .card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: var(--comic-border);
  background: #d8f5ff;
}

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

.card-content {
  padding: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.card p {
  margin: 0;
  color: #314052;
}

.card .mini-link {
  display: inline-flex;
  margin-top: 16px;
  color: #071735;
  font-weight: 1000;
  text-decoration: none;
  border-bottom: 4px solid var(--sun);
}

.card.featured {
  background: var(--deep-blue);
  color: #fff;
}

.card.featured p {
  color: #e4f6ff;
}

.episode-card::before {
  content: attr(data-episode);
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: #111;
  border: 3px solid #111;
  font-weight: 1000;
  box-shadow: 3px 3px 0 #111;
}

/* ===================== Split Feature ===================== */

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.96fr 1.04fr;
}

.feature-image {
  overflow: hidden;
  border: var(--comic-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #fff;
  transform: rotate(-1deg);
}

.split.reverse .feature-image {
  transform: rotate(1deg);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-panel {
  padding: clamp(24px, 4vw, 42px);
  border: var(--comic-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 232, 0.96)),
    radial-gradient(circle at 10% 0%, rgba(255, 191, 25, 0.30), transparent 30%);
  box-shadow: var(--shadow);
}

.copy-panel.dark {
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 191, 25, 0.20), transparent 30%),
    linear-gradient(135deg, #071735, #111827);
}

.copy-panel.dark p {
  color: #e8f8ff;
}

.copy-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.copy-panel p:last-child {
  margin-bottom: 0;
}

/* ===================== Manga Speech / Callouts ===================== */

.speech {
  position: relative;
  display: inline-block;
  margin: 18px 0;
  padding: 18px 20px;
  max-width: 620px;
  border: 4px solid #111;
  border-radius: 28px;
  background: #fff;
  color: #111;
  font-weight: 1000;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.25;
  box-shadow: 6px 6px 0 #111;
}

.speech::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -22px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-right: 4px solid #111;
  border-bottom: 4px solid #111;
  transform: rotate(45deg);
}

.burst {
  display: inline-grid;
  place-items: center;
  min-width: 150px;
  min-height: 150px;
  padding: 20px;
  color: #111;
  background: var(--sun);
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(
    50% 0%, 58% 20%, 76% 8%, 73% 30%, 96% 27%, 80% 43%,
    100% 55%, 78% 60%, 88% 80%, 66% 72%, 58% 100%, 48% 78%,
    28% 94%, 32% 70%, 5% 75%, 24% 55%, 0% 42%, 27% 36%,
    18% 12%, 40% 23%
  );
  filter: drop-shadow(5px 6px 0 #111);
}

/* ===================== Character / Villain Bands ===================== */

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

.character-chip {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 18px;
  display: flex;
  align-items: end;
  border: 3px solid #111;
  border-radius: 22px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.70) 100%),
    var(--solar-blue);
  color: #fff;
  text-decoration: none;
  box-shadow: 5px 5px 0 #111;
}

.character-chip img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-chip span {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  font-weight: 1000;
  text-shadow: 2px 2px 0 #000;
}

.villain {
  background:
    radial-gradient(circle at 80% 10%, rgba(109, 40, 217, 0.55), transparent 34%),
    linear-gradient(135deg, #12051f, #020815);
  color: #fff;
}

.villain .card {
  background: #140b20;
  color: #fff;
  border-color: #000;
}

.villain .card p {
  color: #eee5ff;
}

/* ===================== Utility / Equipment Rows ===================== */

.icon-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 3px solid #111;
  border-radius: 16px;
  background: #fff;
  box-shadow: 4px 4px 0 #111;
}

.icon-list .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pool-blue);
  color: #fff;
  font-weight: 1000;
  border: 2px solid #111;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stat {
  padding: 24px;
  border: 3px solid #111;
  border-radius: 22px;
  background: #fff;
  box-shadow: 5px 5px 0 #111;
}

.stat b {
  display: block;
  color: var(--solar-blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

/* ===================== Page Hero ===================== */

.page-hero {
  position: relative;
  min-height: 56vh;
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night-blue);
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 21, 0.88), rgba(2, 8, 21, 0.36)),
    linear-gradient(0deg, rgba(2, 8, 21, 0.78), transparent 55%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 70px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #000;
}

.page-hero p {
  max-width: 720px;
  color: #fff6d8;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
}

/* ===================== Forms ===================== */

.form-card {
  padding: clamp(22px, 4vw, 38px);
  border: var(--comic-border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 1000;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 3px solid #111;
  border-radius: 14px;
  font: inherit;
  background: #fffdf4;
  color: #111;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 4px solid rgba(255, 191, 25, 0.55);
}

/* ===================== Footer ===================== */

.site-footer {
  color: #eaf7ff;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 191, 25, 0.18), transparent 30%),
    linear-gradient(135deg, #020815, #071735 56%, #020815);
  border-top: 4px solid var(--sun);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
}

.footer-brand {
  color: #fff;
  font-size: 2rem;
  font-weight: 1000;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.footer-brand span {
  color: var(--pool-blue);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #eaf7ff;
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--sun);
}

.footer-contact {
  padding: 18px;
  border: 2px solid rgba(255, 191, 25, 0.38);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-contact p {
  margin: 0 0 8px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9cce0;
  font-size: 0.92rem;
}

/* ===================== Tables / FAQ ===================== */

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 3px solid #111;
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 5px 0 #111;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.15rem;
  font-weight: 1000;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--solar-blue);
  font-size: 1.5rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item div {
  padding: 0 20px 20px;
}

.basic-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 3px solid #111;
  border-radius: 18px;
  background: #fff;
  box-shadow: 5px 5px 0 #111;
}

.basic-table th,
.basic-table td {
  padding: 14px;
  border: 2px solid #111;
  text-align: left;
  vertical-align: top;
}

.basic-table th {
  background: var(--sun);
}

/* ===================== Sitemap ===================== */

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

.sitemap-group {
  padding: 22px;
  border: 3px solid #111;
  border-radius: 22px;
  background: #fff;
  box-shadow: 5px 5px 0 #111;
}

.sitemap-group h2 {
  margin: 0 0 12px;
}

.sitemap-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.sitemap-group a {
  font-weight: 900;
  color: var(--deep-blue);
}

/* ===================== Helpers ===================== */

.text-center {
  text-align: center;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.max-780 {
  max-width: 780px;
}

.max-900 {
  max-width: 900px;
}

.mt-0 {
  margin-top: 0;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.sun-text {
  color: var(--sun-hot);
}

.blue-text {
  color: var(--solar-blue);
}

.pool-text {
  color: var(--pool-blue);
}

.warning-text {
  color: var(--danger);
}

.comic-rule {
  height: 8px;
  margin: 34px 0;
  border: 0;
  background:
    repeating-linear-gradient(
      90deg,
      var(--sun) 0 26px,
      #111 26px 34px,
      var(--pool-blue) 34px 60px,
      #111 60px 68px
    );
  border-radius: 999px;
}

/* ===================== Responsive ===================== */

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    border: 3px solid var(--sun);
    border-radius: 20px;
    background: rgba(3, 10, 28, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero h1 {
    max-width: 720px;
  }

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

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .main-nav {
    inset-top: 68px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 8, 21, 0.92) 0%, rgba(2, 8, 21, 0.62) 54%, rgba(2, 8, 21, 0.22) 100%);
  }

  .hero-content {
    padding: 110px 0 90px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.6rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 58px 0;
  }

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .character-band {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-hero {
    min-height: 50vh;
  }

  .page-hero-content {
    padding: 110px 0 54px;
  }

  .sitemap-list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .speech {
    font-size: 1rem;
  }
}

@media (max-width: 440px) {
  .character-band {
    grid-template-columns: 1fr;
  }

  .card-content,
  .copy-panel,
  .form-card {
    padding: 18px;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== Print ===================== */

@media print {
  .site-header,
  .btn-row,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .card,
  .copy-panel,
  .form-card,
  .faq-item {
    box-shadow: none;
  }
}
