:root {
  --ink: #05090f;
  --ink-soft: #09131f;
  --panel: rgba(10, 27, 42, 0.78);
  --panel-solid: #0b1b2b;
  --line: rgba(139, 216, 239, 0.2);
  --ice: #dffaff;
  --muted: #a9c2ce;
  --blue: #58c9ee;
  --blue-bright: #9beeff;
  --aurora: #51efc6;
  --aurora-dark: #173f40;
  --danger: #ffb6b6;
  --success: #7ff0cb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 11px;
  --max: 1180px;
  --header-height: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ice);
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(28, 111, 132, 0.16),
      transparent 34rem
    ),
    linear-gradient(180deg, #05090f 0%, #07111b 44%, #05090f 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue-bright);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--aurora);
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--aurora);
  outline-offset: 4px;
}

::selection {
  color: #041015;
  background: var(--aurora);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--ice);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(129, 208, 233, 0.11);
  background: rgba(4, 9, 15, 0.84);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ice);
  text-decoration: none;
}

.brand img {
  width: 255px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  padding: 9px 13px;
  color: #c7dce4;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ice);
  background: rgba(87, 201, 238, 0.1);
  border-color: rgba(87, 201, 238, 0.22);
}

.site-nav .nav-contact {
  margin-left: 7px;
  color: #061019;
  background: linear-gradient(135deg, var(--ice), var(--aurora));
  border-color: transparent;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  color: #061019;
  background: linear-gradient(135deg, #ffffff, #78f6d5);
  border-color: transparent;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ice);
  background: rgba(87, 201, 238, 0.08);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.menu-toggle .close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: center 48%;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(3, 8, 14, 0.96) 0%,
      rgba(3, 8, 14, 0.77) 35%,
      rgba(3, 8, 14, 0.18) 72%
    ),
    linear-gradient(0deg, #05090f 0%, transparent 44%);
}

.hero::after {
  z-index: -1;
  content: "";
  background: radial-gradient(
    circle at 72% 20%,
    rgba(77, 239, 198, 0.13),
    transparent 24rem
  );
  pointer-events: none;
}

.hero-content {
  padding-block: clamp(90px, 16vh, 170px) 96px;
}

.hero-copy {
  width: min(670px, 100%);
}

.hero-logo-title {
  width: clamp(190px, 28vw, 340px);
  max-width: none;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.42));
}

.hero-logo-title img {
  width: 100%;
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--aurora);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: #f4fdff;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 7.4rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.05rem, 5vw, 4.2rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
}

.hero-lede,
.page-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: #cae0e8;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  color: #061019;
  background: linear-gradient(135deg, var(--ice), var(--aurora));
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(81, 239, 198, 0.15);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.button:hover {
  color: #061019;
  background: linear-gradient(135deg, #ffffff, #7ff7d7);
  box-shadow: 0 14px 42px rgba(81, 239, 198, 0.23);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ice);
  background: rgba(5, 13, 22, 0.7);
  border-color: rgba(167, 229, 246, 0.38);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--ice);
  background: rgba(19, 47, 64, 0.88);
}

.button[aria-disabled="true"],
.button:disabled {
  color: #b7cad2;
  background: rgba(164, 201, 212, 0.1);
  border-color: rgba(164, 201, 212, 0.2);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.hero-note {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  position: relative;
  padding-block: clamp(76px, 10vw, 132px);
}

.section-compact {
  padding-block: clamp(58px, 8vw, 92px);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 46px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(140deg, rgba(17, 44, 65, 0.78), rgba(5, 16, 27, 0.87)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.16);
}

.card::after {
  position: absolute;
  top: -84px;
  right: -84px;
  width: 170px;
  height: 170px;
  content: "";
  background: radial-gradient(
    circle,
    rgba(81, 239, 198, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

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

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--aurora);
  background: rgba(81, 239, 198, 0.08);
  border: 1px solid rgba(81, 239, 198, 0.2);
  border-radius: 14px;
  font-weight: 900;
}

.card p,
.prose p,
.prose li {
  color: var(--muted);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  min-height: 560px;
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

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

.feature-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, var(--panel-solid) 100%);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
}

.feature-copy p {
  color: var(--muted);
}

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

.project-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.project-art,
.feature-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 310px;
  padding: 38px;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(81, 239, 198, 0.2), transparent 17rem),
    linear-gradient(145deg, #0d3650, #06121f 68%);
}

.project-art::before,
.feature-placeholder::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(155, 238, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 238, 255, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.project-art img,
.feature-placeholder img {
  width: clamp(110px, 18vw, 180px);
  height: auto;
  opacity: 0.52;
  filter: saturate(0.72) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.4));
}

.project-art span,
.feature-placeholder span {
  color: var(--aurora);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-art strong,
.feature-placeholder strong {
  color: var(--ice);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
}

.project-art-server,
.feature-placeholder-server {
  background:
    radial-gradient(circle at 50% 42%, rgba(88, 201, 238, 0.2), transparent 17rem),
    linear-gradient(145deg, #102a43, #070e18 68%);
}

.project-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 5vw, 48px);
}

.project-copy p {
  color: var(--muted);
}

.project-copy .button {
  margin-top: auto;
}

.project-details {
  display: grid;
  width: 100%;
  gap: 0;
  margin: 10px 0 30px;
}

.project-details div {
  display: grid;
  grid-template-columns: minmax(105px, 0.42fr) minmax(0, 0.58fr);
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(139, 216, 239, 0.12);
}

.project-details dt,
.project-details dd {
  margin: 0;
}

.project-details dt {
  color: #d5edf4;
  font-weight: 800;
}

.project-details dd {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.project-details-wide {
  margin-bottom: 0;
}

.project-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.feature-placeholder {
  min-height: 560px;
}

.feature-placeholder::after {
  display: none;
}

.feature-panel-reverse .feature-visual {
  order: 2;
}

.feature-panel-reverse .feature-copy {
  order: 1;
}

.status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: var(--aurora);
  background: rgba(81, 239, 198, 0.08);
  border: 1px solid rgba(81, 239, 198, 0.2);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status::before {
  width: 7px;
  height: 7px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
}

.status-pending {
  color: var(--blue-bright);
  background: rgba(88, 201, 238, 0.08);
  border-color: rgba(88, 201, 238, 0.2);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  padding: clamp(32px, 6vw, 64px);
  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(81, 239, 198, 0.14),
      transparent 23rem
    ),
    linear-gradient(125deg, rgba(21, 58, 79, 0.9), rgba(6, 18, 29, 0.94));
  border: 1px solid rgba(115, 219, 238, 0.24);
  border-radius: var(--radius-lg);
}

.cta-band p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 14vw, 170px) clamp(74px, 10vw, 118px);
  border-bottom: 1px solid var(--line);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(81, 239, 198, 0.11),
      transparent 23rem
    ),
    linear-gradient(130deg, rgba(10, 43, 63, 0.62), transparent 48%);
}

.page-hero::after {
  right: 6vw;
  bottom: -220px;
  z-index: -1;
  width: 520px;
  height: 520px;
  background: url("../images/arcticexile-mark-512.webp") center / contain
    no-repeat;
  opacity: 0.055;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 8vw, 6.7rem);
}

.content-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
}

.content-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-top: 2px;
  color: #041015;
  background: var(--aurora);
  border-radius: 50%;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

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

.faq-list details {
  background: rgba(11, 27, 43, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--ice);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--aurora);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 5vw, 48px);
  background: rgba(9, 25, 39, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card h2 {
  margin-bottom: 14px;
}

.contact-card > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
}

.contact-card .button {
  margin-top: auto;
}

.contact-email {
  display: inline-block;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
  color: var(--aurora);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
}

.contact-guidance {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  padding: clamp(26px, 5vw, 48px);
  background: linear-gradient(
    135deg,
    rgba(9, 25, 39, 0.9),
    rgba(7, 36, 47, 0.72)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-guidance h2 {
  margin-bottom: 0;
}

.contact-guidance .check-list {
  margin: 0;
}

.draft-banner {
  padding: 15px 0;
  color: #deeff5;
  background: rgba(92, 190, 215, 0.1);
  border-bottom: 1px solid rgba(92, 190, 215, 0.22);
  font-size: 0.93rem;
}

.draft-banner strong {
  color: var(--aurora);
}

.prose {
  font-size: 1.02rem;
}

.prose h2 {
  margin: 64px 0 20px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.prose h3 {
  margin: 34px 0 14px;
  font-size: 1.25rem;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.placeholder {
  display: inline;
  padding: 0.08em 0.35em;
  color: #ffe9b0;
  background: rgba(255, 197, 82, 0.12);
  border: 1px dashed rgba(255, 197, 82, 0.48);
  border-radius: 5px;
  font-weight: 750;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.92rem;
}

.error-page {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding-block: 90px;
  text-align: center;
}

.error-code {
  margin: 0;
  color: rgba(126, 227, 247, 0.17);
  font-size: clamp(7rem, 26vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.error-page h1 {
  margin-top: -2vw;
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.error-page p {
  max-width: 540px;
  margin: 24px auto 0;
  color: var(--muted);
}

.error-actions {
  justify-content: center;
}

.error-footer {
  margin-top: 0;
}

.site-footer {
  padding-block: 60px 30px;
  background: #03070c;
  border-top: 1px solid rgba(129, 208, 233, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) repeat(2, minmax(160px, 0.55fr));
  gap: 42px;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: #829ba6;
}

.footer-title {
  margin: 0 0 14px;
  color: #e6f9fd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.footer-links a {
  width: fit-content;
  color: #a9c2ce;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--aurora);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  color: #748e99;
  border-top: 1px solid rgba(129, 208, 233, 0.1);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .brand img {
    width: 200px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    align-content: start;
    gap: 8px;
    padding: 20px;
    overflow-y: auto;
    background: rgba(4, 9, 15, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .site-nav .nav-contact {
    margin: 6px 0 0;
    text-align: center;
  }

  .section-header,
  .feature-panel,
  .contact-layout,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel-reverse .feature-visual,
  .feature-panel-reverse .feature-copy {
    order: initial;
  }

  .feature-visual::after {
    background: linear-gradient(0deg, var(--panel-solid) 0%, transparent 44%);
  }

  .contact-guidance {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: 760px;
  }

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

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 8, 14, 0.94) 0%, rgba(3, 8, 14, 0.54) 78%),
      linear-gradient(0deg, #05090f 0%, rgba(3, 8, 14, 0.16) 62%);
  }

  .hero-content {
    padding-bottom: 68px;
  }

  .brand img {
    width: 190px;
  }

  .hero-logo-title {
    width: clamp(190px, 62vw, 250px);
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.7rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .grid-3,
  .grid-2,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 0;
  }

  .feature-visual {
    min-height: 330px;
  }

  .project-art,
  .feature-placeholder {
    min-height: 290px;
    padding: 30px 22px;
  }

  .project-details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cta-band .button {
    width: 100%;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
