@charset "UTF-8";
:root {
  color-scheme: dark;
  --navy: #0b1722;
  --navy-light: #122331;
  --ink: #f4f3ef;
  --muted: #a6b1b8;
  --gold: #ddbd88;
  --line: rgba(235, 237, 233, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.055em;
  line-height: 1.08;
}
h1 em,
h2 em {
  font-weight: 400;
  color: var(--gold);
}
h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
}
.section-wrap {
  width: calc(100% - 128px);
  max-width: 1344px;
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
  background: var(--navy);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.wordmark > span {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.orbit-mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: 36px;
}
.desktop-nav a {
  font-size: 0.875rem;
  color: #c3c9cc;
  padding: 12px 0;
  transition: color 0.2s;
}
.desktop-nav a:hover,
.text-link:hover {
  color: var(--gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-link {
  border: 1px solid rgba(221, 189, 136, 0.55);
  padding: 11px 20px;
  font-size: 0.875rem;
  white-space: nowrap;
}
.app-link span {
  margin-left: 20px;
  color: var(--gold);
}
.app-link:hover {
  background: rgba(221, 189, 136, 0.1);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}
.menu-toggle span {
  height: 1px;
  width: 22px;
  background: var(--ink);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-light);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
}
.mobile-nav a {
  padding: 12px 4px;
}
.hero {
  max-width: 1536px;
  margin: auto;
  min-height: calc(100svh - 104px);
  max-height: 1100px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  position: relative;
  padding-bottom: 72px;
  overflow: hidden;
}
.hero-copy {
  padding: 82px 40px 72px 64px;
  align-self: center;
  position: relative;
  z-index: 2;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}
.tiny-ring {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(4rem, 6.6vw, 7rem);
}
.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #bec7cd;
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding: 17px 23px;
  min-height: 56px;
  line-height: 1.2;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-gold {
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
}
.button-gold:hover {
  background: #efd3a4;
  transform: translateY(-2px);
}
.button span {
  font-size: 1.15rem;
}
.text-link {
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(221, 189, 136, 0.35);
  transition: color 0.2s;
}
.text-link > span {
  color: var(--gold);
}
.hero-note {
  font-size: 0.75rem;
  color: #98a5ae;
  margin-top: 26px;
  max-width: 350px;
}
.hero-visual {
  position: relative;
  margin-top: 40px;
  margin-right: 32px;
  margin-bottom: 0;
  min-height: 600px;
  align-self: stretch;
  background: #20303b;
  overflow: hidden;
}
.hero-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 85% center;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px 24px 20px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  background: linear-gradient(transparent, rgba(9, 19, 26, 0.7));
  color: white;
  font-size: 0.75rem;
}
.hero-visual figcaption span:first-child {
  letter-spacing: 0.15em;
}
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 64px;
  right: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.scroll-cue > span:last-child {
  font-size: 1.25rem;
  color: var(--gold);
}
.experience {
  padding-block: 112px 96px;
  border-top: 1px solid var(--line);
}
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 52px;
}
.section-aside {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-align: right;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr;
  gap: 80px;
  align-items: end;
}
.intro-grid > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  padding-bottom: 5px;
  max-width: 360px;
}
.feature-row {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}
.feature-row article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.feature-number {
  font-size: 0.75rem;
  color: var(--gold);
}
.feature-row h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 22px 0 13px;
  letter-spacing: -0.02em;
}
.feature-row p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 330px;
}
.map-collection {
  padding: 86px 0 40px;
  background: #0f202d;
  border-block: 1px solid var(--line);
}
.collection-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.collection-heading .eyebrow {
  margin-bottom: 26px;
}
.collection-heading .text-link {
  margin-bottom: 7px;
}
.map-stage {
  position: relative;
  max-width: 1500px;
  margin: auto;
  background: #07121e;
  aspect-ratio: 2.4;
  overflow: hidden;
}
.map-stage > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 0.18s;
}
.map-stage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 64px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(transparent, rgba(4, 15, 23, 0.85));
  font-size: 0.75rem;
  color: #c0cbd3;
}
.map-label {
  letter-spacing: 0.16em;
  color: var(--ink);
}
.collection-controls {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.map-choices {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.map-choices button {
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: #c1c9ce;
  transition:
    background 0.2s,
    border 0.2s;
}
.map-choices button[aria-pressed="true"] {
  background: rgba(221, 189, 136, 0.08);
  border-color: rgba(221, 189, 136, 0.55);
  color: var(--gold);
}
.map-choices button:hover {
  background: rgba(255, 255, 255, 0.06);
}
.swatch {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.swatch-night {
  background: #183146;
}
.swatch-relief {
  background: #bba889;
}
.swatch-glacier {
  background: #b3c7cc;
}
.collection-controls > p {
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 275px;
  line-height: 1.6;
}
.product {
  padding-block: 112px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: center;
}
.product-copy > .eyebrow {
  margin-bottom: 28px;
}
.product-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 23px;
  max-width: 410px;
}
.product-image {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.product-image > img {
  flex: 1;
  min-height: 540px;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  max-height: 690px;
}
.product-image figcaption {
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 14px;
}
.product-status {
  margin: 34px 0 24px;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  max-width: 410px;
}
.status-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.product-status p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
}
.globe-section {
  background: #12212b;
  border-block: 1px solid var(--line);
}
.product-reverse {
  grid-template-columns: 0.92fr 1.08fr;
}
.globe-image > img {
  object-position: 60% center;
}
.story {
  display: grid;
  grid-template-columns: 0.65fr 1.4fr;
  gap: 70px;
  padding-block: 124px;
}
.story > .eyebrow {
  padding-top: 10px;
}
.story-content h2 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}
.story-content p {
  color: var(--muted);
  max-width: 600px;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-top: 28px;
}
.story-content .text-link {
  margin-top: 28px;
}
.questions {
  border-top: 1px solid var(--line);
  padding-block: 86px 112px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
}
.questions .eyebrow {
  margin-bottom: 26px;
}
.questions h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.75rem);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  list-style: none;
  min-height: 82px;
  padding: 22px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 35px 26px 0;
}
.closing {
  background: #142a38;
  border-block: 1px solid rgba(221, 189, 136, 0.22);
}
.closing-inner {
  padding-block: 80px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.closing .eyebrow {
  margin-bottom: 25px;
}
.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  min-width: 245px;
}
.closing-actions .text-link {
  justify-content: space-between;
  align-self: stretch;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-block: 40px;
}
.site-footer .wordmark > span {
  font-size: 1.125rem;
}
.site-footer .orbit-mark {
  width: 30px;
  height: 30px;
}
.site-footer > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--muted);
}
.site-footer > div {
  display: flex;
  gap: 24px;
  font-size: 0.75rem;
  color: var(--muted);
}
.site-footer > div a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer > div > span {
  align-self: center;
}
@media (min-width: 1700px) {
  .hero {
    min-height: 850px;
  }
  .hero-copy {
    padding-left: 96px;
  }
  .site-header {
    padding-inline: max(64px, calc((100vw - 1344px) / 2));
  }
}
@media (max-width: 1100px) {
  .section-wrap {
    width: calc(100% - 80px);
  }
  .site-header {
    padding-inline: 40px;
    height: 88px;
  }
  .desktop-nav {
    gap: 22px;
    margin-left: 12px;
  }
  .hero {
    min-height: 760px;
    max-height: none;
  }
  .hero-copy {
    padding: 64px 25px 48px 40px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.25rem);
  }
  .hero-visual {
    min-height: 620px;
    margin-top: 28px;
    margin-right: 24px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-note {
    max-width: 250px;
  }
  .scroll-cue {
    left: 40px;
    right: 40px;
  }
  .intro-grid {
    gap: 45px;
  }
  .product {
    gap: 54px;
  }
  .product-image > img {
    min-height: 500px;
  }
  .story {
    gap: 40px;
  }
  .questions {
    gap: 50px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .collection-controls {
    align-items: flex-start;
    flex-direction: column;
  }
  .collection-controls > p {
    max-width: none;
  }
  .map-stage-caption {
    padding-inline: 40px;
  }
}
@media (max-width: 800px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header {
    padding-inline: 24px;
    height: 80px;
  }
  .section-wrap {
    width: calc(100% - 48px);
  }
  .wordmark > span {
    font-size: 1.125rem;
    letter-spacing: 0.25em;
  }
  .orbit-mark {
    width: 32px;
    height: 32px;
  }
  .wordmark {
    gap: 10px;
  }
  .header-actions {
    gap: 8px;
  }
  .app-link {
    padding: 9px 13px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .app-link span {
    margin: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 62px;
    overflow: visible;
  }
  .hero-copy {
    padding: 55px 24px 40px;
  }
  .hero-copy > .eyebrow {
    margin-bottom: 25px;
    font-size: 0.75rem;
  }
  .hero h1 {
    font-size: clamp(4.5rem, 12vw, 6.5rem);
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 24px;
  }
  .hero-actions {
    margin-top: 28px;
    gap: 22px;
  }
  .hero-note {
    max-width: none;
    margin-top: 22px;
  }
  .hero-visual {
    min-height: 0;
    aspect-ratio: 1.4;
    margin: 0 24px;
    align-self: auto;
  }
  .hero-visual img {
    object-position: 70% center;
  }
  .hero-visual figcaption {
    padding: 30px 16px 16px;
  }
  .scroll-cue {
    left: 24px;
    right: 24px;
    bottom: 21px;
    font-size: 0.75rem;
  }
  .experience {
    padding-block: 68px;
  }
  .section-top {
    margin-bottom: 34px;
  }
  .section-aside {
    display: none;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-grid > p {
    max-width: 520px;
  }
  .feature-row {
    margin-top: 40px;
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .feature-row article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 10px;
    padding-top: 24px;
  }
  .feature-number {
    grid-row: 1/3;
    padding-top: 5px;
  }
  .feature-row h3 {
    margin: 0 0 10px;
  }
  .feature-row p {
    max-width: none;
  }
  .map-collection {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .collection-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }
  .collection-heading .eyebrow {
    margin-bottom: 20px;
  }
  .map-stage {
    aspect-ratio: 1.7;
  }
  .map-stage > img {
    object-fit: cover;
  }
  .map-stage-caption {
    padding: 28px 24px 15px;
    font-size: 0.75rem;
  }
  .map-stage-caption > span:last-child {
    max-width: 140px;
    text-align: right;
  }
  .collection-controls {
    padding-top: 18px;
    gap: 17px;
  }
  .map-choices {
    gap: 5px;
  }
  .map-choices button {
    font-size: 0.8125rem;
    padding: 10px 9px;
    gap: 7px;
  }
  .swatch {
    width: 11px;
    height: 11px;
  }
  .product,
  .product-reverse {
    padding-block: 70px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .product-copy {
    grid-row: 1;
  }
  .product-image {
    grid-row: 2;
  }
  .product-copy > p:not(.eyebrow) {
    max-width: 550px;
    margin-top: 20px;
  }
  .product-copy > .eyebrow {
    margin-bottom: 22px;
  }
  .product-status {
    max-width: 550px;
    margin-top: 28px;
  }
  .product-image > img {
    min-height: 0;
    aspect-ratio: 1.2;
    height: auto;
    max-height: none;
  }
  .product-image figcaption {
    font-size: 0.75rem;
  }
  .story {
    padding-block: 74px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .story-content p {
    font-size: 1rem;
    margin-top: 25px;
  }
  .story-content h2 {
    font-size: clamp(2.5rem, 7.5vw, 3.75rem);
  }
  .questions {
    padding-block: 60px 70px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .questions h2 {
    font-size: 2.75rem;
  }
  summary {
    min-height: 76px;
  }
  .closing-inner {
    padding-block: 62px;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
  .closing-actions {
    width: 100%;
    max-width: 350px;
  }
  .site-footer {
    gap: 23px;
    padding-block: 30px;
  }
  .site-footer > p {
    font-size: 1rem;
  }
  .site-footer > div {
    border-top: 1px solid var(--line);
    width: 100%;
    padding-top: 18px;
    justify-content: space-between;
    gap: 12px;
  }
}
@media (max-width: 370px) {
  .site-header {
    padding-inline: 16px;
  }
  .section-wrap {
    width: calc(100% - 32px);
  }
  .hero-copy {
    padding-inline: 16px;
  }
  .hero-visual {
    margin-inline: 16px;
  }
  .hero h1 {
    font-size: 3.875rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .app-link {
    font-size: 0.8125rem;
  }
  .wordmark > span {
    font-size: 1rem;
  }
  .wordmark {
    gap: 7px;
  }
  .orbit-mark {
    width: 28px;
    height: 28px;
  }
  .map-choices button {
    font-size: 0.75rem;
  }
  .site-footer > p {
    font-size: 0.875rem;
  }
}
h1,
h2 {
  overflow-wrap: anywhere;
}
.hero-copy,
.product-copy,
.story-content,
.faq-list,
.collection-heading > div {
  min-width: 0;
}
@media (max-width: 800px) {
  .site-header {
    height: auto;
    min-height: 80px;
    padding-block: 18px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
