:root {
  color-scheme: dark;
  --black: #070604;
  --black-2: #10100e;
  --ink: #f5efe2;
  --muted: #b9aa8f;
  --gold: #d6ad3d;
  --gold-2: #ffcf5d;
  --orange: #f0782b;
  --ember: #ff8a3d;
  --steel: #7e9db3;
  --cyan: #7ad5ff;
  --line: rgba(214, 173, 61, 0.24);
  --glass: rgba(12, 10, 7, 0.66);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  --display: "Oxanium", "Bahnschrift", sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --page-pad: clamp(1rem, 5vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 4%, rgba(240, 120, 43, 0.18), transparent 31rem),
    radial-gradient(circle at 78% 0%, rgba(122, 213, 255, 0.10), transparent 34rem),
    linear-gradient(180deg, #050403 0%, #0b0907 42%, #070604 100%);
  font-family: var(--body);
  cursor: none;
}

main {
  overflow: hidden;
}

@supports (overflow: clip) {
  body,
  main {
    overflow-x: clip;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 9rem, black calc(100% - 9rem), transparent);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 91;
  pointer-events: none;
  content: "";
  opacity: 0.105;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.72'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

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

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(255, 207, 93, 0.9);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 207, 93, 0.72);
  border-radius: 999px;
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

body.is-hovering .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(240, 120, 43, 0.82);
  opacity: 0.92;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.055);
}

.scroll-meter span {
  display: block;
  width: calc(var(--progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold-2), var(--cyan));
  box-shadow: 0 0 22px rgba(255, 207, 93, 0.42);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 12px;
  border: 1px solid rgba(214, 173, 61, 0.22);
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.68);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translate3d(-50%, calc(var(--parallax-y, 0px) * 0.35), 0);
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  flex: 0 1 auto;
  gap: 11px;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(214, 173, 61, 0.36);
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup span {
  min-width: 0;
}

.brand-lockup strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 6px;
}

nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #e9ddc8;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

nav a:hover {
  color: white;
  background: rgba(214, 173, 61, 0.12);
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid rgba(255, 207, 93, 0.38);
  background: rgba(214, 173, 61, 0.13);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
  padding: clamp(9.25rem, 15vh, 12rem) var(--page-pad) clamp(4.5rem, 9vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(214, 173, 61, 0.22);
  border-radius: 999px;
  content: "";
  box-shadow: inset 0 0 70px rgba(240, 120, 43, 0.12), 0 0 110px rgba(214, 173, 61, 0.08);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.98) 0%, rgba(5, 4, 3, 0.76) 42%, rgba(5, 4, 3, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.96)),
    url("./assets/server/guild-banner-web.jpg") center / cover;
  transform: scale(1.04) translate3d(0, calc(var(--parallax-y, 0px) * -0.08), 0);
}

.panel-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 12vh;
  gap: 1px;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.panel-grid i {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 173, 61, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 207, 93, 0.075), transparent 42%),
    rgba(255, 255, 255, 0.015);
  animation: panelPulse 6s ease-in-out infinite;
  animation-delay: calc(var(--panel-index) * -115ms);
}

.panel-grid i::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 207, 93, 0.22), transparent);
  transform: translateX(-120%);
  animation: panelSweep 5.4s ease-in-out infinite;
  animation-delay: calc(var(--panel-index) * -87ms);
}

@keyframes panelPulse {
  0%, 100% { opacity: 0.22; filter: brightness(0.72); }
  8% { opacity: 0.82; filter: brightness(1.7); }
  14% { opacity: 0.35; filter: brightness(0.9); }
  52% { opacity: 0.48; filter: brightness(1.1); }
}

@keyframes panelSweep {
  0%, 58% { transform: translateX(-130%); }
  72%, 100% { transform: translateX(130%); }
}

.orbital-map {
  position: absolute;
  right: min(9vw, 7rem);
  top: 20%;
  z-index: -1;
  width: min(38vw, 29rem);
  aspect-ratio: 1;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * 0.18), 0);
}

.orbital-map span {
  position: absolute;
  inset: calc(var(--ring) * 12%);
  border: 1px solid rgba(214, 173, 61, 0.23);
  border-radius: 999px;
  transform: rotateX(62deg) rotateZ(calc(var(--ring) * 21deg));
}

.orbital-map span:nth-child(1) { --ring: 0; }
.orbital-map span:nth-child(2) { --ring: 1; border-color: rgba(240, 120, 43, 0.25); }
.orbital-map span:nth-child(3) { --ring: 2; border-color: rgba(122, 213, 255, 0.18); }

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: min(780px, 100%);
  max-width: 100%;
  min-width: 0;
  align-self: center;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * 0.18), 0);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: min(17ch, 100%);
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 5.25vw, 5.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

h1 span {
  display: inline-block;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.4rem;
  line-height: 1;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.32rem;
  line-height: 1.12;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
  color: #e8ddcb;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.access-strip {
  display: grid;
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  max-width: 760px;
  margin-top: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  gap: 1px;
  border: 1px solid rgba(214, 173, 61, 0.22);
  background: rgba(214, 173, 61, 0.16);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.access-strip div {
  min-width: 0;
  min-height: 6.4rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 207, 93, 0.08), transparent 46%),
    rgba(8, 7, 5, 0.78);
  backdrop-filter: blur(12px);
}

.access-strip span,
.access-strip strong {
  display: block;
}

.access-strip span {
  margin-bottom: 0.5rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.access-strip strong {
  color: #f5ead6;
  font-size: 0.9rem;
  line-height: 1.45;
}

.primary-action,
.ghost-action {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 800;
  text-align: center;
  overflow-wrap: break-word;
}

.primary-action {
  color: #17100a;
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  box-shadow: 0 16px 45px rgba(240, 120, 43, 0.28);
}

.primary-action::after,
.ghost-action::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.primary-action:hover::after,
.ghost-action:hover::after {
  transform: translateX(130%);
}

.ghost-action {
  border: 1px solid rgba(214, 173, 61, 0.38);
  color: #f7eddc;
  background: rgba(255, 255, 255, 0.035);
}

.mission-readout {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(28rem, 100%);
  max-width: 100%;
  grid-column: 2;
  grid-template-columns: 1fr;
  gap: 1px;
  justify-self: end;
  align-self: end;
  border: 1px solid rgba(214, 173, 61, 0.18);
  background: rgba(214, 173, 61, 0.15);
  box-shadow: var(--shadow);
  transform: translate3d(0, calc(var(--parallax-y, 0px) * 0.22), 0);
}

.mission-readout div {
  min-width: 0;
  min-height: 7.7rem;
  padding: 1.05rem;
  background: rgba(8, 7, 5, 0.82);
  backdrop-filter: blur(12px);
}

.mission-readout span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
}

.mission-readout strong,
.mission-readout small {
  display: block;
}

.mission-readout strong {
  margin: 0.65rem 0 0.35rem;
  font-family: var(--display);
  font-size: 1rem;
}

.mission-readout small {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  position: relative;
  padding: 7.25rem var(--page-pad);
}

.intro-band {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(214, 173, 61, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.98), rgba(13, 11, 8, 0.96));
}

.intro-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: 4rem;
  align-items: end;
}

.intro-grid > *,
.live-grid > *,
.proof-band > *,
.testimonials-header > *,
.contact-panel > *,
.follow-band > * {
  min-width: 0;
}

.intro-grid p {
  margin-bottom: 1.4rem;
  font-size: 1.12rem;
}

.flight-path {
  display: grid;
  max-width: 1180px;
  margin-top: 4.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  border: 1px solid var(--line);
  background: rgba(214, 173, 61, 0.12);
  box-shadow: var(--shadow);
}

.flight-path article {
  position: relative;
  min-height: 18rem;
  padding: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent),
    rgba(8, 7, 5, 0.91);
}

.flight-path article + article {
  border-left: 1px solid var(--line);
}

.flight-path span {
  display: inline-flex;
  margin-bottom: 4.2rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
}

.flight-path article::before {
  position: absolute;
  top: 4.3rem;
  left: 1.45rem;
  width: calc(100% - 2.9rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--orange), rgba(214, 173, 61, 0.1));
}

.flight-path article::after {
  position: absolute;
  top: 3.95rem;
  left: 1.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  content: "";
  background: var(--gold-2);
  box-shadow: 0 0 20px rgba(255, 207, 93, 0.74);
}

.live-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(122, 213, 255, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(240, 120, 43, 0.1), transparent 34%),
    #070604;
}

.live-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(min(24rem, 100%), 0.55fr);
  gap: 3rem;
  align-items: stretch;
}

.live-grid h2 {
  max-width: 13ch;
}

.live-console {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 22rem;
  padding: 1.5rem;
  border: 1px solid rgba(214, 173, 61, 0.32);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 207, 93, 0.09), transparent 45%),
    rgba(7, 6, 4, 0.82);
  box-shadow: var(--shadow);
}

.live-console::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.48;
  background:
    linear-gradient(rgba(214, 173, 61, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 61, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent);
  pointer-events: none;
}

.console-label {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-console strong {
  position: relative;
  z-index: 1;
  color: #fff7df;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.live-console small {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0.35rem 0 1.35rem;
  color: var(--muted);
  line-height: 1.5;
}

.live-console p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.discipline-grid {
  display: grid;
  max-width: 1180px;
  margin-top: 2.6rem;
  grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
  gap: 1px;
  border: 1px solid rgba(214, 173, 61, 0.22);
  background: rgba(214, 173, 61, 0.14);
}

.discipline-grid span {
  display: grid;
  min-height: 4.4rem;
  place-items: center;
  padding: 0.8rem;
  color: #f7eddc;
  background: rgba(10, 8, 6, 0.88);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: center;
  background:
    radial-gradient(circle at 8% 22%, rgba(122, 213, 255, 0.08), transparent 26rem),
    #090806;
}

.proof-visual {
  position: relative;
  min-height: 37rem;
  min-width: 0;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * 0.08), 0);
}

.proof-visual::before {
  position: absolute;
  inset: 2.5rem -1rem -1rem 3rem;
  border: 1px solid rgba(214, 173, 61, 0.28);
  content: "";
}

.proof-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(214, 173, 61, 0.32);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-copy {
  max-width: 39rem;
}

.signal-list {
  display: grid;
  gap: 1px;
  margin: 2.2rem 0 0;
  border: 1px solid var(--line);
  background: rgba(214, 173, 61, 0.14);
}

.signal-list div {
  padding: 1.3rem;
  background: rgba(8, 7, 5, 0.86);
}

.signal-list dt {
  margin-bottom: 0.35rem;
  color: #fff5de;
  font-family: var(--display);
  font-weight: 800;
}

.signal-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.testimonials-band {
  background:
    linear-gradient(180deg, rgba(214, 173, 61, 0.08), transparent 18rem),
    #080705;
}

.testimonials-header {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  gap: 3rem;
  align-items: end;
}

.testimonial-grid {
  display: grid;
  max-width: 1180px;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: rgba(214, 173, 61, 0.14);
  box-shadow: var(--shadow);
}

.testimonial-grid article {
  position: relative;
  min-height: 17rem;
  padding: 1.45rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 207, 93, 0.12), transparent 14rem),
    rgba(8, 7, 5, 0.92);
}

.testimonial-grid article.featured-testimonial {
  grid-column: span 2;
  min-height: 0;
  padding: clamp(1.45rem, 2.4vw, 2.4rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 207, 93, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(214, 173, 61, 0.13), transparent 58%),
    rgba(8, 7, 5, 0.94);
}

.testimonial-grid article::before {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 207, 93, 0.45);
  content: "FIELD NOTE";
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.testimonial-grid p {
  margin: 0 0 1rem;
  color: #efe4d2;
  font-size: 1rem;
}

.testimonial-grid span {
  display: block;
  margin-top: 1.35rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
}

.standard-band {
  background:
    linear-gradient(180deg, rgba(240, 120, 43, 0.08), transparent 18rem),
    #0c0906;
}

.standard-band h2 {
  max-width: 890px;
}

.standard-grid {
  display: grid;
  max-width: 1180px;
  margin-top: 3.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: rgba(214, 173, 61, 0.14);
}

.standard-grid article {
  min-height: 15rem;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 207, 93, 0.07), transparent 45%),
    rgba(8, 7, 5, 0.9);
}

.standard-grid b {
  display: block;
  margin-bottom: 1.2rem;
  color: #fff7df;
  font-family: var(--display);
  font-size: 1.04rem;
}

.follow-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 26%, rgba(255, 207, 93, 0.2), transparent 24rem),
    radial-gradient(circle at 86% 9%, rgba(240, 120, 43, 0.2), transparent 27rem),
    linear-gradient(90deg, rgba(122, 213, 255, 0.08), transparent 44%),
    #080705;
}

.follow-band::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background:
    linear-gradient(rgba(214, 173, 61, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 61, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 76%);
  pointer-events: none;
}

.follow-copy {
  position: relative;
  z-index: 1;
  max-width: 35rem;
}

.follow-copy h2 {
  max-width: 10ch;
}

.follow-copy p {
  color: #e8ddcb;
  font-size: 1.12rem;
}

.social-command-row {
  display: grid;
  margin-top: 1.45rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(214, 173, 61, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 207, 93, 0.1), transparent 42%),
    rgba(0, 0, 0, 0.24);
}

.social-command-row span {
  min-width: 0;
  padding: 0.72rem 0.8rem;
  border-right: 1px solid rgba(214, 173, 61, 0.18);
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-command-row span:last-child {
  border-right: 0;
}

.follow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.social-grid::after {
  position: absolute;
  inset: -1.4rem;
  z-index: -1;
  border: 1px solid rgba(214, 173, 61, 0.16);
  content: "";
  background:
    radial-gradient(circle at 26% 28%, rgba(255, 207, 93, 0.18), transparent 17rem),
    radial-gradient(circle at 82% 82%, rgba(122, 213, 255, 0.11), transparent 15rem),
    rgba(0, 0, 0, 0.12);
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.social-grid a {
  --platform-glow: rgba(255, 207, 93, 0.2);
  --platform-line: rgba(255, 207, 93, 0.34);
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 10.65rem;
  align-content: end;
  padding: 1.15rem;
  border: 1px solid var(--platform-line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--platform-glow), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(8, 7, 5, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.social-grid i {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  z-index: 1;
  display: inline-grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid var(--platform-line);
  border-radius: 999px;
  color: #fff4d4;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 32%),
    rgba(255, 207, 93, 0.1);
  box-shadow: 0 0 26px var(--platform-glow);
  font-family: var(--display);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.social-grid a::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(214, 173, 61, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 61, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.26;
  pointer-events: none;
}

.social-grid a > small::after {
  position: absolute;
  right: 0;
  bottom: -0.85rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--platform-line), transparent);
  opacity: 0.58;
  pointer-events: none;
}

.social-grid a:hover {
  border-color: rgba(255, 207, 93, 0.62);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 42px var(--platform-glow);
  transform: translateY(-4px);
}

.social-grid .social-feature {
  min-height: 22.15rem;
  grid-column: span 2;
  grid-row: span 2;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 207, 93, 0.22), transparent 40%),
    radial-gradient(circle at 82% 12%, rgba(122, 213, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 12% 100%, rgba(240, 120, 43, 0.18), transparent 15rem),
    rgba(9, 7, 4, 0.95);
}

.social-grid .social-feature::after {
  position: absolute;
  right: -3.5rem;
  top: -5.5rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 207, 93, 0.22);
  border-radius: 999px;
  content: "";
  background: radial-gradient(circle, rgba(255, 207, 93, 0.08), transparent 65%);
  box-shadow: inset 0 0 76px rgba(240, 120, 43, 0.16);
}

.social-grid .social-feature::before {
  opacity: 0.34;
  background:
    linear-gradient(rgba(214, 173, 61, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 61, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.social-grid .social-feature b::after {
  content: " ->";
  opacity: 0.8;
}

.social-grid .social-feature i {
  top: 1.3rem;
  right: 1.3rem;
  width: clamp(4.5rem, 8vw, 7.2rem);
  height: clamp(4.5rem, 8vw, 7.2rem);
  border-radius: 24px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.social-grid span,
.social-grid strong,
.social-grid small,
.social-grid b {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.social-grid span {
  position: absolute;
  top: 1.05rem;
  left: 1.1rem;
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
}

.social-grid strong {
  margin: 3.25rem 0 0.4rem;
  color: #fff7df;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.45vw, 1.34rem);
  overflow-wrap: break-word;
}

.social-grid .social-feature strong {
  max-width: 100%;
  margin-top: 4.5rem;
  font-size: clamp(2.45rem, 4.4vw, 3.85rem);
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: keep-all;
}

.social-grid small {
  position: relative;
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.social-grid b {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 1.2rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 207, 93, 0.36);
  border-radius: 999px;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.social-grid a[data-platform="YouTube"] { --platform-glow: rgba(255, 55, 55, 0.2); --platform-line: rgba(255, 111, 82, 0.42); }
.social-grid a[data-platform="Instagram"] { --platform-glow: rgba(255, 82, 171, 0.2); --platform-line: rgba(255, 160, 93, 0.42); }
.social-grid a[data-platform="TikTok"] { --platform-glow: rgba(122, 213, 255, 0.2); --platform-line: rgba(122, 213, 255, 0.42); }
.social-grid a[data-platform="X"] { --platform-glow: rgba(255, 255, 255, 0.12); --platform-line: rgba(238, 228, 208, 0.34); }
.social-grid a[data-platform="Facebook"] { --platform-glow: rgba(122, 160, 255, 0.18); --platform-line: rgba(122, 160, 255, 0.42); }
.social-grid a[data-platform="Reddit"] { --platform-glow: rgba(255, 112, 51, 0.2); --platform-line: rgba(255, 112, 51, 0.44); }

.contact-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(122, 213, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #0a0806, #070604);
}

.contact-panel {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(min(22rem, 100%), auto);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgba(214, 173, 61, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 207, 93, 0.08), transparent 42%),
    rgba(8, 7, 5, 0.88);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 13ch;
}

.contact-panel p {
  max-width: 48rem;
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
  min-width: min(22rem, 100%);
}

.terminal-band {
  padding-bottom: 8rem;
  background:
    linear-gradient(180deg, transparent, rgba(214, 173, 61, 0.07)),
    #070604;
}

.not-found-stage {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.terminal-shell {
  width: min(1180px, 100%);
  padding: 2rem;
  border: 1px solid rgba(214, 173, 61, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 207, 93, 0.08), transparent 44%),
    rgba(8, 7, 5, 0.9);
  box-shadow: var(--shadow);
}

.terminal-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4.5rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
}

.terminal-shell p {
  max-width: 52rem;
  margin-bottom: 2rem;
}

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

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

@media (max-width: 1500px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    padding-top: clamp(7rem, 12vh, 9rem);
    padding-bottom: 4rem;
  }

  .hero-content {
    width: min(900px, 100%);
  }

  h1 {
    font-size: clamp(2.7rem, 4.8vw, 4.75rem);
  }

  .hero-copy {
    line-height: 1.6;
  }

  .mission-readout {
    width: min(1180px, 100%);
    grid-column: 1;
    grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
    justify-self: stretch;
    align-self: start;
    margin-top: 3rem;
  }
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    border-radius: 18px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    padding-bottom: 5rem;
  }

  .mission-readout,
  .access-strip,
  .intro-grid,
  .proof-band,
  .live-grid,
  .follow-band,
  .testimonials-header,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .mission-readout {
    margin-top: 3rem;
    width: 100%;
    grid-column: 1;
    justify-self: stretch;
    grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  }

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

  .social-grid .social-feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    top: 10px;
    width: calc(100% - 20px);
    align-items: center;
    border-radius: 20px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
    padding-bottom: 4.5rem;
  }

  .orbital-map {
    right: -6rem;
    top: 12rem;
    width: 22rem;
    opacity: 0.58;
  }

  .mission-readout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    gap: 0.5rem;
  }

  nav {
    display: none;
  }

  .brand-lockup small,
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 7.6rem clamp(0.875rem, 4vw, 1.25rem) 3.5rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.18rem, 9.5vw, 2.45rem);
    line-height: 1.02;
    text-wrap: wrap;
  }

  h2 {
    font-size: 2.08rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1.04rem;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .follow-actions {
    display: grid;
  }

  .primary-action,
  .ghost-action {
    width: 100%;
  }

  .access-strip div,
  .mission-readout div {
    min-height: auto;
  }

  .section {
    padding: 5rem 1rem;
  }

  .flight-path {
    margin-top: 2.75rem;
  }

  .flight-path article,
  .standard-grid article,
  .testimonial-grid article {
    min-height: auto;
  }

  .testimonial-grid article.featured-testimonial {
    grid-column: 1 / -1;
  }

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

  .social-grid a {
    min-height: 9.75rem;
  }

  .social-grid .social-feature {
    min-height: 14rem;
    grid-column: 1 / -1;
  }

  .social-grid .social-feature strong {
    max-width: 100%;
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .social-grid .social-feature i {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 18px;
    font-size: 1.55rem;
  }

  .live-console {
    min-height: auto;
  }

  .proof-visual {
    min-height: 20rem;
  }

  .terminal-topline {
    display: grid;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 8px;
  }

  nav {
    display: none;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-lockup img {
    width: 38px;
    height: 38px;
  }

  .brand-lockup strong {
    font-size: 0.86rem;
  }

  .nav-cta {
    padding-inline: 0.9rem;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(1.98rem, 9vw, 2.28rem);
  }

  h2 {
    font-size: 1.86rem;
  }

  p {
    font-size: 0.98rem;
  }

  .orbital-map {
    display: none;
  }

  .proof-visual {
    min-height: 16.5rem;
  }

  .terminal-shell {
    padding: 1.25rem;
  }
}

@media (max-width: 520px) {
  .hero-content {
    width: min(100%, 22rem);
  }

  h1 span {
    display: block;
  }

  h1 {
    font-size: clamp(1.88rem, 8.4vw, 2.18rem);
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-inline: 0.875rem;
  }

  .hero-content {
    width: min(100%, 18.25rem);
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(1.78rem, 8.7vw, 2rem);
  }

  .hero-copy {
    font-size: 0.92rem;
    line-height: 1.56;
  }
}

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

  .hero-image,
  .orbital-map,
  .site-header,
  .proof-visual {
    transform: none !important;
  }
}
