:root {
  --bg-primary: #f9fafb;
  --bg-secondary: #f3f4f6;
  --white: #ffffff;
  --text-primary: #0f172a;
  --text-heading: #0f172a;
  --text-secondary: #111827;
  --brand-navy: #0f172a;
  --brand-teal: #0f766e;
  --navy-deep: #0f172a;
  --navy-hero: #0f172a;
  --footer-bg: #0b1220;
  --teal-dark: #0f766e;
  --teal-dark-hover: #115e59;
  --mint: #5eead4;
  --cyan: #7dd3fc;
  --border-light: #e5e7eb;
  --text-dark-muted: #cbd5e1;
  --shadow-soft: 0 16px 44px rgba(15, 23, 42, 0.08);
  --radius-lg: 10px;
  --radius-md: 8px;
  --max: 1200px;
  --enterprise-space: clamp(72px, 7vw, 96px);
  --enterprise-space-compact: clamp(52px, 5.5vw, 72px);
}

/* 2026 sovereign-shield hero: responsive image with lightweight cinematic motion. */
.hero {
  min-height: clamp(720px, 52vw, 880px);
  isolation: isolate;
  padding: 150px 0 90px;
  background: #031326;
}

.hero-backdrop {
  position: absolute;
  z-index: -4;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 48%, rgba(2, 12, 27, 0.48), transparent 55%),
    linear-gradient(90deg, rgba(2, 12, 27, 0.96) 0%, rgba(2, 14, 31, 0.88) 31%, rgba(2, 16, 35, 0.44) 57%, rgba(1, 11, 25, 0.1) 79%),
    linear-gradient(180deg, rgba(1, 9, 22, 0.18) 55%, rgba(1, 9, 22, 0.72) 100%);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
  animation: sovereign-hero-drift 16s ease-in-out infinite alternate;
}

.hero::before {
  z-index: -2;
  top: 26%;
  right: 18.5%;
  width: clamp(220px, 27vw, 420px);
  height: clamp(220px, 27vw, 420px);
  background: radial-gradient(circle, rgba(99, 225, 255, 0.22) 0%, rgba(18, 139, 255, 0.1) 34%, transparent 70%);
  animation: sovereign-shield-breathe 4.8s ease-in-out infinite;
}

.hero::after {
  z-index: -1;
  top: 20%;
  right: 16%;
  width: clamp(260px, 33vw, 510px);
  height: clamp(260px, 33vw, 510px);
  border-color: rgba(95, 216, 255, 0.2);
  box-shadow: 0 0 0 38px rgba(42, 153, 255, 0.025), 0 0 0 82px rgba(68, 100, 255, 0.018);
  animation: sovereign-ring-pulse 7.5s ease-in-out infinite;
}

.hero-grid {
  min-height: 510px;
  grid-template-columns: minmax(0, 660px) 1fr;
  align-items: center;
  gap: 0;
}

.hero-content {
  position: relative;
  max-width: 660px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-content::before {
  display: none;
}

.hero h1 {
  max-width: 630px;
  color: #ffffff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

.hero .muted-line {
  color: #b9edff;
}

.hero .eyebrow {
  color: #9ee8ff;
}

.hero-copy {
  max-width: 590px;
  color: #d8e5ee;
}

.hero-runtime-legacy {
  display: none;
}

@keyframes sovereign-hero-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.7%, -0.45%, 0); }
}

@keyframes sovereign-shield-breathe {
  0%, 100% { opacity: 0.48; transform: scale(0.96); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

@keyframes sovereign-ring-pulse {
  0%, 100% { opacity: 0.38; transform: scale(0.92) rotate(0deg); }
  50% { opacity: 0.72; transform: scale(1.04) rotate(3deg); }
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
    padding: 118px 0 70px;
  }

  .hero-grid {
    min-height: 500px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    max-width: min(660px, 84%);
  }

  .hero-backdrop::after {
    background:
      linear-gradient(90deg, rgba(2, 12, 27, 0.96), rgba(2, 14, 31, 0.76) 55%, rgba(1, 11, 25, 0.2)),
      linear-gradient(180deg, rgba(1, 9, 22, 0.08) 48%, rgba(1, 9, 22, 0.82));
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 700px;
    padding: 102px 0 64px;
  }

  .hero-backdrop img {
    object-position: 58% center;
    filter: saturate(0.88) contrast(1.04) brightness(0.72);
  }

  .hero-backdrop::after {
    background:
      linear-gradient(90deg, rgba(1, 10, 24, 0.96), rgba(2, 14, 31, 0.72) 72%, rgba(2, 14, 31, 0.34)),
      linear-gradient(180deg, rgba(1, 9, 22, 0.1) 38%, rgba(1, 9, 22, 0.88) 100%);
  }

  .hero-grid {
    min-height: 520px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.45rem, 10.4vw, 3rem);
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero::before {
    right: -4%;
    top: 32%;
  }

  .hero::after {
    right: -12%;
    top: 27%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-backdrop img,
  .hero::before,
  .hero::after {
    animation: none !important;
  }
}

/* Homepage technology carousel */
.technology-showcase {
  position: relative;
  padding: clamp(92px, 10vw, 134px) 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(34, 147, 210, .13), transparent 30%),
    #071a2b;
}

.technology-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: end;
  margin-bottom: 48px;
}

.technology-showcase-head h2 {
  max-width: 790px;
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(2.8rem, 4.8vw, 4.5rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.047em !important;
}

.technology-showcase-head > div:last-child > p {
  margin: 0 0 20px;
  color: #b9c7d2 !important;
  line-height: 1.75;
}

.technology-showcase .text-link {
  color: #9ef0cf !important;
}

.technology-carousel-stage {
  position: relative;
  min-height: clamp(510px, 56vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #051523;
}

.technology-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .55s ease, transform .55s ease, visibility .55s;
}

.technology-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: none;
}

.technology-slide picture,
.technology-slide picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.technology-slide picture img {
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: saturate(.82) contrast(1.05);
}

.technology-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 32, .97) 0%, rgba(4, 18, 32, .87) 46%, rgba(4, 18, 32, .28) 78%, rgba(4, 18, 32, .48) 100%),
    linear-gradient(0deg, rgba(4, 18, 32, .5), transparent 55%);
}

.technology-slide-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5.5vw, 72px);
  bottom: clamp(34px, 6vw, 76px);
  width: min(650px, calc(100% - 56px));
}

.technology-slide-number {
  display: block;
  margin-bottom: 20px;
  color: #9ef0cf;
  font-family: "Roboto Mono", monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.technology-slide h3 {
  max-width: 640px;
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(2.45rem, 4.5vw, 4.25rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
}

.technology-slide p {
  max-width: 610px;
  margin: 22px 0 18px;
  color: #d0dbe2 !important;
  font-size: 1.03rem;
  line-height: 1.72;
}

.technology-carousel-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
}

.technology-carousel-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
}

.technology-carousel-tab {
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #aebdca;
  border: 0;
  background: #0b2236;
  font: 700 .78rem/1.35 "Open Sans", sans-serif;
  text-align: left;
  cursor: pointer;
}

.technology-carousel-tab span {
  color: #6d8597;
  font-family: "Roboto Mono", monospace;
  font-size: .66rem;
}

.technology-carousel-tab:hover,
.technology-carousel-tab:focus-visible,
.technology-carousel-tab.is-active {
  color: #ffffff;
  background: #12324c;
}

.technology-carousel-tab.is-active span {
  color: #9ef0cf;
}

.technology-carousel-arrows {
  display: grid;
  grid-template-columns: repeat(2, 56px);
  gap: 8px;
}

.technology-carousel-arrows button {
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 5px;
  background: #0b2236;
  font-size: 1.18rem;
  cursor: pointer;
}

.technology-carousel-arrows button:hover,
.technology-carousel-arrows button:focus-visible {
  color: #071a2b;
  background: #9ef0cf;
}

.technology-carousel [data-technology-status] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .technology-showcase-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .technology-showcase-head > div:last-child {
    max-width: 650px;
  }

  .technology-carousel-stage {
    min-height: 590px;
  }

  .technology-slide-shade {
    background:
      linear-gradient(90deg, rgba(4, 18, 32, .96), rgba(4, 18, 32, .62)),
      linear-gradient(0deg, rgba(4, 18, 32, .55), transparent);
  }

  .technology-carousel-controls {
    grid-template-columns: 1fr;
  }

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

  .technology-carousel-arrows button {
    min-height: 48px;
  }
}

@media (max-width: 700px) {
  .technology-showcase {
    padding: 72px 0 !important;
  }

  .technology-showcase-head {
    margin-bottom: 32px;
  }

  .technology-showcase-head h2 {
    font-size: clamp(2.2rem, 10vw, 2.8rem) !important;
  }

  .technology-carousel-stage {
    min-height: 590px;
  }

  .technology-slide picture img {
    object-position: 62% center;
  }

  .technology-slide-shade {
    background: linear-gradient(0deg, rgba(4, 18, 32, .98) 0%, rgba(4, 18, 32, .89) 47%, rgba(4, 18, 32, .42) 100%);
  }

  .technology-slide-copy {
    left: 24px;
    bottom: 28px;
    width: calc(100% - 48px);
  }

  .technology-slide h3 {
    font-size: clamp(2rem, 9.5vw, 2.65rem) !important;
  }

  .technology-carousel-tabs {
    grid-template-columns: 1fr;
  }

  .technology-carousel-tab {
    min-height: 54px;
  }
}

@media (max-width: 380px) {
  .technology-carousel-stage {
    min-height: 620px;
  }

  .technology-slide-copy {
    left: 18px;
    width: calc(100% - 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-slide {
    transition: none;
  }
}

body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
.display-heading,
.monopoly-statement,
.monopoly-closer,
.approach-title {
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.container {
  width: min(var(--max), calc(100% - 64px));
}

.eyebrow,
.problem-label,
.capability-number,
.approach-step-label,
.approach-flow,
.spotlight-number,
.industry-nav span,
.why-number,
.runtime-console,
.console-top,
.runtime-badge,
.hero-micro,
.monopoly-visual figcaption,
.llm-labels span,
.text-link {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--brand-teal);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.display-heading {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-copy {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.button {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.button-primary {
  background: #0369a1;
}

.button-primary:hover {
  background: #02598a;
}

.button-mint {
  background: #0369a1;
  color: #ffffff;
}

.button-mint:hover {
  background: #02598a;
  box-shadow: 0 12px 28px rgba(3, 105, 161, 0.2);
}

.button-outline-light,
.button-outline-dark {
  border-radius: 4px;
}

.text-link {
  color: var(--brand-teal);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.why-link {
  color: #075985;
  font-weight: 700;
}

body.home-page main > section {
  content-visibility: visible !important;
  contain-intrinsic-size: none !important;
}

#industries {
  scroll-margin-top: 96px;
}

#industries-label {
  scroll-margin-top: 32px;
}

.site-header {
  padding: 12px 20px;
}

.header-shell {
  min-height: 62px;
  gap: 18px;
  padding: 7px 9px 7px 13px;
  border-color: rgba(229, 231, 235, 0.94);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
}

.brand-name,
.sov-footer-brand h2 {
  font-family: "Open Sans", sans-serif;
}

.desktop-nav a {
  border-radius: 4px;
  color: #334155;
  font-weight: 600;
}

.mobile-nav,
.mobile-nav a,
.menu-button {
  border-radius: 8px;
}

.hero {
  min-height: 720px;
  padding: 140px 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(3, 105, 161, 0.16), transparent 29%),
    radial-gradient(circle at 74% 58%, rgba(15, 118, 110, 0.13), transparent 28%),
    var(--navy-hero);
}

.hero-grid {
  grid-template-columns: 1.03fr 0.97fr;
  gap: 56px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.7vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.runtime-console {
  border-radius: 8px;
}

.runtime-row,
.governance-note {
  border-radius: 6px;
}

.hero-ticker {
  height: 58px;
}

.monopoly,
.problems,
.capabilities,
.why,
.faq {
  padding: var(--enterprise-space) 0;
}

.monopoly-grid {
  gap: clamp(44px, 6vw, 72px);
}

.monopoly-statement {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.monopoly-support {
  margin-top: 24px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.monopoly-image-frame,
.problem-visual,
.spotlight,
.industry-navs {
  border-radius: 10px;
}

.monopoly-closer {
  max-width: 900px;
  margin-top: 46px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.problems-intro {
  gap: 52px;
  margin-bottom: 44px;
}

.problem-block {
  gap: clamp(42px, 6vw, 72px);
  padding-block: var(--enterprise-space-compact);
}

.problem-label {
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.problem-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.problem-list {
  gap: 9px;
}

.problem-takeaway {
  margin-top: 24px;
  padding-top: 18px;
  font-size: 1rem;
}

.capabilities-header {
  gap: 56px;
  margin-bottom: 36px;
}

.capability {
  min-height: 320px;
  padding: 34px 30px 30px;
}

.capability h3 {
  margin: 30px 0 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.capability p {
  margin-bottom: 22px;
  line-height: 1.65;
}

.approach {
  padding: var(--enterprise-space) 0;
  background: #111827;
}

.approach-grid {
  gap: 64px;
}

.approach-title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.approach-summary {
  margin-top: 24px;
}

.approach-step {
  min-height: 200px;
  padding: 14px 0 36px;
}

.approach-step::before {
  top: 14px;
}

.approach-step-label {
  margin-bottom: 28px;
  font-size: 0.73rem;
  font-weight: 500;
}

.approach-step h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.approach-step p {
  font-size: 1.03rem;
  line-height: 1.65;
}

.industries {
  padding: var(--enterprise-space) 0;
  background: var(--navy-hero);
}

.industries-head {
  gap: 52px;
  margin-bottom: 38px;
}

.industries-head h2 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.carousel-layout {
  min-height: 520px;
}

.spotlight-copy h3 {
  font-size: clamp(2.2rem, 3.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.why-header {
  margin-bottom: 46px;
}

.why-item {
  min-height: 200px;
  padding: 32px 30px;
}

.why-item h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.faq-grid {
  gap: clamp(44px, 6vw, 72px);
}

.faq-intro .display-heading {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.faq-item summary {
  padding: 21px 0;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.faq-answer {
  padding-bottom: 22px;
  line-height: 1.7;
}

.final-cta {
  min-height: 560px;
  padding: var(--enterprise-space) 24px;
  background: #0f172a;
}

.final-cta h2 {
  max-width: 980px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.final-cta-copy {
  margin-top: 24px;
}

.final-actions {
  margin-top: 30px;
}

.sov-global-footer {
  padding-top: 76px;
  background: var(--footer-bg);
}

.sov-footer-top {
  padding-bottom: 56px;
}

.sov-presence {
  padding-block: 42px;
}

@media (max-width: 900px) {
  :root {
    --enterprise-space: 68px;
    --enterprise-space-compact: 50px;
  }

  .container {
    width: min(var(--max), calc(100% - 44px));
  }

  .hero {
    min-height: 0;
    padding: 126px 0 64px;
  }

  .hero-grid,
  .monopoly-grid,
  .problems-intro,
  .problem-block,
  .capabilities-header,
  .approach-grid,
  .industries-head,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .monopoly-grid,
  .problems-intro,
  .problem-block,
  .capabilities-header,
  .industries-head {
    gap: 38px;
  }

  .problem-block {
    gap: 38px;
  }

  .approach-grid {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  :root {
    --enterprise-space: 56px;
    --enterprise-space-compact: 42px;
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-header {
    padding: 8px;
  }

  .hero {
    padding: 110px 0 54px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.25rem);
    line-height: 1.1;
  }

  .display-heading,
  .monopoly-statement,
  .industries-head h2,
  .approach-title {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
    line-height: 1.1;
  }

  .problem-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .problem-block,
  .why-item,
  .capability {
    padding-block: 30px;
  }

  .problem-visual.problem-visual-image {
    width: 100%;
    min-height: 0;
  }

  .runtime-console {
    min-width: 0;
    padding: 10px;
  }

  .runtime-row {
    min-width: 0;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .runtime-row > div {
    min-width: 0;
  }

  .runtime-row strong,
  .runtime-row small {
    overflow-wrap: anywhere;
  }

  .runtime-badge {
    display: none;
  }

  .capability {
    min-height: 0;
  }

  .approach-step {
    min-height: 180px;
  }

  .carousel-layout {
    min-height: 0;
  }

  .final-cta {
    min-height: 500px;
  }

  .final-cta h2 {
    font-size: clamp(2.5rem, 10.5vw, 3.25rem);
    line-height: 1.1;
  }

  .faq-intro .display-heading {
    font-size: clamp(2.25rem, 9.5vw, 2.8rem);
  }
}

/* Keep the shield hero authoritative after the general homepage scale rules. */
.hero {
  min-height: clamp(720px, 52vw, 880px);
  padding: 150px 0 90px;
  background: #031326;
}

.hero-grid {
  min-height: 510px;
  grid-template-columns: minmax(0, 660px) 1fr;
  gap: 0;
}

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

.hero-copy {
  max-width: 590px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
    padding: 118px 0 70px;
  }

  .hero-grid {
    min-height: 500px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    max-width: min(660px, 84%);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 700px;
    padding: 102px 0 64px;
  }

  .hero-grid {
    min-height: 520px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.45rem, 10.4vw, 3rem);
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
