:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0c1830;
  --panel: rgba(15, 29, 54, 0.72);
  --panel-strong: rgba(19, 35, 64, 0.9);
  --line: rgba(174, 200, 255, 0.18);
  --text: #eef5ff;
  --muted: #afbdd3;
  --soft: #d7e7ff;
  --blue: #67a8ff;
  --cyan: #6fe5dd;
  --violet: #aa8cff;
  --rose: #f0a7c7;
  --gold: #ffd37a;
  --green: #75e0a7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 16% 18%, rgba(84, 121, 255, 0.26), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(107, 229, 221, 0.16), transparent 28%),
    radial-gradient(circle at 68% 78%, rgba(240, 167, 199, 0.12), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-2) 52%, #120d24);
  background-attachment: fixed;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 78%);
}

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

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

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(103, 168, 255, 0.9), rgba(170, 140, 255, 0.82) 58%, rgba(111, 229, 221, 0.7));
  box-shadow: 0 12px 30px rgba(80, 114, 220, 0.3);
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}

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

.site-nav a {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--soft);
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
}

.hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 34px;
  min-height: min(690px, calc(100vh - 128px));
  padding: 56px 0 34px;
}

.hero-content,
.product-copy {
  position: relative;
  z-index: 1;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
}

h1 span {
  color: var(--soft);
  font-size: 0.64em;
  font-weight: 600;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.lead {
  max-width: 660px;
  color: #f7fbff;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hero-copy,
.product-copy p:not(.lead) {
  max-width: 620px;
  color: var(--muted);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.button.primary {
  border-color: rgba(111, 229, 221, 0.46);
  color: #07111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.button.ghost {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-visual,
.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(190, 211, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(103, 168, 255, 0.2), rgba(170, 140, 255, 0.14)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.product-visual::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.hero-visual::after,
.product-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(to top, rgba(7, 17, 31, 0.9), transparent);
}

.orbital {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.orbital-one {
  width: 320px;
  height: 320px;
  top: 58px;
  right: 50px;
  background: radial-gradient(circle, rgba(111, 229, 221, 0.26), transparent 62%);
}

.orbital-two {
  width: 210px;
  height: 210px;
  right: 190px;
  bottom: 54px;
  background: radial-gradient(circle, rgba(170, 140, 255, 0.24), transparent 62%);
}

.forge-card {
  position: absolute;
  right: 44px;
  bottom: 44px;
  z-index: 1;
  width: min(310px, calc(100% - 88px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 18, 34, 0.78);
  backdrop-filter: blur(14px);
}

.forge-card strong,
.forge-card small,
.forge-card span {
  display: block;
}

.forge-card strong {
  margin: 9px 0 4px;
  font-size: 26px;
}

.forge-card small {
  color: var(--muted);
}

.forge-code {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 16px 0 56px;
}

.section-heading {
  margin-bottom: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.product-card::after {
  position: absolute;
  right: -54px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 999px;
  background: rgba(103, 168, 255, 0.16);
}

.product-card p {
  color: var(--muted);
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(111, 229, 221, 0.4);
  transform: translateY(-2px);
  outline: none;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.status.online {
  color: #062316;
  background: var(--green);
}

.status.progress {
  color: #081322;
  background: var(--cyan);
}

.status.planned {
  color: #211305;
  background: var(--gold);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quick-links a,
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--cyan);
  font-weight: 700;
}

.product-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
}

.product-visual {
  display: grid;
  place-items: center;
}

.visual-title {
  position: relative;
  z-index: 1;
  max-width: 80%;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-align: center;
}

.word-visual {
  background:
    radial-gradient(circle at 28% 28%, rgba(117, 224, 167, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(103, 168, 255, 0.35), rgba(170, 140, 255, 0.18), rgba(111, 229, 221, 0.16));
}

.outpost-visual {
  background:
    radial-gradient(circle at 68% 30%, rgba(111, 229, 221, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(70, 103, 215, 0.36), rgba(55, 30, 95, 0.26), rgba(15, 29, 54, 0.8));
}

.steel-visual {
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 211, 122, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(66, 86, 112, 0.52), rgba(39, 31, 50, 0.7), rgba(18, 13, 36, 0.72));
}

.qr-placeholder {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 14px;
  background: rgba(7, 17, 31, 0.64);
}

.node-map,
.vehicle-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.node-map span {
  position: absolute;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(111, 229, 221, 0.34);
  border-radius: 8px;
  background: rgba(111, 229, 221, 0.08);
}

.node-map span:nth-child(1) { left: 16%; top: 22%; }
.node-map span:nth-child(2) { right: 18%; top: 18%; }
.node-map span:nth-child(3) { left: 28%; bottom: 18%; }
.node-map span:nth-child(4) { right: 23%; bottom: 24%; }

.vehicle-shape span {
  position: absolute;
  right: 70px;
  bottom: 72px;
  width: 230px;
  height: 92px;
  border: 1px solid rgba(255, 211, 122, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 211, 122, 0.16), rgba(255, 255, 255, 0.04));
}

.vehicle-shape span::before,
.vehicle-shape span::after {
  position: absolute;
  bottom: -28px;
  width: 54px;
  height: 54px;
  content: "";
  border: 10px solid rgba(255, 211, 122, 0.32);
  border-radius: 999px;
}

.vehicle-shape span::before { left: 22px; }
.vehicle-shape span::after { right: 22px; }

.notice-box,
.contact-box {
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
}

.screenshots {
  padding: 0 0 54px;
}

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

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shot {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  background: var(--panel);
}

.shot::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.7;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 18px);
}

.shot span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.word-shot { background: linear-gradient(135deg, rgba(117, 224, 167, 0.22), rgba(103, 168, 255, 0.16)); }
.outpost-shot { background: linear-gradient(135deg, rgba(103, 168, 255, 0.24), rgba(170, 140, 255, 0.18)); }
.steel-shot { background: linear-gradient(135deg, rgba(255, 211, 122, 0.18), rgba(103, 168, 255, 0.12)); }

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 8, 16, 0.78);
  backdrop-filter: blur(12px);
}

.preview-modal[hidden] {
  display: none;
}

.preview-surface {
  display: grid;
  width: min(900px, 92vw);
  min-height: min(560px, 66vh);
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  background:
    radial-gradient(circle at 28% 24%, rgba(111, 229, 221, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(103, 168, 255, 0.24), rgba(170, 140, 255, 0.16)),
    #0b1628;
}

.preview-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
}

.text-page {
  min-height: calc(100vh - 260px);
  padding: 56px 0;
}

.text-panel {
  max-width: 820px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.text-panel h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.text-panel h2 {
  margin-top: 28px;
  font-size: 22px;
}

.text-panel p {
  color: var(--muted);
}

.text-panel a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--cyan);
  font-weight: 700;
}

.contact-box {
  display: grid;
  gap: 4px;
  width: 100%;
}

.contact-box span,
.muted {
  color: var(--muted);
}

.contact-box a {
  font-size: clamp(20px, 4vw, 32px);
  word-break: break-word;
}

.legal {
  max-width: 900px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding: 24px 20px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  background: rgba(5, 12, 23, 0.56);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--soft);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
  }

  .hero,
  .product-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 42px 0 28px;
  }

  .hero-visual,
  .product-visual {
    min-height: 360px;
  }

  .product-grid,
  .shot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .brand-subtitle {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-visual,
  .product-visual {
    min-height: 300px;
  }

  .forge-card {
    right: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }

  .qr-placeholder {
    right: 22px;
    bottom: 22px;
    width: 108px;
    height: 108px;
    font-size: 12px;
  }

  .text-panel {
    padding: 24px 18px;
  }

  .site-footer {
    display: grid;
    gap: 8px;
  }
}

/* Oceanic Forge V1 direction: bright ocean homepage and three-button navigation. */
:root {
  color-scheme: light;
  --bg: #dff6ff;
  --bg-2: #bceeff;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(15, 55, 82, 0.18);
  --text: #15110a;
  --muted: #304252;
  --soft: #f8fbff;
  --blue: #1d95cb;
  --cyan: #2fb7d1;
  --violet: #5676b8;
  --rose: #bc6c72;
  --gold: #d39a34;
  --green: #4aa970;
  --shadow: 0 18px 48px rgba(42, 91, 120, 0.18);
}

body {
  color: var(--text);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.86), transparent 18%),
    linear-gradient(180deg, #74d9ff 0%, #c7f4ff 44%, #1bb1d0 66%, #0783b1 100%);
  background-attachment: fixed;
}

body::before {
  background:
    radial-gradient(ellipse at 12% 62%, rgba(255, 255, 255, 0.72) 0 8%, transparent 18%),
    radial-gradient(ellipse at 35% 64%, rgba(255, 255, 255, 0.62) 0 6%, transparent 15%),
    radial-gradient(ellipse at 78% 22%, rgba(255, 255, 255, 0.55) 0 6%, transparent 14%);
  background-size: auto;
  mask-image: none;
}

.site-header {
  justify-content: flex-start;
  min-height: 80px;
  padding: 0 clamp(24px, 4.4vw, 72px);
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(26, 27, 26, 0.68), rgba(19, 53, 74, 0.72));
  backdrop-filter: blur(10px);
}

.site-nav {
  gap: clamp(22px, 3.2vw, 44px);
}

.top-nav-link,
.site-nav a.top-nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 80px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  font: inherit;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  background: transparent;
  cursor: pointer;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.top-nav-link.is-active,
.site-nav a.top-nav-link.is-active,
.dropdown-toggle.is-active {
  font-size: clamp(32px, 2.9vw, 44px);
}

.top-nav-link:hover,
.top-nav-link:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: #eafaff;
  background: transparent;
  outline: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background: rgba(26, 43, 56, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a,
.site-nav .dropdown-menu a {
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.home-hero {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: calc(100vh - 80px);
  padding: clamp(88px, 11vh, 150px) 9vw 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.52) 34%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 11% 14%, rgba(255, 255, 255, 0.9), transparent 15%),
    radial-gradient(ellipse at 21% 78%, rgba(255, 255, 255, 0.85), transparent 20%),
    linear-gradient(180deg, #45c7ff 0%, #bfefff 50%, #11a5c5 66%, #057da9 100%);
}

.home-hero::before {
  position: absolute;
  right: -8%;
  bottom: -5%;
  left: -8%;
  height: 29%;
  content: "";
  background:
    radial-gradient(ellipse at 16% 28%, rgba(255, 255, 255, 0.95) 0 2%, transparent 10%),
    radial-gradient(ellipse at 40% 42%, rgba(255, 255, 255, 0.78) 0 2%, transparent 9%),
    radial-gradient(ellipse at 68% 34%, rgba(255, 255, 255, 0.82) 0 2%, transparent 8%),
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.42) 0 5px, transparent 5px 28px),
    linear-gradient(180deg, rgba(61, 205, 232, 0.34), rgba(0, 116, 167, 0.7));
}

.home-hero::after {
  position: absolute;
  top: 13%;
  right: 9%;
  width: 30vw;
  height: 18vw;
  min-width: 280px;
  min-height: 170px;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 20% 62%, rgba(255, 255, 255, 0.84) 0 12%, transparent 22%),
    radial-gradient(ellipse at 52% 42%, rgba(255, 255, 255, 0.68) 0 10%, transparent 23%),
    radial-gradient(ellipse at 80% 58%, rgba(255, 255, 255, 0.7) 0 9%, transparent 21%);
  opacity: 0.9;
}

.home-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, 52vw);
}

.home-hero .eyebrow {
  margin-bottom: 18px;
  color: #7b1814;
  font-size: 14px;
  font-weight: 900;
}

.home-hero h1 {
  margin-bottom: 28px;
  color: #181106;
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.95;
}

.home-hero .lead {
  color: #101010;
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.42;
}

.home-hero .hero-copy {
  margin-top: 28px;
  color: #263645;
  font-size: clamp(17px, 1.35vw, 22px);
}

.home-products {
  margin-top: clamp(54px, 8vh, 86px);
}

.home-products h2 {
  margin-bottom: 18px;
  color: #4fa9bf;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
}

.home-products .product-grid {
  width: min(660px, 52vw);
  gap: 22px;
}

.home-products .product-card {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(60, 88, 105, 0.22);
  color: #1c252d;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(37, 112, 142, 0.16);
}

.home-products .product-card p,
.home-products .status {
  display: none;
}

.home-products .product-card h3 {
  margin: 0;
  font-size: 19px;
}

.ocean-forge {
  position: absolute;
  right: 8vw;
  bottom: 20vh;
  z-index: 1;
  width: min(440px, 34vw);
  height: min(360px, 30vw);
}

.forge-deck {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 96%;
  height: 24%;
  border: 6px solid rgba(95, 71, 43, 0.82);
  border-radius: 8px;
  background: linear-gradient(180deg, #c08a50, #7c5634);
  box-shadow: 0 20px 50px rgba(18, 71, 88, 0.28);
}

.forge-cabin,
.forge-tower {
  position: absolute;
  border: 5px solid #6f4a2c;
  border-radius: 8px;
  background: linear-gradient(160deg, #f0c084, #ba7445);
}

.forge-cabin {
  right: 20%;
  bottom: 22%;
  width: 34%;
  height: 34%;
}

.forge-tower {
  right: 4%;
  bottom: 34%;
  width: 24%;
  height: 54%;
}

.forge-cabin::before,
.forge-tower::before {
  position: absolute;
  top: -31%;
  left: -9%;
  width: 118%;
  height: 36%;
  content: "";
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, #29a8d1, #146f93);
  transform: skewX(-10deg);
}

.forge-flag {
  position: absolute;
  right: 6%;
  top: 3%;
  width: 2%;
  height: 28%;
  background: #6f4a2c;
}

.forge-flag::after {
  position: absolute;
  top: 5%;
  left: 100%;
  width: 64px;
  height: 34px;
  content: "";
  border-radius: 4px;
  background: linear-gradient(90deg, #ffffff, #ffd17b);
  clip-path: polygon(0 0, 100% 16%, 80% 54%, 100% 92%, 0 100%);
}

.text-page {
  min-height: calc(100vh - 204px);
}

.text-panel {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
}

.text-panel p,
.product-copy p:not(.lead),
.muted {
  color: var(--muted);
}

.product-hero {
  color: var(--text);
}

.product-copy .lead {
  color: #132a3d;
}

.site-footer {
  border-top-color: rgba(15, 55, 82, 0.16);
  color: rgba(18, 31, 42, 0.76);
  background: rgba(237, 250, 255, 0.82);
}

.footer-links a {
  color: #164960;
}

@media (max-width: 900px) {
  .site-header {
    justify-content: space-between;
    min-height: 66px;
    padding: 0 16px;
  }

  .nav-toggle {
    border-color: rgba(255, 255, 255, 0.48);
  }

  .site-nav {
    gap: 4px;
    background: rgba(28, 55, 70, 0.96);
  }

  .top-nav-link,
  .site-nav a.top-nav-link,
  .dropdown-toggle,
  .top-nav-link.is-active,
  .dropdown-toggle.is-active {
    justify-content: flex-start;
    min-height: 48px;
    font-size: 22px;
  }

  .nav-dropdown {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 6px 12px;
    padding: 4px;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .home-hero {
    min-height: auto;
    padding: 72px 24px 52px;
  }

  .home-hero .hero-content,
  .home-products .product-grid {
    width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(54px, 16vw, 86px);
  }

  .home-hero .lead {
    font-size: 24px;
  }

  .ocean-forge {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 82vw);
    height: 280px;
    margin: 32px 0 0 auto;
  }
}

@media (max-width: 560px) {
  .home-hero {
    padding: 58px 18px 42px;
  }

  .home-products .product-grid {
    gap: 12px;
  }

  .home-products .product-card {
    min-height: 92px;
  }
}

/* Use the provided key visual for the homepage. */
.home-hero {
  min-height: calc(100vh - 80px);
  padding: clamp(118px, 13vh, 158px) 9vw 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.62) 31%, rgba(255, 255, 255, 0.18) 52%, rgba(255, 255, 255, 0) 70%),
    url("../images/backgrounds/home-ocean-forge.jpg") center center / cover no-repeat;
}

.home-hero::before,
.home-hero::after {
  content: none;
}

.home-hero .hero-content {
  width: min(650px, 52vw);
}

.home-hero .eyebrow {
  color: #851b16;
}

.home-hero h1 {
  color: #130e05;
  text-shadow: 0 3px 18px rgba(255, 255, 255, 0.34);
}

.home-hero .lead {
  max-width: 610px;
  color: #111111;
}

.home-hero .hero-copy {
  color: #213746;
}

.home-products {
  margin-top: clamp(46px, 6.8vh, 72px);
}

.home-products h2 {
  color: #58aec2;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.54);
}

.home-products .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(660px, 52vw);
  gap: 18px;
}

.home-products .product-card {
  min-height: 120px;
  padding: 18px 16px;
  border: 1px solid rgba(93, 120, 132, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(24, 81, 105, 0.12);
}

.home-products .product-card::after {
  content: none;
}

.home-products .product-card h3 {
  color: #263849;
  font-size: 18px;
  line-height: 1.28;
}

.ocean-forge {
  display: none;
}

@media (max-width: 900px) {
  .home-hero {
    padding: 86px 24px 52px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.16) 100%),
      url("../images/backgrounds/home-ocean-forge.jpg") 62% center / cover no-repeat;
  }

  .home-hero .hero-content,
  .home-products .product-grid {
    width: 100%;
  }

  .home-products .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-hero {
    padding: 72px 18px 42px;
  }

  .home-hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .home-hero .lead {
    font-size: 22px;
  }
}

/* User visual tuning pass: smaller text, sharper menu, lower background crop. */
.top-nav-link,
.site-nav a.top-nav-link,
.dropdown-toggle {
  font-size: clamp(18px, 1.55vw, 24px);
}

.top-nav-link.is-active,
.site-nav a.top-nav-link.is-active,
.dropdown-toggle.is-active {
  font-size: clamp(22px, 1.9vw, 29px);
}

.dropdown-menu {
  top: 100%;
  min-width: 220px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(26, 27, 26, 0.68), rgba(19, 53, 74, 0.72));
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  transform: translate(-50%, 0);
}

.dropdown-menu a,
.site-nav .dropdown-menu a {
  border-radius: 0;
  padding: 9px 22px;
  font-size: 15px;
}

.home-hero {
  padding: clamp(86px, 9.5vh, 118px) 9vw 56px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.56) 29%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 68%),
    url("../images/backgrounds/home-ocean-forge.jpg") center 72% / cover no-repeat;
}

.home-hero .hero-content {
  width: min(560px, 44vw);
}

.home-hero .eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
}

.home-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 4.8vw, 70px);
}

.home-hero .lead {
  margin-top: clamp(22px, 3vh, 34px);
}

.home-hero .lead {
  max-width: 520px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.5;
}

.home-hero .hero-copy {
  margin-top: 20px;
  max-width: 500px;
  font-size: clamp(14px, 1vw, 16px);
}

.home-products {
  margin-top: clamp(26px, 4vh, 42px);
}

.home-products h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2vw, 32px);
}

.home-products .product-grid {
  width: min(560px, 44vw);
  gap: 14px;
}

.home-products .product-card {
  min-height: 96px;
  padding: 14px 12px;
}

.home-products .product-card h3 {
  font-size: 16px;
}

@media (max-width: 900px) {
  .top-nav-link,
  .site-nav a.top-nav-link,
  .dropdown-toggle,
  .top-nav-link.is-active,
  .site-nav a.top-nav-link.is-active,
  .dropdown-toggle.is-active {
    font-size: 18px;
  }

  .dropdown-menu {
    margin: 0;
    padding: 4px 0;
    background: linear-gradient(90deg, rgba(26, 27, 26, 0.68), rgba(19, 53, 74, 0.72));
  }

  .home-hero {
    padding: 70px 22px 44px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.54) 42%, rgba(255, 255, 255, 0.12) 100%),
      url("../images/backgrounds/home-ocean-forge.jpg") 60% 72% / cover no-repeat;
  }

  .home-hero .hero-content,
  .home-products .product-grid {
    width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .home-hero .lead {
    font-size: 20px;
  }
}

/* Fine tune alignment and dropdown proportions. */
.site-header {
  padding-right: 9vw;
  padding-left: 9vw;
}

.site-nav {
  gap: clamp(22px, 3.2vw, 46px);
}

.dropdown-menu {
  min-width: 176px;
  padding: 0;
}

.dropdown-menu a,
.site-nav .dropdown-menu a {
  justify-content: center;
  min-height: 45px;
  padding: 0 18px;
  text-align: center;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.56) 29%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 68%),
    url("../images/backgrounds/home-ocean-forge.jpg") center 76% / cover no-repeat;
}

.home-products {
  margin-top: clamp(48px, 7vh, 76px);
}

.site-footer {
  min-height: 0;
  padding: 12px 18px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(90deg, rgba(26, 27, 26, 0.68), rgba(19, 53, 74, 0.72));
}

.footer-links a {
  min-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-nav {
    gap: 4px;
  }

  .dropdown-menu {
    min-width: 0;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.54) 42%, rgba(255, 255, 255, 0.12) 100%),
      url("../images/backgrounds/home-ocean-forge.jpg") 60% 76% / cover no-repeat;
  }
}

/* Keep top crop stable while showing more ocean below; active nav no longer scales. */
.top-nav-link.is-active,
.site-nav a.top-nav-link.is-active,
.dropdown-toggle.is-active {
  font-size: clamp(18px, 1.55vw, 24px);
}

.home-hero {
  min-height: calc(112vh - 80px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.56) 29%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 68%),
    url("../images/backgrounds/home-ocean-forge.jpg") center 64% / cover no-repeat;
}

@media (max-width: 900px) {
  .top-nav-link.is-active,
  .site-nav a.top-nav-link.is-active,
  .dropdown-toggle.is-active {
    font-size: 18px;
  }

  .home-hero {
    min-height: calc(112vh - 66px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.54) 42%, rgba(255, 255, 255, 0.12) 100%),
      url("../images/backgrounds/home-ocean-forge.jpg") 60% 64% / cover no-repeat;
  }
}

/* Shorter top menu bar. */
.site-header {
  min-height: 60px;
}

.top-nav-link,
.site-nav a.top-nav-link,
.dropdown-toggle {
  min-height: 60px;
}

.home-hero {
  min-height: calc(112vh - 60px);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 50px;
  }

  .top-nav-link,
  .site-nav a.top-nav-link,
  .dropdown-toggle,
  .top-nav-link.is-active,
  .site-nav a.top-nav-link.is-active,
  .dropdown-toggle.is-active {
    min-height: 42px;
  }

  .home-hero {
    min-height: calc(112vh - 50px);
  }
}

/* BG crop target: about 6.5% hidden top / 91% visible / 2.5% hidden bottom on 1280x720. */
.home-hero {
  min-height: calc(109.5vh - 60px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.56) 29%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 68%),
    url("../images/backgrounds/home-ocean-forge.jpg") center 72% / cover no-repeat;
}

@media (max-width: 900px) {
  .home-hero {
    min-height: calc(109.5vh - 50px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.54) 42%, rgba(255, 255, 255, 0.12) 100%),
      url("../images/backgrounds/home-ocean-forge.jpg") 60% 72% / cover no-repeat;
  }
}

/* Final homepage product and dropdown centering adjustments. */
.dropdown-menu a,
.site-nav .dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1;
  white-space: nowrap;
}

.home-products {
  margin-top: clamp(48px, 6vh, 72px);
}

.home-products h2 {
  margin-bottom: clamp(22px, 2.6vh, 34px);
}

.home-products .product-card {
  aspect-ratio: 3 / 2;
  min-height: 0;
  display: block;
  padding: 0;
  border: 2px solid rgba(68, 96, 110, 0.44);
  background: rgba(255, 255, 255, 0.92);
}

.home-products .product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Make the title-to-intro gap visibly larger. */
.home-hero h1 {
  margin-bottom: clamp(48px, 6vh, 72px);
}

.home-hero .lead {
  margin-top: 0;
}

/* Word Chirp product page. */
.word-chirp-page {
  color: #0b0a07;
  background: #e9f8ff;
}

.word-chirp-hero {
  display: flex;
  align-items: flex-start;
  min-height: calc(109.5vh - 60px);
  padding: clamp(86px, 9.5vh, 118px) 9vw clamp(28px, 5vh, 48px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 68%),
    url("../images/backgrounds/word-chirp-bg.jpg") center 83.333% / cover no-repeat;
}

.word-chirp-content {
  width: min(560px, 42vw);
}

.product-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  color: #8a140f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.word-chirp-content h1 {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: clamp(48px, 6vh, 72px);
  color: #090703;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.02;
}

.word-chirp-content .title-status {
  flex: 0 0 auto;
  margin-top: 0;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1;
  transform: none;
}

.word-chirp-content .lead {
  max-width: 520px;
  margin-bottom: 22px;
  color: #080805;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 900;
  line-height: 1.5;
}

.word-chirp-content .product-intro {
  max-width: 500px;
  margin-bottom: 0;
  color: #182530;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
}

.download-panel {
  width: min(430px, 100%);
  margin-top: clamp(48px, 6vh, 72px);
  padding: 0;
  background: transparent;
}

.taptap-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-sizing: border-box;
  width: 164px;
  min-height: 48px;
  padding: 0 12px;
  color: #ffffff;
  background: linear-gradient(90deg, #ffcc54, #ff9f32);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 900;
  box-shadow: none;
}

.qr-card {
  box-sizing: border-box;
  width: 164px;
  margin: 24px 0 0;
  padding: 12px 12px 10px;
  background: rgba(255, 255, 255, 0.96);
}

.qr-card img {
  display: block;
  width: 100%;
  height: auto;
}

.qr-card figcaption {
  display: none;
}

@media (max-width: 900px) {
  .word-chirp-hero {
    align-items: flex-start;
    min-height: calc(109.5vh - 50px);
    padding: 78px 22px 44px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.68) 44%, rgba(255, 255, 255, 0.16) 100%),
      url("../images/backgrounds/word-chirp-bg.jpg") 58% 83.333% / cover no-repeat;
  }

  .word-chirp-content {
    width: min(520px, 100%);
  }

  .product-kicker {
    margin-bottom: 14px;
  }

  .word-chirp-content h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .word-chirp-content .title-status {
    font-size: 12px;
  }

.word-chirp-content .lead {
  font-size: 20px;
}

  .download-panel {
    width: min(360px, 100%);
  }
}

/* Outpost product page. */
.outpost-page {
  color: #0b0a07;
  background: #e9f8ff;
}

.outpost-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 68%),
    url("../images/backgrounds/outpost-bg.jpg") center 83.333% / cover no-repeat;
}

.outpost-page .title-status {
  color: #211305;
  background: var(--gold);
}

.outpost-page .taptap-button {
  width: 190px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00d9c5, #34ead8);
}

@media (max-width: 900px) {
  .outpost-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.68) 44%, rgba(255, 255, 255, 0.16) 100%),
      url("../images/backgrounds/outpost-bg.jpg") 58% 83.333% / cover no-repeat;
  }
}

/* Wasteland Iron product page. */
.wasteland-iron-page {
  color: #0b0a07;
  background: #e9f8ff;
}

.wasteland-iron-hero {
  background: url("../images/backgrounds/wasteland-iron-bg.jpg") center 58.333% / cover no-repeat;
}

.wasteland-iron-page .product-kicker,
.wasteland-iron-page .word-chirp-content h1,
.wasteland-iron-page .word-chirp-content .lead,
.wasteland-iron-page .word-chirp-content .product-intro {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.wasteland-iron-page .image-title {
  gap: 18px;
  margin-bottom: clamp(22px, 2.8vh, 32px);
}

.wasteland-iron-page .image-title img {
  display: block;
  width: min(314px, 25.4vw);
  height: auto;
}

.wasteland-iron-page .title-status {
  color: #211305;
  background: var(--gold);
}

.wasteland-iron-page .taptap-button {
  width: 190px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00d9c5, #34ead8);
}

@media (max-width: 900px) {
  .wasteland-iron-hero {
    background: url("../images/backgrounds/wasteland-iron-bg.jpg") 58% 58.333% / cover no-repeat;
  }

  .wasteland-iron-page .image-title img {
    width: min(269px, 53.8vw);
  }
}

/* Contact page. */
.contact-page {
  color: #ffffff;
  background: #0e1c24;
}

.contact-hero {
  display: flex;
  align-items: flex-start;
  min-height: calc(109.5vh - 60px);
  padding: clamp(66px, 7.5vh, 94px) 9vw clamp(44px, 7vh, 72px);
  background: url("../images/backgrounds/contact-bg.jpg") center 58.333% / cover no-repeat;
}

.contact-content {
  width: min(528px, 38.4vw);
}

.contact-content .product-kicker,
.contact-content h1,
.contact-copy {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
}

.contact-content h1 {
  margin-bottom: clamp(30px, 4vh, 46px);
  font-size: clamp(19px, 2.05vw, 30px);
  line-height: 1.05;
}

.contact-copy {
  max-width: 512px;
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.85;
}

.contact-copy p {
  margin-bottom: 16px;
}

.contact-copy a {
  color: #53f0df;
  font-weight: 800;
}

@media (max-width: 900px) {
  .contact-hero {
    min-height: calc(109.5vh - 50px);
    padding: 62px 22px 50px;
    background: url("../images/backgrounds/contact-bg.jpg") 58% 58.333% / cover no-repeat;
  }

  .contact-content {
    width: min(496px, 100%);
  }

  .contact-content h1 {
    font-size: clamp(19px, 5.5vw, 27px);
  }

  .contact-copy {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* Privacy page. */
.privacy-page {
  color: #ffffff;
  background: rgba(26, 26, 26, 1) !important;
  background-image: none !important;
}

.privacy-page::before {
  display: none;
  background: none;
}

.privacy-page .text-page {
  background: rgba(26, 26, 26, 1);
}

.privacy-page .text-panel {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
}

.privacy-page .text-panel h1,
.privacy-page .text-panel h2,
.privacy-page .text-panel p,
.privacy-page .text-panel .eyebrow {
  color: #ffffff;
}

.privacy-page .text-panel h1 {
  font-size: 22px;
}

.privacy-page .text-panel h2 {
  font-size: inherit;
}

.privacy-page .text-panel a:not(.button) {
  color: #53f0df;
}

/* Remove the global decorative CSS background beneath page artwork. */
body {
  background: transparent;
  background-attachment: scroll;
}

body::before {
  display: none;
}
