:root {
  --ink: #0b1018;
  --muted: #5a6472;
  --line: #d9dfe6;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --blue: #0878f9;
  --blue-dark: #0057c8;
  --mint: #b8f4d2;
  --coral: #ff715b;
  --yellow: #ffd75e;
  --focus: #ffb000;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}

.brand span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-nav .nav-action {
  padding: 9px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
}

.site-header.scrolled .nav-action,
.site-header.open .nav-action {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.menu-button {
  display: none;
  color: inherit;
  background: transparent;
  border: 0;
  font-weight: 800;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(88svh, 880px);
  overflow: hidden;
  color: #fff;
  background: #05070a;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background: rgba(4, 8, 14, 0.64);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-eyebrow {
  color: var(--mint);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 13rem;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 680px;
  margin: 30px 0 0;
  color: #eef3f8;
  font-size: 1.45rem;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 140ms ease, background-color 140ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(5, 9, 15, 0.28);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: #d7dee7;
  font-size: 0.81rem;
  font-weight: 750;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 215, 94, 0.16);
}

.status-dot.online {
  background: #5ce394;
  box-shadow: 0 0 0 4px rgba(92, 227, 148, 0.16);
}

.status-separator {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.34);
}

.motion-control {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  z-index: 3;
  padding: 8px 11px;
  color: #fff;
  background: rgba(5, 9, 15, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 800;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  min-height: 210px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle-number {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.principle strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.section {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.4fr 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 56px;
}

.section-heading h2,
.security-copy h2,
.share-copy h2,
.access-section h2 {
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading > p:last-child {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.locker-section {
  background: var(--soft);
}

.locker-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(250px, 0.55fr);
  border: 1px solid #bac4cf;
  background: #0b1018;
}

.locker-screen {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #05070a;
}

.locker-screen video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.live-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(5, 9, 15, 0.82);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ce394;
}

.screen-detail {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(5, 9, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.screen-detail span {
  color: #c8d1dc;
  font-size: 0.82rem;
}

.locker-readings {
  display: grid;
  align-content: stretch;
}

.locker-readings div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 140px;
  padding: 24px 28px;
  color: #fff;
  border-bottom: 1px solid #313946;
}

.locker-readings div:last-child {
  border-bottom: 0;
}

.locker-readings span {
  color: #8f9aaa;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.locker-readings strong {
  font-size: 1.1rem;
}

.locker-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.locker-features article {
  padding: 30px 30px 0 0;
  border-right: 1px solid var(--line);
}

.locker-features article + article {
  padding-left: 30px;
}

.locker-features article:last-child {
  border-right: 0;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.locker-features h3 {
  margin: 24px 0 8px;
  font-size: 1.15rem;
}

.locker-features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.market-section {
  color: #fff;
  background: var(--ink);
}

.section-heading.inverse .eyebrow {
  color: var(--mint);
}

.section-heading.inverse > p:last-child {
  color: #b9c3cf;
}

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

.market-item {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
}

.market-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe5eb;
}

.item-body {
  min-height: 150px;
  padding: 20px;
}

.item-body span {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.item-body h3 {
  margin: 8px 0 4px;
  font-size: 1.05rem;
}

.item-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.concept-note {
  margin: 20px 0 0;
  color: #8f9aaa;
  font-size: 0.78rem;
}

.membership-section {
  background: #fff;
}

.plan-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.plan-switcher button {
  min-width: 110px;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
}

.plan-switcher button[aria-selected="true"] {
  color: #fff;
  background: var(--ink);
}

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

.plans[hidden] {
  display: none;
}

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

.plan {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.plan.featured {
  border: 2px solid var(--blue);
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.plan-top p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.locker-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 31px;
  height: 28px;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.keepsake-icon {
  height: 23px;
  border-radius: 5px 5px 3px 3px;
}

.keepsake-icon::after,
.compact-icon::after,
.vault-icon::after,
.gallery-icon::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 7px;
  content: "";
  background: var(--yellow);
  transform: translateX(-50%);
}

.compact-icon {
  width: 30px;
  height: 30px;
  background: transparent;
  border-width: 3px;
}

.vault-icon {
  width: 32px;
  height: 32px;
  background: transparent;
  border-width: 3px;
  border-radius: 50%;
}

.gallery-icon {
  width: 34px;
  height: 30px;
  background: transparent;
  border-width: 3px;
}

.gallery-icon::before {
  position: absolute;
  inset: 4px;
  content: "";
  border: 1px solid var(--ink);
}

.price {
  display: block;
  margin-bottom: 20px;
  font-size: 2.6rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.plan > p {
  min-height: 90px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan dl {
  margin: auto 0 0;
}

.plan dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.plan dt {
  color: var(--muted);
}

.plan dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.trial-note,
.availability-note {
  display: block;
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.availability-note {
  color: var(--muted);
}

.security-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  color: #fff;
  background: #101820;
}

.security-copy {
  align-self: start;
  position: sticky;
  top: 118px;
}

.security-copy .eyebrow {
  color: var(--mint);
}

.security-copy p:last-child {
  max-width: 520px;
  color: #b9c3cf;
  font-size: 1rem;
}

.security-list {
  border-top: 1px solid #3a424d;
}

.security-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #3a424d;
}

.security-list span {
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.security-list p {
  margin: 0;
  color: #b9c3cf;
}

.security-list strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.share-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  background: var(--mint);
}

.share-visual {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 310px;
}

.share-visual > img {
  width: 128px;
  height: 128px;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(11, 16, 24, 0.15);
}

.share-line {
  flex: 1;
  height: 2px;
  background: var(--ink);
}

.profile-preview {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 13px;
  align-items: center;
  width: min(100%, 340px);
  padding: 17px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 6px;
}

.profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.profile-preview strong,
.profile-preview small {
  display: block;
}

.profile-preview small {
  color: var(--muted);
}

.profile-live {
  padding: 5px 7px;
  color: #0c5b31;
  background: var(--mint);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.share-copy p:not(.eyebrow) {
  color: #324337;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
  text-underline-offset: 5px;
}

.access-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.access-section > div:last-child {
  padding-top: 10px;
}

.access-section p:not(.eyebrow) {
  margin: 0 0 25px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px 40px;
  align-items: center;
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  background: #fff;
}

.footer-brand {
  color: var(--ink);
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  font-size: 0.82rem;
  font-weight: 800;
}

.legal {
  grid-column: 1 / 3;
  max-width: 760px;
}

.site-footer .made-in {
  text-align: right;
}

.made-in span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 16px;
  margin-left: 4px;
  color: #fff;
  background: var(--blue);
  font-size: 0.57rem;
  font-weight: 900;
}

.credits-page {
  width: min(760px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 150px 0 80px;
}

.credits-page h1 {
  margin: 0;
  font-size: 4.8rem;
  line-height: 1;
}

.credits-page > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.05rem;
}

.credits-page ul {
  margin: 36px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.credits-page li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 64px;
    padding: 10px 20px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px;
    color: var(--ink);
    background: #fff;
  }

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

  .site-nav a {
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .site-nav .nav-action {
    margin-top: 16px;
    color: #fff;
    text-align: center;
    background: var(--ink);
    border: 0;
  }

  .hero {
    min-height: 86svh;
  }

  .hero h1 {
    font-size: 10rem;
  }

  .section-heading h2,
  .security-copy h2,
  .share-copy h2,
  .access-section h2 {
    font-size: 3.8rem;
  }

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

  .principle {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-number {
    margin-bottom: 22px;
  }

  .section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .locker-stage {
    grid-template-columns: 1fr;
  }

  .locker-readings {
    grid-template-columns: repeat(4, 1fr);
  }

  .locker-readings div {
    min-height: 110px;
    padding: 18px;
    border-right: 1px solid #313946;
    border-bottom: 0;
  }

  .locker-readings div:last-child {
    border-right: 0;
  }

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

  .security-section {
    gap: 46px;
  }

  .share-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .share-visual {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .hero-content {
    width: calc(100% - 36px);
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: 6rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-status {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .motion-control {
    right: 18px;
    bottom: 20px;
  }

  .section {
    padding: 78px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .section-heading h2,
  .security-copy h2,
  .share-copy h2,
  .access-section h2 {
    font-size: 3rem;
  }

  .locker-screen,
  .locker-screen video {
    min-height: 470px;
  }

  .locker-readings {
    grid-template-columns: repeat(2, 1fr);
  }

  .locker-readings div {
    border-right: 1px solid #313946;
    border-bottom: 1px solid #313946;
  }

  .locker-readings div:nth-child(even) {
    border-right: 0;
  }

  .locker-readings div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .screen-detail {
    align-items: flex-start;
    flex-direction: column;
  }

  .locker-features {
    grid-template-columns: 1fr;
  }

  .locker-features article,
  .locker-features article + article {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .locker-features article:last-child {
    border-bottom: 0;
  }

  .market-grid,
  .plans,
  .lifetime-plans {
    grid-template-columns: 1fr;
  }

  .market-grid {
    gap: 12px;
  }

  .plan {
    min-height: 390px;
  }

  .security-section,
  .access-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .security-copy {
    position: static;
  }

  .share-visual {
    align-items: stretch;
    flex-direction: column;
  }

  .share-visual > img {
    width: 94px;
    height: 94px;
  }

  .share-line {
    width: 2px;
    min-height: 34px;
    margin-left: 46px;
  }

  .profile-preview {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal,
  .site-footer .made-in {
    grid-column: 1;
    text-align: left;
  }

  .credits-page {
    padding-top: 120px;
  }

  .credits-page h1 {
    font-size: 3.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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