:root {
  --black: #090906;
  --black-2: #10100c;
  --panel: #151510;
  --gold: #f4c430;
  --gold-light: #ffe88a;
  --ivory: #f5f2e8;
  --muted: #a29f93;
  --line: rgba(244,196,48,.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  opacity: .035;
  z-index: 100;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  height: 86px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}
.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font: 800 18px/1 "Manrope", sans-serif;
  letter-spacing: -.04em;
}
.brand img { width: 40px; height: 40px; border-radius: 9px; }
.brand strong, .footer-brand strong { color: var(--gold); }
nav { display: flex; gap: 48px; }
.nav-link {
  color: #969388;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .25s;
}
.nav-link:hover, .nav-link.active { color: var(--ivory); }
.nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 7px;
  background: var(--gold);
}
.header-action {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.header-action span { color: var(--gold); font-size: 18px; }
.menu-button { display: none; background: none; border: 0; padding: 9px; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--ivory); }

.hero {
  min-height: 850px;
  padding: 145px clamp(22px, 7vw, 108px) 65px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 86px 0 0 49%;
  border-left: 1px solid rgba(244,196,48,.12);
  background: linear-gradient(135deg, rgba(244,196,48,.06), transparent 53%);
  transform: skewX(-7deg) translateX(8%);
}
.hero-grid {
  position: absolute;
  inset: 86px 0 0;
  opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, #000, transparent 73%);
}
.gold-glow {
  position: absolute;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244,196,48,.13);
  filter: blur(110px);
  animation: drift 9s ease-in-out infinite alternate;
}
.glow-one { right: 7%; top: 20%; }
.glow-two { left: -18%; bottom: -35%; opacity: .45; animation-delay: -3s; }
@keyframes drift { to { transform: translate(35px, -25px) scale(1.12); } }

.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
}
.eyebrow > span { width: 34px; height: 1px; background: var(--gold); }
h1, h2, h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.055em;
}
h1 { font-size: clamp(58px, 6.5vw, 103px); line-height: .96; }
h1 em, h2 em { color: var(--gold); font-style: normal; font-weight: 500; }
.hero-text {
  max-width: 540px;
  margin: 34px 0 39px;
  color: #b5b2a7;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 42px; }
.primary-button {
  min-width: 210px;
  height: 60px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold);
  color: #0d0d09;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s, background .25s;
}
.primary-button:hover { transform: translateY(-4px); background: var(--gold-light); }
.primary-button span { font-size: 21px; }
.android-note { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.android-note i { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }
.android-note small { display: block; color: #77746b; font-size: 8px; letter-spacing: .15em; margin-bottom: 4px; }

.hero-visual {
  height: 620px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.hero-visual > img {
  width: min(820px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transform: translateX(2%);
  filter: saturate(.55) sepia(.18) drop-shadow(0 34px 60px #000);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateX(2%) translateY(-13px); } }
.orbit {
  position: absolute;
  right: -5%;
  width: 500px;
  aspect-ratio: 1;
  border: 1px solid rgba(244,196,48,.24);
  border-radius: 50%;
  animation: spin 25s linear infinite;
}
.orbit-large::before, .orbit-large::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}
.orbit-large::before { left: 73px; top: 68px; }
.orbit-large::after { right: 3px; top: 235px; }
.orbit-small { right: 5%; width: 360px; border-style: dashed; opacity: .5; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.app-count {
  position: absolute;
  z-index: 4;
  left: 6%;
  bottom: 8%;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #111;
  background: var(--gold);
  box-shadow: 0 20px 55px rgba(244,196,48,.2);
}
.app-count strong { font: 800 43px/1 "Manrope"; }
.app-count span { font-size: 8px; line-height: 1.5; font-weight: 800; letter-spacing: .08em; }
.scroll-hint {
  position: absolute;
  left: clamp(22px, 7vw, 108px);
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #68665e;
  font-size: 8px;
  letter-spacing: .2em;
}
.scroll-hint i { width: 78px; height: 1px; background: linear-gradient(90deg, var(--gold) 35%, #292922 35%); }

.ticker {
  overflow: hidden;
  padding: 18px 0;
  color: #111;
  background: var(--gold);
  border-block: 1px solid var(--gold-light);
}
.ticker div {
  width: max-content;
  white-space: nowrap;
  font: 800 11px/1 "Manrope";
  letter-spacing: .28em;
  animation: ticker 24s linear infinite;
}
.ticker span { margin: 0 35px; }
@keyframes ticker { to { transform: translateX(-33.33%); } }

.apps-section { padding: 120px clamp(22px, 7vw, 108px) 140px; background: #0c0c08; }
.section-intro {
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}
.section-intro h2, .statement h2 { font-size: clamp(47px, 5vw, 76px); line-height: 1.03; }
.section-intro > p {
  max-width: 470px;
  justify-self: end;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.app-card {
  min-width: 0;
  padding: 26px;
  overflow: hidden;
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s, border-color .35s;
}
.app-card:hover { transform: translateY(-8px); border-color: rgba(244,196,48,.45); }
.card-meta {
  display: flex;
  justify-content: space-between;
  color: #7e7b72;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}
.available { color: var(--gold); }
.app-art {
  height: 365px;
  display: grid;
  place-items: center;
  position: relative;
}
.app-art img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 46px;
  position: relative;
  z-index: 2;
  box-shadow: 0 34px 55px rgba(0,0,0,.52);
  transition: transform .4s;
}
.app-card:hover .app-art img { transform: scale(1.045) rotate(-2deg); }
.app-halo {
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244,196,48,.1);
  filter: blur(40px);
}
.compass-card .app-halo { background: rgba(42,119,255,.15); }
.app-rings {
  position: absolute;
  width: 315px;
  aspect-ratio: 1;
  border: 1px solid rgba(244,196,48,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 38px rgba(244,196,48,.015);
}
.compass-card .app-rings { border-color: rgba(65,139,255,.28); }
.card-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; }
.app-number { color: var(--gold); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.card-copy h3 { margin-top: 7px; font-size: clamp(40px, 4vw, 58px); line-height: 1; }
.card-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.play-button {
  height: 68px;
  margin-top: 25px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #111;
  background: var(--gold);
  transition: background .25s, padding-left .25s;
}
.play-button:hover { background: var(--gold-light); padding-left: 25px; }
.play-icon { font-size: 23px; }
.play-button small { display: block; font-size: 8px; font-weight: 700; letter-spacing: .11em; }
.play-button strong { font: 700 20px/1.15 "Manrope"; }
.play-button .arrow { margin-left: auto; font-size: 23px; }
.privacy-link {
  margin-top: 18px;
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aaa79d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: color .25s, border-color .25s;
}
.privacy-link:hover { color: var(--gold); border-color: var(--gold); }
.privacy-link span { color: var(--gold); }

.statement {
  min-height: 730px;
  padding: 130px 22px 100px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,.08);
}
.statement::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: 45%;
  border: 1px solid rgba(244,196,48,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(244,196,48,.015), 0 0 0 160px rgba(244,196,48,.01);
}
.statement-mark { position: absolute; left: 7%; top: 10%; opacity: .055; transform: rotate(-10deg); }
.statement-mark img { width: 280px; }
.statement .eyebrow, .statement h2, .statement-copy, .principles { position: relative; z-index: 2; }
.statement-copy { max-width: 570px; color: var(--muted); line-height: 1.75; margin: 32px auto 48px; }
.principles {
  width: min(880px, 92vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255,255,255,.1);
}
.principles span { padding: 20px 12px; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.principles span + span { border-left: 1px solid rgba(255,255,255,.1); }

footer { padding: 65px clamp(22px, 7vw, 108px) 28px; background: #050503; }
.footer-main { display: flex; align-items: center; justify-content: space-between; padding-bottom: 60px; }
.footer-brand { font-size: clamp(35px, 5vw, 64px); }
.footer-brand img { width: clamp(60px, 7vw, 90px); border-radius: 18px; }
.footer-main > a { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom { padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #67655d; font-size: 8px; letter-spacing: .16em; }
.footer-bottom a { transition: color .25s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-policies { display: flex; gap: 24px; }

/* Privacy policy */
.policy-page { background: var(--black); }
.policy-header {
  position: relative;
  background: #090906;
}
.policy-hero {
  min-height: auto;
  padding: 145px clamp(22px, 12vw, 190px) 70px;
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #0d0d09;
}
.policy-title { max-width: 900px; }
.policy-title h1 { font-size: clamp(54px, 7vw, 96px); }
.policy-title h1 em { display: block; }
.policy-meta {
  margin-top: 30px;
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.policy-meta strong { color: var(--ivory); }
.policy-layout {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 90px 0 120px;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(45px, 8vw, 115px);
  justify-content: center;
}
.policy-aside { align-self: start; }
.policy-aside img { width: 72px; height: 72px; border-radius: 16px; margin-bottom: 25px; }
.policy-aside p { margin: 0 0 8px; color: #77746b; font-size: 9px; letter-spacing: .16em; }
.policy-aside strong { color: var(--ivory); font: 700 21px/1.2 "Manrope"; }
.policy-content > p:first-child { margin-top: 0; font-size: 18px; color: #d0cdc2; }
.policy-content h2 {
  margin: 62px 0 20px;
  padding-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  color: var(--ivory);
  font: 700 clamp(23px, 3vw, 31px)/1.25 "Manrope";
  letter-spacing: -.03em;
}
.policy-content h2 span { color: var(--gold); font-size: 11px; letter-spacing: .1em; }
.policy-content h3 {
  margin: 30px 0 10px;
  color: var(--gold-light);
  font: 700 13px/1.4 "Manrope";
  letter-spacing: .08em;
}
.policy-content p, .policy-content li { color: var(--muted); font-size: 15px; line-height: 1.8; }
.policy-content ul { margin: 18px 0 25px; padding-left: 0; list-style: none; }
.policy-content li { position: relative; padding-left: 22px; margin: 7px 0; }
.policy-content li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.policy-content a { color: var(--gold); }
.contact-box {
  margin-top: 25px;
  padding: 25px 28px;
  display: grid;
  gap: 10px;
  background: var(--panel);
  border-left: 2px solid var(--gold);
}
.contact-box p { margin: 0; }
.policy-back {
  display: inline-flex;
  margin-top: 60px;
  gap: 11px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease var(--delay, 0s), transform .8s ease var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-visual { height: 480px; margin-top: -25px; }
  .hero-visual > img { width: min(780px, 100%); transform: translateX(0); }
  @keyframes float { 50% { transform: translateY(-13px); } }
  .hero::before { inset: 45% 0 0; }
  .card-copy { grid-template-columns: 1fr; gap: 17px; }
}

@media (max-width: 720px) {
  .site-header { height: 72px; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 28px 22px;
    flex-direction: column;
    gap: 25px;
    background: rgba(9,9,6,.97);
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open { display: flex; }
  .header-action { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 900px; padding: 120px 22px 50px; align-content: start; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-text { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { height: 355px; width: calc(100% + 44px); margin-left: -22px; }
  .hero-visual > img { width: calc(100% - 20px); max-width: 620px; }
  .orbit { width: 315px; right: -45px; }
  .orbit-small { width: 225px; right: 0; }
  .app-count { width: 105px; left: 5%; bottom: 0; }
  .app-count strong { font-size: 29px; }
  .app-count span { font-size: 6px; }
  .scroll-hint { display: none; }
  .apps-section { padding: 85px 20px; }
  .section-intro { grid-template-columns: 1fr; gap: 27px; }
  .section-intro > p { justify-self: start; }
  .apps-grid { grid-template-columns: 1fr; }
  .app-card { padding: 21px; }
  .app-art { height: 330px; }
  .app-art img { width: 210px; height: 210px; }
  .card-copy h3 { font-size: 44px; }
  .statement { min-height: 680px; padding-top: 100px; }
  .statement h2 { font-size: 44px; }
  .principles { grid-template-columns: 1fr; }
  .principles span + span { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .footer-main { align-items: flex-start; flex-direction: column; gap: 35px; }
  .footer-bottom { gap: 20px; }
  .policy-header .header-action { display: flex; }
  .policy-hero { padding: 125px 22px 58px; }
  .policy-title h1 { font-size: 52px; }
  .policy-meta { align-items: flex-start; flex-direction: column; gap: 9px; }
  .policy-layout { grid-template-columns: 1fr; padding: 65px 0 90px; gap: 45px; }
  .policy-aside { position: static; }
  .policy-content h2 { margin-top: 50px; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-policies { width: 100%; order: 3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
