:root {
  --bg: #0d0d11;
  --bg-soft: #121611;
  --card: rgba(20, 22, 18, 0.80);
  --card-strong: rgba(25, 27, 22, 0.94);
  --text: #f2eef2;
  --muted: #c8c0ca;
  --muted-2: #918995;
  --gold: #b8954d;
  --gold-light: #d6b864;
  --gold-dark: #775525;
  --green: #24352c;
  --green-soft: #1a241d;
  --line: rgba(214, 184, 100, 0.22);
  --white-line: rgba(255, 255, 255, 0.10);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(184, 149, 77, 0.16), transparent 30%),
    radial-gradient(circle at 85% 4%, rgba(36, 53, 44, 0.55), transparent 28%),
    linear-gradient(180deg, #121318 0%, #0d0d11 36%, #10100f 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(214, 184, 100, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 184, 100, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 72px);
  background: rgba(13, 13, 17, 0.78);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.brand span { font-size: 1.05rem; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-weight: 650;
}

.nav a:hover { color: var(--gold-light); }

.nav-play {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(184, 149, 77, 0.10);
  color: var(--text);
}

.nav-play:hover { background: rgba(184, 149, 77, 0.18); }

.section-pad {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 86px);
}

.narrow {
  max-width: 900px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 75px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.lead {
  max-width: 610px;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17130a;
  box-shadow: 0 12px 32px rgba(184, 149, 77, 0.28);
}

.secondary {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  color: var(--text);
}

.mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-facts span {
  padding: 8px 13px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.original-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(214, 184, 100, 0.28);
  border-radius: 999px;
  background: rgba(17, 18, 15, 0.62);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.badge-ring {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(214, 184, 100, 0.62);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.badge-copy {
  display: grid;
  gap: 1px;
}

.badge-copy strong {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.badge-copy small {
  color: var(--muted-2);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-height: clamp(470px, 48vw, 660px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 184, 100, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184, 149, 77, 0.19), rgba(36, 53, 44, 0.12) 45%, transparent 70%);
  box-shadow: inset 0 0 70px rgba(214, 184, 100, 0.06);
  z-index: -2;
}

.preview-main,
.preview-orbit {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow);
}

.preview-main {
  width: clamp(210px, 24vw, 300px);
  border-radius: 32px;
  transform: rotate(-1.5deg);
  z-index: 3;
}

.preview-main img,
.preview-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.preview-orbit {
  width: clamp(150px, 17vw, 220px);
  border-radius: 27px;
  opacity: 0.84;
  z-index: 1;
}

.preview-left {
  left: 3%;
  top: 18%;
  transform: rotate(-8deg);
}

.preview-right {
  right: 2%;
  bottom: 13%;
  transform: rotate(8deg);
}

.preview-logo {
  position: absolute;
  right: 9%;
  top: 11%;
  width: clamp(72px, 8vw, 108px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(214, 184, 100, 0.38);
  background: #151611;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  z-index: 4;
}

.preview-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-glow {
  position: absolute;
  right: -10vw;
  top: 15vh;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(184, 149, 77, 0.20), transparent 66%);
  filter: blur(16px);
}

.intro {
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: clamp(46px, 6vw, 76px);
}

.intro p {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.48;
  color: var(--text);
  letter-spacing: -0.03em;
  text-align: center;
}

.section-title {
  max-width: 840px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 188px;
  padding: 23px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-strong), rgba(20, 19, 25, 0.72));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 184, 100, 0.30);
}

.icon {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 1.9rem;
}

.feature-card p { margin-bottom: 0; }

.showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(184, 149, 77, 0.05));
}

.screenshot-carousel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 22px;
  margin-inline: -4px;
  scrollbar-color: rgba(214, 184, 100, 0.58) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.screenshot-carousel::-webkit-scrollbar { height: 10px; }

.screenshot-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.screenshot-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 999px;
}

.screenshot-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(250px, 25vw, 330px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--white-line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(25, 27, 22, 0.88), rgba(15, 16, 14, 0.76));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 9 / 15.6;
  object-fit: cover;
  object-position: top;
  border-radius: 21px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.screenshot-card div { padding: 0 4px 4px; }
.screenshot-card h3 { margin-bottom: 6px; }
.screenshot-card p { margin-bottom: 0; line-height: 1.45; }
.home-card { flex-basis: clamp(270px, 28vw, 360px); }

.privacy {
  text-align: center;
  border-block: 1px solid var(--white-line);
}

.privacy p:last-child { font-size: 1.12rem; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.cta div { max-width: 760px; }
.cta p:last-child { margin-bottom: 0; font-size: 1.1rem; }

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 86px);
  color: var(--muted-2);
  border-top: 1px solid var(--white-line);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-visual {
    min-height: 620px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .preview-main { width: min(290px, 40vw); }
  .preview-orbit { width: min(210px, 29vw); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-card { flex-basis: clamp(240px, 42vw, 310px); }
  .home-card { flex-basis: clamp(260px, 46vw, 340px); }
}

@media (max-width: 680px) {
  .site-header { align-items: flex-start; }
  .nav { display: none; }

  .section-pad {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero {
    padding-top: 54px;
    gap: 18px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .preview-main {
    width: min(230px, 58vw);
    border-radius: 26px;
  }

  .preview-orbit {
    width: min(155px, 38vw);
    border-radius: 22px;
  }

  .preview-left {
    left: -4%;
    top: 18%;
  }

  .preview-right {
    right: -4%;
    bottom: 12%;
  }

  .preview-logo {
    right: 2%;
    top: 7%;
    width: 72px;
  }

  .original-badge {
    max-width: 100%;
  }

  .badge-copy small {
    white-space: normal;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-card {
    min-height: 0;
    padding: 16px 14px;
    border-radius: 22px;
  }

  .feature-card .icon {
    margin-bottom: 12px;
    font-size: 1.55rem;
  }

  .feature-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.15;
  }

  .feature-card p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .screenshot-carousel {
    gap: 12px;
    padding-bottom: 18px;
  }

  .screenshot-card {
    flex-basis: 78vw;
    padding: 10px;
    border-radius: 24px;
  }

  .home-card { flex-basis: 82vw; }
  .screenshot-card img { border-radius: 18px; }
  .screenshot-card h3 { font-size: 1rem; }
  .screenshot-card p { font-size: 0.9rem; line-height: 1.35; }

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