@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800;1,900&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap");

:root,
[data-theme="light"] {
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "General Sans", Arial, sans-serif;
  --text-xs: clamp(0.75rem, 0.72rem + 0.12vw, 0.84rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.18vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.2rem, 1.08rem + 0.6vw, 1.6rem);
  --text-xl: clamp(1.9rem, 1.45rem + 1.75vw, 3.1rem);
  --text-2xl: clamp(2.9rem, 1.8rem + 4.2vw, 6.5rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --paper: #f8f7f1;
  --paper-2: #ffffff;
  --panel: #eef4f7;
  --ink: #111316;
  --muted: #545b63;
  --line: #17191c;
  --blue: #006eb8;
  --blue-dark: #003e70;
  --blue-pale: #d9effb;
  --yellow: #ffc400;
  --orange: #ef5418;
  --success: #0b7550;
  --shadow: 8px 8px 0 #111316;
  --shadow-small: 4px 4px 0 #111316;
  --content: 1180px;
  --content-narrow: 760px;
  --radius-sm: 0.3rem;
  --radius-md: 0.65rem;
  --radius-lg: 1rem;
  --ease: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --paper: #0e1115;
  --paper-2: #161b21;
  --panel: #18242e;
  --ink: #f4f4ef;
  --muted: #b4bec7;
  --line: #eef2f5;
  --blue: #1d91db;
  --blue-dark: #67bceb;
  --blue-pale: #132e40;
  --yellow: #ffd02e;
  --orange: #ff6931;
  --success: #45c899;
  --shadow: 8px 8px 0 #050607;
  --shadow-small: 4px 4px 0 #050607;
}

body {
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--ink) 8%, transparent) 1px, transparent 0);
  background-size: 20px 20px;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), var(--content-narrow));
  margin-inline: auto;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: var(--space-3);
  width: auto;
  height: auto;
  padding: var(--space-3) var(--space-4);
  clip: auto;
  color: #111;
  background: var(--yellow);
  border: 3px solid #111;
}

.topline {
  padding: var(--space-2) 0;
  color: #fff;
  background: var(--blue-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topline .container {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 3px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-bar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: block;
  width: clamp(136px, 12vw, 160px);
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
  font-size: var(--text-sm);
  font-weight: 700;
}

.nav-links a,
.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--ease), transform var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
}

[data-theme="dark"] .site-header .nav-links a,
[data-theme="dark"] .site-header .mobile-nav a {
  color: #f4f4ef;
}

[data-theme="dark"] .site-header .nav-links a:hover,
[data-theme="dark"] .site-header .nav-links a[aria-current="page"] {
  color: var(--blue-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.theme-toggle,
.menu-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--line);
  box-shadow: 2px 2px 0 var(--line);
}

.theme-toggle svg,
.menu-toggle svg {
  width: 20px;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  padding-bottom: var(--space-5);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: 3px solid #111316;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #111316;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #111316;
}

.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #111316;
}

.btn-primary {
  color: #111316;
  background: var(--yellow);
}

.btn-blue {
  color: #fff;
  background: var(--blue);
}

.btn-light {
  color: #111316;
  background: #fff;
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.section-tight {
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 4px;
  background: var(--yellow);
  border: 1px solid #111316;
}

.display,
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: var(--text-2xl);
  font-style: italic;
}

h2 {
  max-width: 17ch;
  font-size: var(--text-xl);
}

h3 {
  font-size: var(--text-lg);
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: var(--text-base);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100dvh - 110px));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(0, 19, 36, 0.96) 0 48%, rgba(0, 64, 111, 0.82) 70%, rgba(0, 25, 48, 0.95) 100%),
    repeating-radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 9px),
    var(--blue-dark);
  border-bottom: 4px solid #111316;
}

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

.hero-scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 10, 18, 0.98) 0%, rgba(2, 10, 18, 0.91) 34%, rgba(2, 10, 18, 0.3) 62%, rgba(2, 10, 18, 0.06) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 44%;
  height: 55%;
  background: var(--blue);
  transform: skewY(-8deg);
  opacity: 0.62;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: var(--space-8);
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: #fff;
}

.hero h1 span {
  color: var(--yellow);
  text-shadow: 4px 4px 0 #111316;
}

.hero .lede {
  margin-top: var(--space-5);
  color: #e9f5fb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-proof b {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #111316;
  background: var(--yellow);
  border: 2px solid #111316;
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 580px;
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -2px;
  width: min(100%, 510px);
  max-height: 660px;
  object-fit: contain;
  object-position: bottom;
  mix-blend-mode: multiply;
  filter: drop-shadow(14px 9px 0 rgba(0, 0, 0, 0.45));
}

[data-theme="dark"] .hero-visual img {
  mix-blend-mode: screen;
}

.speech {
  position: absolute;
  z-index: 4;
  top: var(--space-6);
  right: 0;
  width: min(290px, 68%);
  padding: var(--space-4) var(--space-5);
  color: #111316;
  background: #fff;
  border: 4px solid #111316;
  clip-path: polygon(6% 0, 94% 4%, 100% 18%, 95% 42%, 100% 61%, 91% 100%, 59% 92%, 41% 100%, 11% 91%, 0 70%, 5% 48%, 0 23%);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.hero-callout {
  align-self: end;
  justify-self: end;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 4;
  width: min(270px, 74%);
  padding: var(--space-5);
  color: #111316;
  background: var(--yellow);
  border: 4px solid #111316;
  box-shadow: 7px 7px 0 #fff;
  transform: rotate(-2deg);
}

.hero-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-callout span {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
}

.media-frame {
  overflow: hidden;
  background: var(--blue-pale);
  border: 4px solid var(--line);
  box-shadow: var(--shadow);
}

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

.media-frame.portrait {
  aspect-ratio: 3 / 4;
}

.media-frame.landscape {
  aspect-ratio: 4 / 3;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-6);
}

.offer-list span {
  padding: var(--space-2) var(--space-3);
  color: #111316;
  background: #fff;
  border: 2px solid #111316;
  font-size: var(--text-sm);
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--yellow);
}

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

.trust-ribbon {
  color: #111316;
  background: var(--yellow);
  border-bottom: 4px solid #111316;
}

.trust-ribbon .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-point {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-right: 3px solid #111316;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.trust-point:last-child {
  border-right: 0;
}

.trust-point strong {
  font-size: 1.6em;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: var(--space-8);
}

.service-stack {
  display: grid;
  gap: var(--space-5);
}

.comic-card {
  position: relative;
  padding: var(--space-6);
  background: var(--paper-2);
  border: 3px solid var(--line);
  box-shadow: var(--shadow-small);
}

.comic-card.featured {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--blue-dark);
}

.comic-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(#fff 1.4px, transparent 1.4px);
  background-size: 9px 9px;
}

.comic-card > * {
  position: relative;
}

.comic-card h3 {
  margin-bottom: var(--space-2);
}

.comic-card p {
  color: var(--muted);
}

.comic-card.featured p {
  color: #e6f4fd;
}

.service-number {
  display: block;
  margin-bottom: auto;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.78;
  opacity: 0.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.featured .text-link {
  color: var(--yellow);
}

.financing-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #071a2a;
  border-block: 4px solid #111316;
}

.financing-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 9px, #39a9e8 9px 11px);
}

.finance-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(var(--space-8), 6vw, var(--space-20));
}

.finance-ad {
  width: min(100%, 440px);
  border: 4px solid #fff;
  box-shadow: 12px 12px 0 var(--yellow);
  transform: rotate(-2deg);
}

.finance-copy h2 {
  max-width: 10ch;
  font-size: var(--text-2xl);
  font-style: italic;
}

.finance-copy h2 span {
  color: var(--yellow);
}

.price-burst {
  display: inline-block;
  margin-block: var(--space-6);
  padding: var(--space-4) var(--space-6);
  color: #111316;
  background: var(--yellow);
  border: 4px solid #111316;
  box-shadow: 6px 6px 0 #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  transform: rotate(1deg);
}

.finance-copy .lede {
  color: #d9e9f4;
}

.fine-print {
  margin-top: var(--space-5);
  color: #aebdca;
  font-size: var(--text-xs);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.promise-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-6);
  background: var(--paper-2);
  border-top: 3px solid var(--line);
}

.promise-panel .marker {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  font-style: italic;
  line-height: 0.8;
}

.mission {
  color: #111316;
  background: var(--yellow);
  border-block: 4px solid #111316;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.54fr);
  gap: var(--space-12);
  align-items: center;
}

.mission h2 {
  max-width: 13ch;
}

.mission-quote {
  padding: var(--space-8);
  color: #fff;
  background: var(--blue-dark);
  border: 4px solid #111316;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.mission-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.mission-quote figcaption {
  margin-top: var(--space-5);
  color: #d9e9f4;
  font-size: var(--text-sm);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-8);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
  color: #fff;
  background: var(--blue);
  border: 4px solid #111316;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 14ch;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  color: #fff;
  background: var(--blue-dark);
  border-bottom: 4px solid #111316;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero .lede {
  margin-top: var(--space-5);
  color: #dcecf7;
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.detail-card {
  padding: var(--space-8);
  background: var(--paper-2);
  border: 3px solid var(--line);
  box-shadow: var(--shadow-small);
}

.detail-card:nth-child(3n + 2) {
  transform: translateY(var(--space-5));
}

.detail-card .kicker {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-card h2,
.detail-card h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.bullet-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 1.75rem;
}

.bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-card,
.form-card {
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  background: var(--paper-2);
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  color: #fff;
  background: var(--blue-dark);
}

.contact-card h2,
.form-card h2 {
  margin-bottom: var(--space-4);
}

.contact-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.contact-list a,
.contact-list span {
  display: block;
  color: #e3f2fc;
}

.contact-list strong {
  color: var(--yellow);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.field {
  display: grid;
  gap: var(--space-2);
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: var(--text-sm);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: var(--space-3) var(--space-4);
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 0;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.form-note {
  min-height: 1.5em;
  color: var(--muted);
  font-size: var(--text-sm);
}

.form-note.success {
  color: var(--success);
  font-weight: 700;
}

.form-note.error {
  color: var(--orange);
  font-weight: 700;
}

.footer {
  padding-top: var(--space-16);
  color: #fff;
  background: #080c10;
  border-top: 4px solid #111316;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
}

.footer .brand {
  padding: 0.45rem 0.6rem;
  border-radius: 0.35rem;
  background: #fff;
}

[data-theme="dark"] .site-header .brand {
  padding: 0.35rem 0.5rem;
  border-radius: 0.3rem;
  background: #fff;
}

.footer p {
  max-width: 42ch;
  margin-top: var(--space-4);
  color: #aebac5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.footer-links h3 {
  margin-bottom: var(--space-3);
  color: var(--yellow);
  font-size: 1.1rem;
}

.footer-links a {
  display: block;
  min-height: 32px;
  color: #c7d0d8;
  font-size: var(--text-sm);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-5);
  color: #8e9aa5;
  border-top: 1px solid #2c333a;
  font-size: var(--text-xs);
}

.sticky-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 940px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: var(--space-2);
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding-inline: var(--space-2);
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
    font-weight: 700;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
  }

  .hero-visual {
    min-height: 490px;
  }

  .section-heading,
  .finance-grid,
  .mission-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .finance-ad {
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 68px;
  }

  .topline .container {
    justify-content: center;
  }

  .topline span:last-child {
    display: none;
  }

  .header-bar {
    min-height: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 680px;
    align-content: end;
    padding-bottom: var(--space-10);
  }

  .hero-copy {
    padding-top: var(--space-24);
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-art {
    object-position: 78% center;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(2, 10, 18, 0.99) 0%, rgba(2, 10, 18, 0.9) 53%, rgba(2, 10, 18, 0.08) 88%);
  }

  .hero-callout {
    display: none;
  }

  .hero-proof {
    display: grid;
    gap: var(--space-2);
  }

  .trust-ribbon .container,
  .service-layout,
  .promise-grid,
  .detail-grid,
  .split,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-point {
    min-height: 66px;
    border-right: 0;
    border-bottom: 3px solid #111316;
  }

  .trust-point:last-child {
    border-bottom: 0;
  }

  .comic-card.featured {
    min-height: 330px;
  }

  .detail-card:nth-child(3n + 2) {
    transform: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .form-card {
    box-shadow: var(--shadow-small);
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-call {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #111316;
    border-top: 3px solid #111316;
  }

  .sticky-call a {
    display: grid;
    place-items: center;
    color: #111316;
    background: var(--yellow);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .sticky-call a:last-child {
    color: #fff;
    background: var(--blue);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
