:root {
  --ink: #f8fafc;
  --muted: #9aa8b8;
  --soft: #d8dee9;
  --navy: #06111f;
  --navy-2: #0a1829;
  --navy-3: #0f2136;
  --cyan: #38bdf8;
  --cyan-muted: #7dd3fc;
  --gold: #c9a44c;
  --line: rgba(216, 222, 233, 0.12);
  --panel: rgba(8, 22, 38, 0.68);
  --panel-strong: rgba(10, 24, 41, 0.86);
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grid-shift-x: 0px;
  --grid-shift-y: 0px;
  --light-x: 72vw;
  --light-y: 22vh;
  --cursor-x: 72vw;
  --cursor-y: 22vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent calc(var(--cursor-x) - 1px),
      rgba(56, 189, 248, 0.1) var(--cursor-x),
      transparent calc(var(--cursor-x) + 1px)
    ),
    linear-gradient(
      180deg,
      transparent calc(var(--cursor-y) - 1px),
      rgba(201, 164, 76, 0.075) var(--cursor-y),
      transparent calc(var(--cursor-y) + 1px)
    );
  opacity: 0;
  transition: opacity 260ms ease;
}

body.is-pointer-active::before {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(56, 189, 248, 0.16);
}

button {
  font: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(56, 189, 248, 0.16);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--cyan);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.grid-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(rgba(216, 222, 233, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 222, 233, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.13), transparent 36rem),
    linear-gradient(180deg, #071321 0%, #06111f 48%, #050d18 100%);
  background-size: 104px 104px, 104px 104px, auto, auto;
  background-position:
    var(--grid-shift-x) var(--grid-shift-y),
    var(--grid-shift-x) var(--grid-shift-y),
    center top,
    center;
  transition: background-position 760ms var(--ease);
}

.grid-backdrop::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at var(--light-x) var(--light-y), rgba(56, 189, 248, 0.2), transparent 18rem),
    radial-gradient(circle at calc(var(--light-x) - 16vw) calc(var(--light-y) + 20vh), rgba(201, 164, 76, 0.1), transparent 20rem);
  opacity: 0.86;
  filter: blur(8px);
  transition: background-position 620ms var(--ease), opacity 320ms ease;
}

.grid-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.92), transparent 20%, transparent 80%, rgba(6, 17, 31, 0.92)),
    linear-gradient(180deg, transparent 0%, rgba(6, 17, 31, 0.3) 56%, rgba(6, 17, 31, 0.88) 100%);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(216, 222, 233, 0.12);
  border-radius: var(--radius);
  background: rgba(6, 17, 31, 0.7);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(216, 222, 233, 0.18);
  background: rgba(6, 17, 31, 0.88);
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.28);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark,
.hero-logo {
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.brand-mark img,
.hero-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 12px rgba(56, 189, 248, 0.08));
}

.hero-logo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(248, 250, 252, 0.7);
  font-size: 13px;
  font-weight: 600;
  transition: color 240ms ease, background 240ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(56, 189, 248, 0.1);
}

.menu-toggle {
  display: none;
  min-width: 82px;
  min-height: 44px;
  border: 1px solid rgba(216, 222, 233, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 96px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(216, 222, 233, 0.14);
  border-radius: var(--radius);
  background: rgba(6, 17, 31, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 280ms ease, transform 280ms var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.section-shell {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  padding: 132px 0 86px;
  text-align: center;
}

.hero-logo {
  position: relative;
  width: 138px;
  height: 166px;
  margin-bottom: 28px;
}


.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(58px, 9.5vw, 128px);
  line-height: 0.86;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero h1 span {
  max-width: 860px;
  display: block;
  margin: 30px auto 0;
  color: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
  transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.3) 48%, transparent 72%);
  transform: translateX(-125%);
  transition: transform 620ms var(--ease);
}

.button:hover {
  transform: translate3d(var(--mag-x, 0), calc(var(--mag-y, 0px) - 2px), 0);
}

.button:hover::before {
  transform: translateX(125%);
}

.button.primary {
  color: var(--navy);
  background: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(216, 222, 233, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
}

section:not(.hero) {
  padding: 108px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: 0;
}

.thesis {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 76px;
  align-items: center;
}

.thesis-stack {
  display: grid;
  gap: 12px;
}

.thesis-stack article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 7px;
  padding: 22px 0 22px 28px;
  border-top: 1px solid rgba(216, 222, 233, 0.16);
}

.thesis-stack article:last-child {
  border-bottom: 1px solid rgba(216, 222, 233, 0.16);
}

.thesis-stack article::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(111, 220, 255, 0.74), transparent);
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 320ms ease, transform 520ms ease;
}

.thesis-stack article:hover::before,
.thesis-stack article:focus-within::before {
  opacity: 1;
  transform: scaleY(1);
}

.thesis-stack span {
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.thesis-stack strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.thesis-stack p,
.redirect-card p,
.method-grid p,
.raiox-panel p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}

.redirect-card,
.raiox-panel,
.method-grid article,
.page-panel,
.compact-grid article,
.process-list article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.redirect-card::before,
.raiox-panel::before,
.method-grid article::before,
.page-panel::before,
.compact-grid article::before,
.process-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle 260px at var(--card-x, 50%) var(--card-y, 50%),
      rgba(56, 189, 248, 0.14),
      transparent 68%
    ),
    linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.065), transparent);
  background-position: center, center -180px;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 180px;
  opacity: 0.18;
  animation: surfaceScan 7.6s ease-in-out infinite;
  transition: opacity 320ms ease;
}

.redirect-card:hover::before,
.raiox-panel:hover::before,
.method-grid article:hover::before,
.page-panel:hover::before,
.compact-grid article:hover::before,
.process-list article:hover::before,
.redirect-card:focus-within::before,
.raiox-panel:focus-within::before,
.page-panel:focus-within::before {
  opacity: 1;
}

.redirect-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  transition: transform 320ms var(--ease), border-color 320ms ease, background 320ms ease;
}

.redirect-card:hover,
.raiox-panel:hover,
.method-grid article:hover,
.page-panel:hover,
.compact-grid article:hover,
.process-list article:hover {
  border-color: rgba(56, 189, 248, 0.28);
  background: var(--panel-strong);
  transform: translateY(-3px);
}

.card-number,
.method-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.redirect-card h3,
.method-grid h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.redirect-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  margin-top: auto;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.1), transparent 58%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.06);
  animation: iconBreathe 4.8s ease-in-out infinite;
}

.redirect-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-top-color: rgba(56, 189, 248, 0.46);
  border-right-color: rgba(201, 164, 76, 0.24);
  border-radius: inherit;
  opacity: 0.72;
  transform: rotate(0deg);
  animation: redirectOrbit 7s linear infinite;
  transition: opacity 240ms ease, border-color 240ms ease;
}

.redirect-icon::after {
  content: "↗";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cyan-muted);
  font-size: 20px;
}

.redirect-card:hover .redirect-icon,
.raiox-panel:hover .redirect-icon {
  border-color: rgba(56, 189, 248, 0.42);
}

.redirect-card:hover .redirect-icon::before,
.raiox-panel:hover .redirect-icon::before {
  opacity: 1;
  animation-duration: 2.4s;
}

@keyframes redirectOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes iconBreathe {
  0%,
  100% {
    box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.06), 0 0 0 rgba(56, 189, 248, 0);
  }

  50% {
    box-shadow: inset 0 0 22px rgba(56, 189, 248, 0.1), 0 0 22px rgba(56, 189, 248, 0.08);
  }
}

@keyframes surfaceScan {
  0%,
  58% {
    background-position: center, center -180px;
  }

  84%,
  100% {
    background-position: center, center calc(100% + 180px);
  }
}

.method {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

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

.method-grid article {
  min-height: 220px;
  padding: 24px;
}

.raiox {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.raiox h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.raiox-panel {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 320ms var(--ease), border-color 320ms ease, background 320ms ease;
}

.raiox-panel > span:first-child {
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
}

.raiox-panel p {
  max-width: 520px;
  margin-top: 18px;
}

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

.final-cta h2 {
  max-width: 920px;
  margin-inline: auto;
}

.site-footer {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 38px;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
}

.site-footer p {
  font-size: 14px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb::before {
  content: "← ";
  color: var(--cyan);
}

.page-hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: center;
  padding: 150px 0 92px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 650;
  letter-spacing: 0;
}

.page-lede {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.68;
}

.page-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 320ms var(--ease), border-color 320ms ease, background 320ms ease;
}

.page-panel::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -42px;
  width: 150px;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-top-color: rgba(56, 189, 248, 0.58);
  border-right-color: rgba(201, 164, 76, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(56, 189, 248, 0.08);
  animation: redirectOrbit 16s linear infinite;
}

.page-panel span {
  color: var(--cyan-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-panel p {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 700;
}

.page-section {
  padding: 108px 0;
  border-top: 1px solid var(--line);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

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

.compact-grid article,
.process-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  transition: transform 320ms var(--ease), border-color 320ms ease, background 320ms ease;
}

.method-grid article,
.raiox-panel {
  transition: transform 320ms var(--ease), border-color 320ms ease, background 320ms ease;
}

.compact-grid article {
  min-height: 210px;
  padding: 24px;
}

.compact-grid h3,
.process-list h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.compact-grid p,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 52px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.process-list.short {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow-x: visible;
}

.process-list article {
  min-height: 260px;
  padding: 24px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body::before {
    display: none;
  }
}

@media (hover: none) {
  body::before {
    display: none;
  }

  .page-panel::before,
  .compact-grid article::before,
  .process-list article::before,
  .method-grid article::before {
    opacity: 0.42;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .thesis,
  .method,
  .raiox,
  .page-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .page-panel {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .site-footer {
    width: min(calc(100% - 28px), 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .menu-toggle {
    min-width: 72px;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    text-align: left;
    justify-items: start;
  }

  .hero-logo {
    width: 104px;
    height: 126px;
  }

  .hero h1 {
    font-size: clamp(46px, 16vw, 64px);
  }

  .hero h1 span {
    margin-top: 24px;
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  section:not(.hero) {
    padding: 76px 0;
  }

  .solution-grid,
  .method-grid,
  .compact-grid,
  .compact-grid.three,
  .process-list.short {
    grid-template-columns: 1fr;
  }

  .redirect-card {
    min-height: 280px;
  }

  .page-hero {
    min-height: auto;
    padding: 128px 0 76px;
    gap: 38px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .page-panel {
    min-height: 220px;
  }
}
