:root {
  --night: #111126;
  --night-soft: #1b1938;
  --indigo: #292652;

  --gold: #f5bd54;
  --gold-light: #ffd979;

  --coral: #f27665;
  --coral-deep: #df6258;

  --lavender: #f0eff9;
  --lavender-deep: #e3e1f1;

  --ink: #17162b;
  --muted: #67657b;

  --white: #ffffff;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --container: 1180px;
}


/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  min-width: 320px;

  background: var(--lavender);
  color: var(--ink);

  font-family: var(--sans);

  font-size: 16px;
  line-height: 1.7;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

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

::selection {
  background: var(--gold);
  color: var(--night);
}


/* =========================
   CONTAINER
========================= */

.container {
  width: min(calc(100% - 48px),
      var(--container));

  margin-inline: auto;
}


/* =========================
   SKIP LINK
========================= */

.skip-link {
  position: fixed;

  z-index: 1000;

  top: 12px;
  left: 12px;

  padding: 10px 16px;

  background: white;
  color: var(--night);

  border-radius: 10px;

  transform: translateY(-150%);

  transition: transform 0.2s ease;
}

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


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  z-index: 100;

  top: 18px;
  left: 0;

  width: 100%;

  pointer-events: none;

  background: transparent;

  border: 0;
}


/* Main floating capsule */

.nav {
  width: fit-content;
  max-width: calc(100% - 32px);
  margin-inline: auto;

  min-height: 54px;

  display: flex;
  align-items: center;

  gap: 5px;

  padding: 6px 7px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  border-radius: 999px;

  background:
    linear-gradient(135deg,
      rgba(29, 28, 57, 0.94),
      rgba(17, 17, 38, 0.91));

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 14px 45px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  pointer-events: auto;
}


/* BRAND */
.brand {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  flex-shrink: 0;

  height: 42px;

  padding: 0 13px 0 8px;

  border-radius: 999px;

  color: #ffffff !important;

  background: transparent;

  cursor: pointer;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: -0.02em;

  white-space: nowrap;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.brand:hover {
  background: rgba(255, 255, 255, 0.07);
}

.brand-name {
  color: #ffffff !important;
}

/* BRAND MARK */

.brand-mark {
  position: relative;

  display: inline-grid;

  place-items: center;

  flex-shrink: 0;

  width: 27px;
  height: 27px;

  border: 1px solid rgba(255, 255, 255, 0.65);

  border-radius: 50%;

  overflow: hidden;
}

.brand-mark::before {
  content: "";

  position: absolute;

  width: 16px;
  height: 16px;

  top: 6px;
  left: 6px;

  border-radius: 50%;

  background: var(--gold);
}

.brand-mark span {
  position: absolute;

  width: 32px;
  height: 13px;

  left: -3px;
  bottom: -7px;

  border-radius: 50%;

  background: var(--night);
}



/* NAV MENU */

.nav-menu {
  display: flex;

  align-items: center;

  gap: 2px;

  overflow: hidden;
}

.nav-menu .nav-link {
  height: 40px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0 14px;

  border-radius: 999px;

  background: transparent;

  color: rgba(255, 255, 255, 0.62) !important;

  opacity: 1;

  cursor: pointer;

  font-size: 11px;

  font-weight: 600;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-menu .nav-link:hover {
  color: #ffffff !important;

  background: rgba(255, 255, 255, 0.07);

  transform: translateY(-1px);
}



/* =========================
   PAGE SYSTEM
========================= */

.nav-menu .nav-link.active {
  color: var(--night) !important;

  background: var(--gold);

  box-shadow:
    0 4px 16px rgba(245, 189, 84, 0.16);
}

.nav-menu .nav-link.active:hover {
  color: var(--night) !important;

  background: var(--gold-light);
}

/* Only the active page section is displayed. */
.page-section {
  display: none;

  min-height: calc(100vh - 78px);
  padding-top: 78px;
}

.page-section.active {
  display: block;
}

/* Home uses flex layout only while active. */
.hero-section {
  display: none;
}

.hero-section.active {
  display: flex;
}

/* Contact uses flex layout only while active. */
.contact-section {
  display: none;
}

.contact-section.active {
  display: flex;
}


/* =========================
   HERO
========================= */

.hero-section {
  position: relative;

  min-height: 100svh;

  overflow: hidden;

  flex-direction: column;

  justify-content: center;

  color: white;

  isolation: isolate;

  background:
    radial-gradient(circle at 72% 62%, rgba(242, 118, 101, 0.16), transparent 27%),
    radial-gradient(circle at 34% 28%, rgba(72, 65, 125, 0.28), transparent 36%),
    linear-gradient(155deg, #101023 0%, #14132d 52%, #201b3c 100%);
}

.hero-content {
  position: relative;

  z-index: 5;

  width: min(calc(100% - 48px), var(--container));

  margin-inline: auto;

  display: flex;

  align-items: center;

  min-height: 100svh;

  padding-top: 120px;
  padding-bottom: 120px;
}

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

  transform: translateY(-2vh);
}

.hero-kicker {
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.52);

  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-section h1 {
  max-width: 610px;

  margin: 0;

  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.2vw, 6.2rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero-section h1 em {
  display: block;

  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

.hero-description {
  max-width: 500px;

  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.67);

  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-section .button {
  min-height: 50px;

  padding: 0 20px;

  font-size: 12px;

  letter-spacing: 0.01em;
}

.hero-section .button-primary {
  box-shadow: 0 10px 35px rgba(245, 189, 84, 0.14);
}

.hero-section .button-secondary {
  background: rgba(255, 255, 255, 0.025);
}

/* EYEBROW */

.eyebrow {
  display: flex;

  align-items: center;

  gap: 9px;

  margin: 0 0 24px;

  color: rgba(255,
      255,
      255,
      0.62);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--gold);

  box-shadow:
    0 0 14px rgba(245,
      189,
      84,
      0.6);
}

.eyebrow-dark {
  color: var(--muted);
}


/* HERO TITLE */

.hero-section h1 {
  max-width: 820px;

  margin: 0;

  font-family: var(--serif);

  font-size: clamp(3.7rem,
      8vw,
      7.8rem);

  font-weight: 600;

  line-height: 0.92;

  letter-spacing: -0.065em;
}

.hero-section h1 em {
  display: block;

  color: var(--gold);

  font-style: normal;

  font-weight: 500;
}


/* HERO SIDE NOTE */

.hero-note {
  position: absolute;

  right: 0;

  top: 50%;

  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(255,
      255,
      255,
      0.32);

  font-size: 9px;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  writing-mode: vertical-rl;

  transform: translateY(-50%);
}

.hero-note span:first-child {
  color: var(--gold);
}


/* BOTTOM TEXT */

.hero-bottom {
  position: absolute;

  z-index: 7;

  bottom: 28px;

  left: 50%;

  display: flex;

  align-items: center;

  gap: 15px;

  color: rgba(255,
      255,
      255,
      0.36);

  font-size: 10px;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  transform: translateX(-50%);
}

.hero-bottom-dot {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(255,
      255,
      255,
      0.25);
}


/* =========================
   SUNRISE
========================= */

.hero-horizon {
  position: absolute;

  z-index: 1;

  inset: 0;

  pointer-events: none;

  overflow: hidden;
}

.sun {
  position: absolute;

  left: 68%;

  bottom: -7vh;

  width: min(58vw, 720px);

  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(circle at 50% 45%,
      #fff0a9 0%,
      var(--gold) 20%,
      var(--coral) 52%,
      rgba(242,
        118,
        101,
        0.1) 71%,
      transparent 72%);

  transform:
    translate(-50%, 110%);

  opacity: 0.84;

  animation:
    sunrise 2.1s cubic-bezier(0.2,
      0.72,
      0.25,
      1) 0.2s forwards;
}

.sun-glow {
  position: absolute;

  left: 68%;

  bottom: -2vh;

  width: min(78vw, 960px);

  height: min(78vw, 960px);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(242,
        118,
        101,
        0.18),
      rgba(245,
        189,
        84,
        0.08) 35%,
      transparent 68%);

  transform:
    translateX(-50%);

  opacity: 0;

  animation:
    glow-in 2.2s ease 0.4s forwards;
}


/*
  NO HORIZONTAL HORIZON LINE.
  The previous .horizon-line has been
  deliberately removed.
*/


/* LAND */

.horizon-land {
  position: absolute;

  z-index: 5;

  bottom: 0;

  width: 100%;

  background: var(--night);
}

.horizon-land-one {
  height: 18vh;

  clip-path: polygon(0 22%,
      8% 18%,
      17% 25%,
      27% 11%,
      38% 22%,
      47% 17%,
      58% 25%,
      68% 13%,
      78% 23%,
      89% 15%,
      100% 20%,
      100% 100%,
      0 100%);
}

.horizon-land-two {
  height: 12vh;

  opacity: 0.92;

  clip-path: polygon(0 28%,
      14% 18%,
      24% 30%,
      36% 19%,
      48% 29%,
      59% 17%,
      73% 27%,
      83% 15%,
      100% 26%,
      100% 100%,
      0 100%);
}


@keyframes sunrise {

  0% {
    transform:
      translate(-50%, 110%);
  }

  100% {
    transform:
      translate(-50%, 50%);
  }

}


@keyframes glow-in {

  0% {
    opacity: 0;

    transform:
      translate(-50%, 10%) scale(0.7);
  }

  100% {
    opacity: 1;

    transform:
      translate(-50%, 0) scale(1);
  }

}


/* =========================
   CONTENT
========================= */

.content-section {
  background:
    radial-gradient(circle at 85% 12%,
      rgba(245,
        189,
        84,
        0.12),
      transparent 22rem),
    var(--lavender);

  color: var(--ink);

  padding-top: 150px;

  padding-bottom: 120px;
}

.section-intro {
  max-width: 750px;

  margin-bottom: 65px;
}

.section-intro h2,
.contact-intro h2,
.legal-heading h2 {
  margin: 0;

  font-family: var(--serif);

  font-size: clamp(3rem,
      6vw,
      5.5rem);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.section-intro>p:last-child {
  max-width: 580px;

  margin-top: 25px;

  color: var(--muted);

  font-size: 17px;
}


/* =========================
   APP GRID
========================= */

.apps-grid {
  display: grid;

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

  gap: 24px;
}

.app-card {
  overflow: hidden;

  border-radius: 26px;

  background: white;

  border: 1px solid rgba(39,
      36,
      81,
      0.07);

  box-shadow:
    0 20px 55px rgba(29,
      27,
      55,
      0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.app-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 28px 65px rgba(29,
      27,
      55,
      0.12);
}

.app-preview {
  position: relative;

  height: 300px;

  overflow: hidden;

  color: white;
}

.app-card-gold .app-preview {
  background:
    linear-gradient(145deg,
      #242147,
      #4c3157 55%,
      #d86c5e);
}

.app-card-indigo .app-preview {
  background:
    linear-gradient(145deg,
      #17162f,
      #282652);
}

.app-card-coral .app-preview {
  background:
    linear-gradient(145deg,
      #d65e5a,
      #ef8270);
}

.app-card-lavender .app-preview {
  background:
    linear-gradient(145deg,
      #d9d7eb,
      #aaa7cf);
}


/* =========================
   APP PREVIEWS
========================= */

.preview-status {
  position: absolute;

  top: 24px;

  left: 25px;
  right: 25px;

  display: flex;

  justify-content: space-between;

  color: rgba(255,
      255,
      255,
      0.6);

  font-size: 10px;

  letter-spacing: 0.1em;
}

.preview-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--gold);
}

.preview-sun {
  position: absolute;

  left: 50%;

  bottom: -125px;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      #fff0a9,
      var(--gold) 30%,
      var(--coral) 64%,
      transparent 65%);

  transform:
    translateX(-50%);
}

.preview-sun div {
  position: absolute;

  left: -80px;

  bottom: 124px;

  width: 490px;

  height: 1px;

  background: rgba(255,
      255,
      255,
      0.35);
}

.preview-horizon {
  position: absolute;

  left: 0;
  right: 0;

  bottom: 0;

  height: 75px;

  background: #25213d;

  clip-path: polygon(0 42%,
      15% 30%,
      30% 46%,
      45% 23%,
      62% 42%,
      77% 31%,
      100% 45%,
      100% 100%,
      0 100%);
}

.preview-copy {
  position: absolute;

  left: 25px;

  bottom: 27px;

  display: flex;

  flex-direction: column;

  z-index: 3;
}

.preview-copy small {
  color: rgba(255,
      255,
      255,
      0.55);

  font-size: 8px;

  letter-spacing: 0.15em;
}

.preview-copy strong {
  font-family: var(--serif);

  font-size: 24px;

  font-weight: 500;
}


/* LEDGER */

.ledger-top {
  position: absolute;

  top: 35px;
  left: 32px;
}

.ledger-top span {
  display: block;

  margin-bottom: 8px;

  color: rgba(255,
      255,
      255,
      0.42);

  font-size: 9px;

  letter-spacing: 0.16em;
}

.ledger-top strong {
  font-family: var(--serif);

  font-size: 38px;

  font-weight: 500;
}

.ledger-bars {
  position: absolute;

  right: 30px;
  left: 30px;

  bottom: 62px;

  height: 105px;

  display: flex;

  align-items: flex-end;

  gap: 12px;

  border-bottom: 1px solid rgba(255,
      255,
      255,
      0.15);
}

.ledger-bars span {
  flex: 1;

  min-height: 15px;

  border-radius: 5px 5px 0 0;

  background:
    linear-gradient(to top,
      var(--coral),
      var(--gold));

  opacity: 0.85;
}

.ledger-labels {
  position: absolute;

  right: 30px;
  left: 30px;

  bottom: 38px;

  display: flex;

  justify-content: space-between;

  color: rgba(255,
      255,
      255,
      0.35);

  font-size: 8px;
}


/* QUIET SPACE */

.quiet-preview {
  display: grid;

  place-items: center;
}

.quiet-orbit {
  position: absolute;

  width: 200px;
  height: 200px;

  border: 1px solid rgba(255,
      255,
      255,
      0.25);

  border-radius: 50%;
}

.orbit-one {
  transform:
    rotate(25deg) scaleX(0.5);
}

.orbit-two {
  transform:
    rotate(-25deg) scaleX(0.5);
}

.quiet-center {
  position: relative;

  z-index: 2;

  width: 105px;
  height: 105px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  border-radius: 50%;

  background: rgba(255,
      255,
      255,
      0.1);

  backdrop-filter: blur(8px);
}

.quiet-center span {
  font-family: var(--serif);

  font-size: 25px;
}

.quiet-center small {
  color: rgba(255,
      255,
      255,
      0.55);

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 0.15em;
}

.quiet-bottom {
  position: absolute;

  left: 25px;

  bottom: 24px;

  color: rgba(255,
      255,
      255,
      0.55);

  font-size: 8px;

  letter-spacing: 0.16em;
}


/* SCOUTLINE */

.scout-preview {
  color: var(--indigo);
}

.map-grid {
  position: absolute;

  inset: 0;

  opacity: 0.25;

  background-image:
    linear-gradient(rgba(39,
        36,
        81,
        0.35) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(39,
        36,
        81,
        0.35) 1px,
      transparent 1px);

  background-size: 35px 35px;

  transform:
    rotate(-7deg) scale(1.2);
}

.map-route {
  position: absolute;

  width: 370px;
  height: 130px;

  top: 60px;
  left: 55px;

  border: 3px solid var(--coral);

  border-top-color: transparent;
  border-right-color: transparent;

  border-radius: 50%;

  transform: rotate(-14deg);
}

.map-pin {
  position: absolute;

  width: 15px;
  height: 15px;

  border-radius: 50%;

  background: var(--coral);

  border: 3px solid white;

  box-shadow:
    0 3px 12px rgba(39,
      36,
      81,
      0.25);
}

.pin-one {
  top: 68px;
  left: 90px;
}

.pin-two {
  top: 170px;
  left: 245px;
}

.pin-three {
  top: 105px;
  right: 85px;
}

.map-card {
  position: absolute;

  left: 25px;
  bottom: 22px;

  padding: 13px 16px;

  border-radius: 12px;

  background: rgba(255,
      255,
      255,
      0.9);

  box-shadow:
    0 8px 25px rgba(39,
      36,
      81,
      0.12);
}

.map-card small {
  display: block;

  margin-bottom: 3px;

  color: var(--muted);

  font-size: 7px;

  letter-spacing: 0.13em;
}

.map-card strong {
  font-size: 12px;
}


/* =========================
   APP CARD BODY
========================= */

.app-card-body {
  padding: 27px 28px 30px;
}

.app-card-heading {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;
}

.app-card-heading>div {
  min-width: 0;
}

.app-number {
  display: block;

  margin-bottom: 4px;

  color: var(--coral-deep);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.16em;
}

.app-card h3 {
  margin: 0;

  font-family: var(--serif);

  font-size: 28px;

  line-height: 1;

  letter-spacing: -0.04em;
}

.app-status {
  flex-shrink: 0;

  padding: 5px 9px;

  border-radius: 999px;

  color: var(--coral-deep);

  background: rgba(242,
      118,
      101,
      0.1);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.app-card-body>p {
  min-height: 72px;

  margin: 18px 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

.app-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.app-tags span {
  padding: 5px 9px;

  border-radius: 999px;

  color: #656278;

  background: var(--lavender);

  font-size: 9px;

  font-weight: 600;
}


/* =========================
   APPS NOTE
========================= */

.apps-note {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 32px;

  padding: 24px 27px;

  border: 1px dashed rgba(39,
      36,
      81,
      0.22);

  border-radius: 18px;

  background: rgba(255,
      255,
      255,
      0.28);
}

.apps-note-mark {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--night);
}

.apps-note-mark span {
  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: var(--gold);
}

.apps-note strong {
  display: block;

  margin-bottom: 2px;

  font-size: 13px;
}

.apps-note p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
}


/* =========================
   LEGAL
========================= */

.legal-container {
  max-width: 900px;
}

.legal-heading {
  margin-bottom: 48px;
}

.legal-meta {
  margin: 19px 0 0;

  color: var(--muted);

  font-size: 12px;
}

.placeholder-notice {
  margin-bottom: 48px;

  padding: 20px 23px;

  border-left: 3px solid var(--gold);

  border-radius: 0 14px 14px 0;

  background: rgba(245,
      189,
      84,
      0.13);

  color: #4b4655;

  font-size: 13px;
}

.placeholder-notice strong {
  display: block;

  margin-bottom: 3px;

  color: var(--ink);
}

.legal-copy {
  max-width: 760px;
}

.legal-copy h3 {
  margin: 42px 0 10px;

  font-size: 16px;

  line-height: 1.4;

  font-weight: 700;
}

.legal-copy p {
  margin: 0 0 16px;

  color: #5e5b70;

  font-size: 15px;
}

.inline-link {
  display: inline;

  padding: 0;

  color: var(--coral-deep);

  background: transparent;

  cursor: pointer;

  text-decoration: underline;

  text-underline-offset: 3px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
  min-height: calc(100vh - 78px);

  align-items: center;
}

.contact-container {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: clamp(50px,
      9vw,
      120px);

  align-items: center;
}

.contact-intro {
  max-width: 500px;
}

.contact-intro h2 {
  font-size: clamp(3rem,
      5.4vw,
      5.4rem);
}

.contact-intro>p:last-child {
  margin-top: 26px;

  color: var(--muted);
}

.contact-card {
  position: relative;

  overflow: hidden;

  padding: clamp(30px,
      5vw,
      54px);

  border-radius: 34px;

  background:
    radial-gradient(circle at 88% 0%,
      rgba(245,
        189,
        84,
        0.25),
      transparent 18rem),
    var(--night);

  color: white;

  box-shadow:
    0 30px 70px rgba(24,
      22,
      50,
      0.14);
}

.contact-card-top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 60px;
}

.contact-label {
  color: rgba(255,
      255,
      255,
      0.48);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.contact-status span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--gold);
}

.email-address {
  position: relative;

  z-index: 2;

  display: block;

  width: fit-content;

  color: var(--gold);

  font-family: var(--serif);

  font-size: clamp(1.8rem,
      4vw,
      2.5rem);

  line-height: 1.1;

  letter-spacing: -0.045em;

  text-decoration: none;

  overflow-wrap: anywhere;
}

.email-address:hover {
  color: var(--gold-light);
}

.contact-card>p {
  position: relative;

  z-index: 2;

  max-width: 500px;

  margin: 23px 0 28px;

  color: rgba(255,
      255,
      255,
      0.53);

  font-size: 13px;
}

.nav-menu .nav-contact {
  margin-left: 3px;

  color: var(--gold) !important;

  background: rgba(245, 189, 84, 0.09);

  border: 1px solid rgba(245, 189, 84, 0.2);
}

.nav-menu .nav-contact:hover {
  color: var(--night) !important;

  background: var(--gold);
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 27px 0;

  color: rgba(255,
      255,
      255,
      0.48);

  background: var(--night);

  font-size: 11px;
}

.footer-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 9px;

  color: rgba(255,
      255,
      255,
      0.8);

  font-size: 12px;

  font-weight: 600;
}

.footer-brand .brand-mark.small {
  width: 23px;
  height: 23px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;

  gap: 18px;
}

.footer-links .nav-link {
  padding: 2px 0;

  color: rgba(255,
      255,
      255,
      0.7);

  background: transparent;

  cursor: pointer;

  font-size: 11px;
}

.footer-links .nav-link:hover {
  color: var(--gold);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .container {
    width: min(calc(100% - 40px),
        var(--container));
  }

  .hero-content {
    padding-top: 125px;
    padding-bottom: 105px;
  }

  .hero-section h1 {
    font-size: clamp(4rem,
        10vw,
        6.5rem);
  }

  .hero-note {
    display: none;
  }

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

  .contact-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

}


/* =========================
   MOBILE NAV
========================= */

@media (max-width: 760px) {

  .site-header {
    top: 12px;
  }

  .nav {
    width: calc(100% - 24px);

    max-width: none;

    min-height: 54px;

    padding: 6px;

    gap: 5px;

    border-radius: 20px;
  }


  /*
   * Keep the brand compact.
   */

  .brand {
    height: 40px;

    padding: 0 8px;

    gap: 7px;
  }

  .brand-name {
    display: none;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }


  /*
   * Navigation becomes a horizontal
   * floating strip instead of a dropdown.
   */

  .nav-menu {
    flex: 1;

    min-width: 0;

    display: flex;

    gap: 3px;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

    -ms-overflow-style: none;

    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;
  }

  .nav-menu::-webkit-scrollbar {
    display: none;
  }


  .nav-menu .nav-link {
    flex-shrink: 0;

    height: 40px;

    padding: 0 12px;

    font-size: 10px;

    scroll-margin-inline: 12px;
  }


  .nav-menu .nav-contact {
    margin-left: 0;
  }

}



/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

  .hero-content {
    padding-top: 118px;
    padding-bottom: 70px;
  }

  .eyebrow {
    margin-bottom: 18px;

    font-size: 9px;
  }



  .hero-section h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.7;
  }

  }