@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/font-0.ttf) format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/font-1.ttf) format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/font-2.ttf) format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/font-3.ttf) format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/font-4.ttf) format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/font-5.ttf) format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/font-6.ttf) format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/font-7.ttf) format("truetype");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/font-8.ttf) format("truetype");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/font-9.ttf) format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #030d0a;
  --green: #05EA16;
  --gold: #E6CE00;
  --muted: #d5dcdb;
  --line: #05EA16;
  --body: "Barlow", Arial, sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  -webkit-user-select: none;
  user-select: none;
  margin: 0;
  background: var(--bg);
  color: #f2f1ed;
  font-family: var(--body);
  font-size: 1.38vw;
  line-height: 1.3;
}

input,
textarea {
  -webkit-user-select: text;
  user-select: text;
}

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.22vw;
  line-height: 1.12;
  letter-spacing: 0.05vw;
}

h3 {
  font-family: var(--condensed);
  font-size: 1.59vw;
  font-weight: 600;
  letter-spacing: 0.1vw;
  color: var(--gold);
}

p {
  color: var(--muted);
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.section {
  padding-left: 4.9%;
  padding-right: 4.9%;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 100%, #0a231933, transparent 60%),
    repeating-linear-gradient(128deg,
      transparent 0 75px,
      #34503a0b 76px,
      transparent 77px 151px);
}

.eyebrow {
  color: var(--green);
  font-family: var(--condensed);
  font-size: 1.1vw;
  font-weight: 600;
  letter-spacing: 0.24vw;
  line-height: 1.3;
}

.rule {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.rule:before {
  content: "";
  display: block;
  width: 6.5vw;
  height: 2px;
  background: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5vw;
  min-height: 3.1vw;
  padding: 0.45vw 2.4vw;
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 1.2vw;
  letter-spacing: 0.12vw;
  border-radius: 1.2vw;
}

.button span {
  font: 1.9vw Arial;
  color: var(--green);
  line-height: 0.7;
}

.outline {
  background: #03100bdd;
  border: 2px solid var(--green);
  box-shadow:
    inset 0 0 7px #74ff9133,
    0 0 12px #5eff7420;
}

.button:hover {
  background: #164526;
  box-shadow: 0 0 18px #05EA1666;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.hero {
  height: 42.38vw;
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 34% 69%, #1b512c66, transparent 18%),
    radial-gradient(ellipse at 44% 30%, #163424, transparent 48%),
    repeating-linear-gradient(26deg,
      transparent 0 44px,
      #164a2925 45px,
      transparent 46px 96px),
    #020c09;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  right: 0;
  top: 0;
  width: 58.02%;
}

.navigation {
  height: 5.4vw;
  position: relative;
  z-index: 3;
  padding: 1.05vw 4.6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.7vw;
  white-space: nowrap;
  font-family: Georgia, serif;
  font-size: 1.28vw;
  letter-spacing: 0.18vw;
}

.brand-mark {
  width: 3.5vw;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 3.2vw;
  font-size: 1.12vw;
  margin-right: auto;
  margin-left: auto;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  min-width: 16.2vw;
  font-size: 1.1vw;
}

.menu-toggle {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-left: 4.9%;
  width: 40.1%;
  padding-top: 1.5vw;
}

.hero-description {
  font-size: 1.52vw;
  line-height: 1.23;
  margin: 1.1vw 0 1.15vw;
}

.signup {
  display: flex;
  height: 3.55vw;
  border: 1px solid #48845c;
  border-radius: 0.6vw;
  overflow: hidden;
  background: #06110ed9;
  box-shadow: 0 0 18px #65ff7133;
}

.signup input {
  background: transparent;
  border: 0;
  width: 50%;
  min-width: 0;
  padding: 0 1.2vw;
  font-size: 1.2vw;
  color: #fff;
}

.signup input::placeholder {
  color: #bac1bf;
}

.signup button {
  width: 50%;
  border: 0;
  background: var(--green);
  color: #041409;
  font-family: var(--condensed);
  font-size: 1.25vw;
  font-weight: 700;
  letter-spacing: 0.04vw;
  padding: 0 0.7vw;
  white-space: nowrap;
}

.signup button span {
  margin-left: 0.8vw;
  font-family: Arial;
}

.signup button:hover {
  background: #a0ffb5;
}

.signup-note {
  font-size: 1.05vw;
  margin-top: 0.8vw;
  line-height: 1.2;
}

.signup-consent {
  margin-top: clamp(7px, 0.6vw, 10px);
  color: #aebbb6;
  font-size: clamp(10px, 0.76vw, 12px);
  line-height: 1.4;
}

.signup-consent a {
  color: #d9f4df;
  text-decoration: underline;
  text-decoration-color: #2dee0a99;
  text-underline-offset: 2px;
}

.signup-consent a:hover,
.signup-consent a:focus-visible {
  color: var(--green);
}

.trailer-hit {
  position: absolute;
  left: 49%;
  top: 37%;
  width: 35.3%;
  height: 56.8%;
  border: 2px solid transparent;
  border-radius: 0.7vw;
  background: transparent;
  z-index: 2;
}

.trailer-hit:hover {
  border-color: var(--green);
  box-shadow: 0 0 24px #57ff8544;
}

.pillars {
  height: 8.5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1.2fr;
  align-items: center;
  padding: 1.3vw 4.8%;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #07150f, #020806, #06130f);
}

.pillar {
  display: flex;
  align-items: center;
  gap: 2vw;
  border-right: 1px solid #355c47;
  margin-right: 2.4vw;
  min-height: 4.8vw;
}

.pillar h2 {
  font-family: var(--condensed);
  font-size: 1.38vw;
  letter-spacing: 0.15vw;
  font-weight: 600;
}

.pillar p {
  font-size: 1.25vw;
  margin-top: 0.45vw;
}

.circle-icon {
  display: grid;
  place-items: center;
  width: 5vw;
  height: 5vw;
  flex-shrink: 0;
  color: var(--green);
  border: 1.7px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 15px #72ff8b13;
}

.circle-icon svg {
  width: 3vw;
  height: 3vw;
}

.dollar {
  font: 600 3.6vw var(--body);
}

.pillars blockquote {
  text-align: center;
  font-size: 1.12vw;
  font-style: italic;
  letter-spacing: 0.09vw;
  color: #e7e1c3;
  border-left: 1px solid #355c47;
  padding-left: 1.4vw;
}

.pillars cite {
  display: block;
  font-size: 0.8vw;
  letter-spacing: 0.2vw;
  font-style: normal;
  color: #4Af1f2;
  margin-top: 0.6vw;
}

.story {
  height: 18.28vw;
  padding-top: 1.4vw;
  background: radial-gradient(ellipse at 37% 100%, #103a25, #030c09 70%);
}

.story-art {
  position: absolute;
  right: 0;
  top: 0;
  width: 52.07%;
  height: 100%;
}

.story-copy {
  position: relative;
  z-index: 1;
}

.story h2 {
  margin: 0.25vw 0 0.5vw;
}

.story-copy>p:not(.eyebrow) {
  font-size: 1.43vw;
  line-height: 1.27;
}

.story-tag {
  display: flex;
  gap: 1.2vw;
  align-items: center;
  margin-top: 1.7vw;
  font-size: 1.22vw;
}

.story-tag span {
  width: 3.3vw;
  height: 3px;
  background: var(--green);
}

.gameplay {
  height: 25.82vw;
  padding-top: 1.4vw;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5vw;
  margin: 0.3vw 0 0.85vw;
}

.section-heading>p {
  text-align: right;
  font-family: var(--condensed);
  font-size: 1.08vw;
  letter-spacing: 0.14vw;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.05vw;
  margin: 0 -1vw;
}

.game-card {
  text-align: center;
  height: 16.7vw;
  border: 1px solid #426d4b;
  border-radius: 0.65vw;
  padding: 1.35vw 0.4vw 0.8vw;
  background:
    radial-gradient(ellipse at 50% 45%, #10271a66, transparent 70%),
    repeating-linear-gradient(52deg,
      transparent 0 29px,
      #42704712 30px,
      transparent 31px 63px);
}

.game-card p {
  font-size: 1.25vw;
  line-height: 1.28;
  margin-top: 0.35vw;
}

.feature-icon {
  width: 4.4vw;
  height: 4.4vw;
  color: var(--green);
  margin: 0 auto 1.05vw;
  display: block;
  filter: drop-shadow(0 0 8px #51ff7733);
}

.gold {
  color: var(--gold);
}

.tracker {
  height: 4.4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 1.05vw;
  font-family: var(--condensed);
  color: var(--gold);
}

.tracker span {
  border: 1px solid #aa872d;
  border-radius: 50%;
  width: 2.05vw;
  height: 2.2vw;
  display: grid;
  place-items: center;
}

.tracker .active {
  width: 4vw;
  height: 4vw;
  color: var(--green);
  border: 2px solid var(--green);
  font-size: 2.6vw;
  box-shadow:
    0 0 8px #63ff8a80,
    inset 0 0 9px #63ff8a55;
}

.locations {
  height: 28.05vw;
  padding-top: 1.3vw;
}

.locations .rule:before {
  width: 2vw;
}

.locations .eyebrow {
  font-size: 1vw;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8vw;
  margin: 0 -1vw;
}

.location-card {
  min-width: 0;
  border: 1px solid #987d3a;
  border-radius: 0.6vw;
  overflow: hidden;
  position: relative;
  background: #08150f;
}

.location-image {
  width: 100%;
}

.location-card h3 {
  font-size: 1.44vw;
  text-align: center;
  white-space: nowrap;
  padding: 0.25vw 0.15vw 0.35vw;
  border-bottom: 1px solid #746334;
  background: #041009;
}

.location-copy {
  padding: 0.55vw 0.8vw 1.4vw;
  min-height: 6vw;
  font-size: 1.12vw;
  line-height: 1.25;
}

.location-card button {
  position: absolute;
  bottom: 0.7vw;
  right: 0.65vw;
  width: 2vw;
  height: 2vw;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  background: #04100a;
  font-size: 1.5vw;
  line-height: 1;
  padding: 0;
}

.location-card button:hover {
  background: #4e4825;
}

.titan {
  height: 20.19vw;
  display: flex;
  align-items: center;
  gap: 2.3vw;
  padding-left: 29.5%;
  padding-right: 2%;
  background:
    radial-gradient(ellipse at 80% 35%, #17332266, transparent 50%), #04100b;
}

.dossier-art {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}

.titan-copy {
  flex: 1;
  position: relative;
}

.titan-copy .rule:before {
  width: 2vw;
}

.titan h2 {
  font-size: 2.9vw;
  margin: 0.35vw 0 0.8vw;
}

.titan-copy>p:not(.eyebrow) {
  font-size: 1.33vw;
  line-height: 1.25;
}

.titan .button {
  margin-top: 1.05vw;
  padding: 0.35vw 2.4vw;
  min-height: 3.1vw;
}

.titan blockquote {
  border-left: 2px solid var(--green);
  padding-left: 1.2vw;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.55vw;
  line-height: 1.3;
  flex-shrink: 0;
}

.game-info {
  height: 9.88vw;
  display: flex;
  align-items: center;
  padding-right: 0;
}

.info-main {
  width: 58%;
  padding-right: 3vw;
}

.info-main>.eyebrow {
  position: relative;
}

.info-main>.eyebrow:after {
  content: "";
  position: absolute;
  left: 7.8vw;
  right: 0;
  top: 50%;
  height: 1px;
  background: #365744;
}

.info-items {
  display: flex;
  justify-content: space-between;
  gap: 1.1vw;
  margin-top: 1vw;
}

.info-items>div {
  display: flex;
  align-items: center;
  gap: 1.2vw;
  border-right: 1px solid #274936;
  padding-right: 1.4vw;
}

.info-items>div:last-child {
  border: 0;
  padding-right: 0;
}

.info-items strong {
  font: 600 1.13vw/1.3 var(--condensed);
  letter-spacing: 0.12vw;
  white-space: nowrap;
}

.info-icon {
  font-size: 3.5vw;
  color: #f8e5ad;
  width: 3.5vw;
  height: 3.5vw;
  line-height: 1;
  letter-spacing: -1.5vw;
}

.info-art {
  position: absolute;
  right: 0;
  top: 0;
  width: 39.64%;
  height: 100%;
}

.faq {
  min-height: 15.3vw;
  padding-top: 1.9vw;
  padding-bottom: 2.3vw;
}

.faq .section-heading {
  margin: 0 0.6vw 1.2vw;
}

.faq h2 {
  font-size: 2.1vw;
}

.text-button {
  font-size: 1.15vw;
  border: 0;
  background: none;
  color: var(--green);
  padding: 0;
}

.text-button span {
  padding-left: 0.5vw;
  font-size: 1.8vw;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5vw 1.8vw;
}

.faq details {
  border: 1px solid #365d56;
  border-radius: 0.5vw;
  background: #06151280;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9vw 1.65vw;
  font-size: 1.22vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq summary:after {
  content: "+";
  font-size: 1.8vw;
  line-height: 0.6;
  font-weight: 400;
}

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

.faq details[open] summary {
  color: var(--green);
}

.faq details p {
  padding: 0 1.65vw 1.1vw;
  font-size: 1.25vw;
}

.footer {
  min-height: 11.25vw;
  display: flex;
  align-items: flex-start;
  padding-top: 1.95vw;
  gap: 2.2vw;
  border: 0;
  background: linear-gradient(105deg, #050d0a, #010806);
}

.footer-brand {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 1.4vw;
  letter-spacing: 0.17vw;
  margin-right: auto;
}

.footer-brand .brand-mark {
  width: 4.95vw;
}

.footer-brand small {
  display: block;
  font-size: 1.05vw;
  letter-spacing: 0.2vw;
  color: var(--green);
}

.footer-links {
  display: flex;
  gap: 2.8vw;
  padding-top: 1.8vw;
}

.footer button {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--condensed);
  font-size: 1.2vw;
}

.social-links {
  display: flex;
  gap: 1.8vw;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0.5vw 2.2vw;
  margin-top: 1vw;
}

.social-links button {
  font-family: Arial;
  font-size: 2vw;
}

.site-link {
  font-size: 1.2vw;
  color: var(--green);
  padding-top: 1.8vw;
}

.copyright-bar {
  margin: 0;
  padding: 0.8vw 4.85%;
  border-top: 1px solid #05EA16;
  background: #010806;
  color: #91a399;
  text-align: center;
  font-size: clamp(10px, 0.82vw, 13px);
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 10px;
  z-index: 20;
  background: var(--green);
  color: #001b08;
  padding: 12px;
}

.skip-link:focus {
  top: 10px;
}

@media (min-width: 1600px) {
  body {
    font-size: 22px;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 16px;
  }

  .section {
    padding-left: 6%;
    padding-right: 6%;
  }

  h2 {
    font-size: 29px;
    letter-spacing: 0.2px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .rule {
    gap: 10px;
  }

  .rule:before {
    width: 36px;
  }

  .hero {
    height: auto;
    min-height: 760px;
    padding-bottom: 300px;
  }

  .navigation {
    height: 76px;
    padding: 16px 6%;
    gap: 12px;
  }

  .brand {
    font-size: 11px;
    gap: 10px;
    letter-spacing: 1.2px;
  }

  .brand-mark {
    width: 34px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    background: #06180e;
    border: 1px solid var(--line);
    color: var(--green);
    border-radius: 5px;
    font-size: 24px;
    width: 40px;
    height: 38px;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 6%;
    right: 6%;
    top: 68px;
    background: #061b10f5;
    padding: 22px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 30px #0009;
    gap: 24px;
    font-size: 16px;
  }

  .nav-links.open {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-copy {
    margin: 12px 6% 0;
    width: 88%;
    padding: 0;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.35;
    margin: 18px 0;
  }

  .signup {
    height: 46px;
    border-radius: 6px;
  }

  .signup input {
    font-size: 13px;
    padding: 0 12px;
    width: 47%;
  }

  .signup button {
    font-size: 13px;
    padding: 0 8px;
    width: 53%;
  }

  .signup button span {
    margin-left: 4px;
  }

  .signup-note {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 10px;
  }

  .hero-art {
    width: 100%;
    top: auto;
    bottom: 0;
    aspect-ratio: 546/300;
  }

  .trailer-hit {
    left: 12%;
    top: auto;
    bottom: 4%;
    width: 61%;
    height: 24%;
    border-radius: 8px;
  }

  .pillars {
    height: auto;
    padding: 22px 6%;
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .pillar {
    min-height: 52px;
    margin: 0;
    border: 0;
    gap: 20px;
  }

  .circle-icon {
    width: 48px;
    height: 48px;
  }

  .circle-icon svg {
    width: 29px;
    height: 29px;
  }

  .dollar {
    font-size: 34px;
  }

  .pillar h2 {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .pillar p {
    font-size: 14px;
    margin-top: 4px;
  }

  .pillars blockquote {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 19px 0 0;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .pillars cite {
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 9px;
  }

  .story {
    height: auto;
    min-height: 420px;
    padding-top: 26px;
    padding-bottom: 190px;
  }

  .story h2 {
    font-size: 28px;
    margin: 7px 0 12px;
  }

  .story-copy>p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.45;
  }

  .story-copy br {
    display: none;
  }

  .story-tag {
    font-size: 11px;
    margin-top: 18px;
    gap: 10px;
  }

  .story-tag span {
    width: 25px;
    flex-shrink: 0;
  }

  .story-art {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 490/170;
  }

  .gameplay,
  .locations {
    height: auto;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 20px;
  }

  .section-heading>p {
    font-size: 11px;
    letter-spacing: 1.1px;
    text-align: left;
  }

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

  .game-card {
    height: auto;
    min-height: 205px;
    border-radius: 7px;
    padding: 18px 7px;
  }

  .game-card:last-child {
    grid-column: 1/-1;
    min-height: 180px;
  }

  .game-card h3 {
    font-size: 17px;
    letter-spacing: 0.8px;
  }

  .game-card p {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.4;
  }

  .game-card br {
    display: none;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .tracker {
    height: 46px;
    gap: 4px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .tracker span {
    width: 19px;
    height: 21px;
  }

  .tracker .active {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }

  .locations .eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .locations .rule:before {
    width: 18px;
  }

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

  .location-card {
    border-radius: 6px;
  }

  .location-card h3 {
    font-size: 16px;
    padding: 6px 2px;
  }

  .location-copy {
    font-size: 13px;
    padding: 10px 10px 35px;
    min-height: 92px;
  }

  .location-card button {
    width: 25px;
    height: 25px;
    font-size: 20px;
    bottom: 8px;
    right: 8px;
  }

  .titan {
    height: auto;
    display: block;
    padding: 240px 6% 30px;
  }

  .dossier-art {
    width: 100%;
    height: 215px;
    aspect-ratio: 353/188;
  }

  .titan-copy .rule:before {
    width: 20px;
  }

  .titan h2 {
    font-size: 30px;
    margin: 8px 0 13px;
  }

  .titan-copy>p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.4;
  }

  .desktop-break {
    display: none;
  }

  .button,
  .titan .button {
    font-size: 13px;
    letter-spacing: 1px;
    min-height: 40px;
    border-radius: 12px;
    padding: 8px 24px;
    gap: 18px;
  }

  .button span {
    font-size: 20px;
  }

  .titan .button {
    margin-top: 20px;
  }

  .titan blockquote {
    font-size: 19px;
    padding-left: 15px;
    margin-top: 26px;
  }

  .game-info {
    height: auto;
    min-height: 255px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: block;
  }

  .info-main {
    width: 100%;
    padding: 0;
  }

  .info-main>.eyebrow:after {
    left: 90px;
  }

  .info-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
    margin-top: 24px;
  }

  .info-items>div {
    gap: 14px;
    padding: 0;
    border: 0;
  }

  .info-items strong {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .info-icon {
    font-size: 38px;
    width: 38px;
    height: 38px;
    letter-spacing: -15px;
  }

  .info-art {
    display: none;
  }

  .faq {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .faq .section-heading {
    margin: 0 0 18px;
    gap: 12px;
  }

  .faq h2 {
    font-size: 24px;
  }

  .text-button {
    font-size: 13px;
  }

  .text-button span {
    font-size: 18px;
    padding-left: 7px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .faq details {
    border-radius: 5px;
  }

  .faq summary {
    font-size: 14px;
    padding: 14px;
  }

  .faq summary:after {
    font-size: 22px;
  }

  .faq details p {
    font-size: 14px;
    padding: 0 14px 16px;
  }

  .footer {
    padding-top: 25px;
    padding-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    min-height: 0;
  }

  .footer-brand {
    width: 100%;
    font-size: 15px;
    letter-spacing: 1.4px;
    gap: 14px;
  }

  .footer-brand .brand-mark {
    width: 48px;
  }

  .footer-brand small {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .footer-links {
    gap: 24px;
    padding: 0;
  }

  .footer button {
    font-size: 14px;
  }

  .social-links {
    gap: 18px;
    margin: 0;
    padding: 0 18px;
  }

  .social-links button {
    font-size: 21px;
  }

  .site-link {
    padding: 0;
    font-size: 14px;
  }

  .copyright-bar {
    padding: 14px 6%;
    font-size: 11px;
  }
}

.hero-art {
  clip-path: inset(5.4vw 0 0 0);
}

@media (min-width: 651px) {
  .story h2 {
    font-size: 3.05vw;
  }

  .gameplay h2,
  .locations h2 {
    font-size: 3.1vw;
  }

  .titan-copy {
    min-width: 0;
  }

  .titan-copy>p:not(.eyebrow) {
    font-size: 1.3vw;
  }

  .desktop-break {
    display: none;
  }

  .titan blockquote {
    font-size: 1.5vw;
  }

  .location-copy {
    min-height: 5.15vw;
    padding-bottom: 1.1vw;
  }

  .location-card h3 {
    font-size: 1.36vw;
  }
}

@media (max-width: 650px) {
  .hero-art {
    aspect-ratio: 491/330;
    clip-path: none;
  }

  .trailer-hit {
    left: 3%;
    bottom: 3%;
    width: 67%;
    height: 23%;
  }

  .dossier-art {
    height: auto;
    aspect-ratio: 353/188;
  }
}

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

  * {
    transition: none !important;
  }
}

/* Original standalone art. All page lettering and controls are HTML/SVG. */
.hero {
  background: #030d09;
}

.hero-art {
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  clip-path: none;
  background:
    linear-gradient(90deg, #010b07b3, transparent 66%),
    url("assets/hero.png") center 48% / cover no-repeat;
}

.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #03120cc9, transparent 30%);
}

.brand-mark {
  height: 3.5vw;
  color: #eee;
  stroke-width: 1.7;
}

.navigation {
  background: linear-gradient(#01080688, transparent);
}

.hero-kicker {
  font-size: 1.09vw;
  letter-spacing: 0.26vw;
  margin: 0 0 0.7vw;
}

.game-title {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.02vw;
  filter: drop-shadow(1px 3px 1px #000b);
  white-space: nowrap;
}

.game-title>span {
  display: block;
  font-size: 5.52vw;
  width: max-content;
  color: #e6e2cf;
  background: repeating-radial-gradient(ellipse at 12% 30%,
      #706f5b 0 0.3px,
      #ebe7d8 0.8px 2px,
      #d2cfb9 3px 4px);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-title>span+span {
  font-size: 6.77vw;
}

.game-title em {
  font-style: normal;
  background: repeating-radial-gradient(ellipse at 70% 60%,
      #05EA16 0 0.5px,
      #05EA16 0.8px 2px,
      #05EA16 3px 4px);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font:
    700 3.1vw/1.05 "Caveat",
    cursive;
  color: #E6CE00;
  white-space: nowrap;
  margin-top: 0.25vw;
}

.hero-description {
  margin-top: 1.5vw;
}

.evidence-note {
  position: absolute;
  z-index: 1;
  font:
    700 1.8vw/0.98 "Caveat",
    cursive;
  color: #151a0d;
  padding: 1.4vw 0.9vw 1.1vw;
  background: linear-gradient(120deg, #cbbd88, #ae9f69);
  box-shadow: 2px 5px 15px #0009;
  transform: rotate(5deg);
}

.evidence-note:before {
  content: "";
  position: absolute;
  top: -0.4vw;
  left: 55%;
  width: 0.8vw;
  height: 0.8vw;
  border-radius: 50%;
  background: #681b10;
  box-shadow: 1px 3px 3px #000;
}

.note-top {
  right: 4.5%;
  top: 17%;
  width: 12%;
}

.note-bottom {
  right: 3.3%;
  top: 59%;
  width: 10.5%;
  background: linear-gradient(130deg, #7c9761, #4e7040);
  transform: rotate(-7deg);
  font-size: 1.9vw;
}

.trailer-hit {
  left: 49%;
  top: 37%;
  width: 35.3%;
  height: 56.8%;
  border: 1px solid #92ae70;
  border-radius: 0.65vw;
  background:
    linear-gradient(#0002, #0001),
    url("assets/money.png") center/cover;
  box-shadow:
    0 0 0 0.5vw #020b08b3,
    inset 0 0 0 0.55vw #00110880;
  padding: 0;
}

.play-icon {
  position: absolute;
  left: 39%;
  top: 34%;
  width: 7.3vw;
  height: 7.3vw;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 0.4vw;
  font-size: 3.6vw;
  color: var(--green);
  background: #032515d9;
  box-shadow: 0 0 13px #70ff8599;
}

.poster-note {
  position: absolute;
  right: 5%;
  top: 27%;
  width: 33%;
  padding: 1.1vw 0.4vw;
  background: linear-gradient(120deg, #cbbd88, #d0c496);
  color: #12180f;
  font:
    700 1.7vw/1 "Caveat",
    cursive;
  transform: rotate(-4deg);
  box-shadow: 1px 2px 5px #0009;
}

.trailer-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5vw;
  background: #030806e8;
  border-top: 1px solid #586647;
  font: 500 1.04vw var(--condensed);
  letter-spacing: 0.15vw;
}

.story {
  background:
    linear-gradient(90deg, #020b08f5 12%, #05190ecc 55%, #07100a88),
    url("assets/money.png") center 58% / cover;
}

.story-art {
  right: 0;
  top: 0;
  width: 51%;
  height: 100%;
  background: none;
  overflow: hidden;
}

.phone {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 53%;
  height: 150%;
  padding: 1.5vw 1.4vw;
  background: linear-gradient(140deg, #083432, #082420 42%, #193d39);
  border: 0.8vw solid #010806;
  border-radius: 3vw;
  box-shadow:
    0 0 0 0.25vw #63817a,
    0 0 0 0.6vw #02150f,
    1vw 1vw 2vw #000a;
  transform: rotate(-15deg);
}

.phone-notch {
  position: absolute;
  left: 25%;
  top: 0;
  width: 50%;
  height: 1.1vw;
  border-radius: 0 0 1vw 1vw;
  background: #010806;
}

.phone>small {
  color: #aad1d1;
  font: 600 0.9vw var(--body);
}

.phone-time {
  text-align: center;
  color: #cde4e2;
  font: 300 3.5vw var(--body);
  margin-top: 0.8vw;
}

.phone-date {
  text-align: center;
  font-size: 1.2vw;
  color: #c8e0de;
}

.notification {
  display: flex;
  align-items: center;
  gap: 0.65vw;
  margin-top: 1.1vw;
  background: #bbd7d5df;
  border-radius: 0.7vw;
  padding: 0.8vw;
  color: #071e23;
  font-size: 1.05vw;
  line-height: 1.25;
}

.notification>div {
  flex: 1;
}

.notification strong {
  display: block;
  font-size: 1.6vw;
  font-weight: 600;
}

.notification small {
  float: right;
  font-size: 0.85vw;
}

.notification>div>span {
  font-size: 1vw;
}

.bank-badge {
  padding: 0.3vw;
  background: #e4edee;
  border-radius: 0.4vw;
  font-size: 1.8vw;
}

.transaction-note {
  position: absolute;
  right: 6%;
  top: 34%;
  color: #ddd6ab;
  font: 500 1.25vw/1.35 var(--condensed);
  letter-spacing: 0.13vw;
}

.gameplay,
.locations,
.faq {
  background-image:
    linear-gradient(100deg, #030d0afa, #020e08f4), url("assets/hero.png");
  background-size: cover;
}

.location-image {
  position: relative;
  overflow: hidden;
}

.location-image>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.77); */
}

.location-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, #031008dd);
}

.location-badge {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0.3vw;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 2.5vw;
  height: 2.5vw;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #dcdf9a;
  background: #051008dd;
  font: 500 1.9vw var(--condensed);
  box-shadow: 0 0 0 0.25vw #0a170e99;
}

.location-badge svg {
  width: 1.6vw;
  height: 1.6vw;
  color: var(--gold);
}

.titan {
  background:
    linear-gradient(90deg, #03100b, #03100bf0),
    url("assets/hero.png") center/cover;
}

.dossier-art {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
}

.dossier-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 25% 50%;
  mask-image: linear-gradient(90deg, #000 85%, transparent);
}

.info-art {
  position: absolute;
  right: 0;
  top: 0;
  width: 39.64%;
  height: 100%;
  background:
    linear-gradient(90deg, #030d0a88, #030d0a22),
    url("assets/hero.png") 55% 50% / cover;
  border-left: 1px solid #4f8156;
}

.info-art p {
  font:
    600 1.8vw/0.95 "Caveat",
    cursive;
  transform: rotate(-7deg);
  color: #c2c2a4;
  position: absolute;
  left: 8%;
  bottom: 10%;
}

.info-icon {
  stroke-width: 2.5;
  letter-spacing: normal;
}

.footer-brand .brand-mark {
  height: 4.95vw;
}

.social-icon {
  display: block;
  width: 2vw;
  height: 2vw;
}

.footer {
  background:
    linear-gradient(90deg, #030d0bf7, #010806f5),
    url("assets/hero.png") bottom/cover;
}

@media (max-width: 650px) {

  .h3-updated-mobile {
    font-size: 20px;
  }
  .hero {
    padding-bottom: 300px;
    min-height: 0;
  }

  .hero-art {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    background-position: 47% 30%;
  }

  .hero-art:after {
    background: linear-gradient(0deg, #03120c88, #02100955);
  }

  .brand-mark {
    height: 34px;
  }

  .footer-brand .brand-mark {
    height: 48px;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    margin: 0 0 12px;
  }

  .game-title>span {
    font-size: clamp(42px, 12.5vw, 72px);
  }

  .game-title>span+span {
    font-size: clamp(50px, 15.3vw, 89px);
  }

  .hero-tagline {
    font-size: clamp(25px, 7.4vw, 43px);
    margin-top: 5px;
  }

  .hero-description {
    margin-top: 22px;
  }

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

  .evidence-note {
    display: none;
  }

  .trailer-hit {
    left: 6%;
    bottom: 24px;
    top: auto;
    width: 88%;
    height: 230px;
    border-radius: 7px;
    box-shadow: 0 0 0 5px #020b08aa;
  }

  .play-icon {
    width: 70px;
    height: 70px;
    font-size: 34px;
    left: 37%;
    top: 34%;
    padding-left: 5px;
  }

  .poster-note {
    font-size: 21px;
    padding: 15px 6px;
    top: 25%;
    right: 5%;
    width: 34%;
  }

  .trailer-controls {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 0 15px;
    height: 34px;
  }

  .story {
    padding-bottom: 215px;
  }

  .story-art {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 190px;
    aspect-ratio: auto;
  }

  .phone {
    left: 16%;
    top: 15%;
    width: 52%;
    height: 160%;
    padding: 17px 13px;
    border: 7px solid #010806;
    border-radius: 28px;
    box-shadow:
      0 0 0 2px #63817a,
      0 0 0 5px #02150f,
      10px 10px 20px #000a;
  }

  .phone-notch {
    height: 9px;
    border-radius: 0 0 8px 8px;
  }

  .phone>small {
    font-size: 9px;
  }

  .phone-time {
    font-size: 34px;
    margin-top: 9px;
  }

  .phone-date {
    font-size: 11px;
  }

  .notification {
    margin-top: 12px;
    border-radius: 7px;
    padding: 8px;
    gap: 6px;
    font-size: 10px;
  }

  .notification strong {
    font-size: 16px;
  }

  .notification small {
    font-size: 8px;
  }

  .notification>div>span {
    font-size: 9px;
  }

  .bank-badge {
    font-size: 17px;
    padding: 3px;
    border-radius: 4px;
  }

  .transaction-note {
    font-size: 12px;
    right: 4%;
    top: 33%;
    letter-spacing: 1px;
  }

  .location-badge {
    width: 29px;
    height: 29px;
    font-size: 21px;
    bottom: 4px;
    box-shadow: 0 0 0 3px #0a170e99;
  }

  .location-badge svg {
    width: 19px;
    height: 19px;
  }

  .dossier-art {
    height: 220px;
    width: 100%;
    aspect-ratio: auto;
  }

  .dossier-art img {
    mask-image: linear-gradient(#000 80%, transparent);
    object-position: 25% 45%;
  }

  .social-icon {
    width: 23px;
    height: 23px;
  }
}

.game-title>span {
  transform: scaleX(1.14);
  transform-origin: left;
  background:
    radial-gradient(circle, #554f3844 0.55px, transparent 0.8px) 0 0 / 3px 4px,
    linear-gradient(#eee8d3, #d5d0b9);
  background-clip: text;
  -webkit-background-clip: text;
}

.game-title em {
  background:
    radial-gradient(circle, #05EA16 0.55px, transparent 0.8px) 0 0 / 3px 4px,
    linear-gradient(#05EA16, #05EA16);
  background-clip: text;
  -webkit-background-clip: text;
}

@media (max-width: 650px) {
  .game-title>span {
    transform: scaleX(1.03);
  }
}

/* Requested spacing, alignment and motion; original palette and layout retained. */
.section,
.pillars {
  height: auto;
  padding-top: clamp(28px, 3.4vw, 64px);
  padding-bottom: clamp(28px, 3.4vw, 64px);
}

.gameplay .game-card {
  height: auto;
  min-height: 16.7vw;
}

.titan {
  min-height: 24vw;
}

.faq {
  min-height: 0;
}

.faq .section-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

.faq-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.faq-grid ul li , .faq-grid ol li {
    font-size: 16px;
    line-height: 24px;
}



.faq-grid ul {
    margin-top:0px;
}

.faq-grid .platform-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 1.65vw 1.1vw;
  list-style: none;
}

.platform-list li {
  min-width: 0;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 6px;
  border: 1px solid #315247;
  border-radius: 7px;
  background: #07181299;
  color: #dce6df;
  text-align: center;
}

.platform-list svg {
  width: 28px;
  height: 28px;
  color: #79d98d;
  opacity: 0.82;
  stroke-width: 1.5;
}

.platform-list strong {
  font: 500 clamp(11px, 1vw, 14px)/1.15 var(--condensed);
  letter-spacing: 0.04em;
}

@media (max-width: 650px) {
  .faq-grid .platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 14px 16px;
  }
}

.faq summary {
  min-height: 48px;
  font-size: clamp(14px, 1.22vw, 18px);
}

.faq details p {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.6;
}

.location-copy {
  padding-bottom: clamp(38px, 3.3vw, 54px);
  min-height: 8vw;
}

.location-arrow {
  position: absolute;
  right: 0.75vw;
  bottom: 0.8vw;
  width: clamp(26px, 2.3vw, 36px);
  height: clamp(26px, 2.3vw, 36px);
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: #04100a;
}

.location-arrow svg {
  width: 58%;
  height: 58%;
  stroke-width: 1.6;
}

.location-arrow:hover {
  background: #39381c;
  transform: translateX(2px);
}

.footer-links a {
  font: 400 1.2vw var(--condensed);
}

.social-links a {
  font: 400 2vw Arial;
  display: flex;
  align-items: center;
}

.signup button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.signup-note.error {
  color: #ffcdb7;
}

a,
button,
.game-card,
.location-card,
.faq details {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.25s ease;
}

.game-card:hover,
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0008;
  border-color: #80b776;
}

.location-image img {
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.045);
  filter: brightness(0.9);
}

.location-card:nth-child(-n + 3) .location-image img {
  filter: brightness(1.3) contrast(1.16) saturate(1.08);
}

.location-card:nth-child(-n + 3):hover .location-image img {
  filter: brightness(1.38) contrast(1.18) saturate(1.12);
}

.location-card:nth-child(n + 4) .location-image img {
  filter: brightness(1.15) contrast(1.08) saturate(0.92);
}

.location-card:nth-child(n + 4):hover .location-image img {
  filter: brightness(1.21) contrast(1.1) saturate(0.96);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease var(--reveal-delay, 0ms),
    transform 0.6s ease var(--reveal-delay, 0ms);
}

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

.faq details[open] p {
  animation: answer-in 0.24s ease-out;
}

@keyframes answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-page {
  background:
    linear-gradient(#030d0bef, #030d0bef),
    url("assets/hero.png") center top/cover fixed;
  font-size: 16px;
  line-height: 1.65;
}

.legal-header {
  border-bottom: 1px solid var(--line);
}

.legal-main {
  width: min(880px, 88%);
  margin: auto;
  padding: 60px 0 72px;
}

.legal-back {
  display: inline-block;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-main>.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
}

.legal-main h1 {
  font:
    700 clamp(30px, 4vw, 48px)/1.15 Georgia,
    serif;
  letter-spacing: 1px;
  margin: 10px 0 16px;
}

.legal-placeholder {
  color: #aabbb0;
  font-size: 14px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-document section {
  margin-top: 36px;
}

.legal-document h2 {
  font: 600 23px var(--condensed);
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}

.legal-document p+p {
  margin-top: 14px;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-page .legal-main {
  flex: 1;
}

.contact-document {
  font-style: normal;
}

.contact-document section {
  max-width: 720px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid #365d56;
  border-left: 3px solid var(--green);
  border-radius: 8px;
  background: #061512d9;
  box-shadow: 0 18px 38px #0006, inset 0 0 24px #3cff740d;
}

.contact-document p {
  font-size: clamp(15px, 1.1vw, 18px);
}

.contact-document .contact-link {
  color: var(--green);
  border-bottom: 1px solid #05EA1666;
}

.contact-document .contact-link:hover,
.contact-document .contact-link:focus-visible {
  color: #f2eee1;
  border-bottom-color: #f2eee1;
}

@media (max-width: 650px) {

  .section,
  .pillars {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .story {
    padding-bottom: 240px;
  }

  .titan {
    padding-top: 250px;
    min-height: 0;
  }

  .location-copy {
    padding-bottom: 43px;
    min-height: 115px;
  }

  .location-arrow {
    right: 10px;
    bottom: 10px;
    width: 28px;
    height: 28px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .social-links a {
    font-size: 21px;
  }

  .legal-main {
    padding: 36px 0 48px;
  }

  .legal-back {
    margin-bottom: 28px;
  }
}

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

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
