: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: 30px;
  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.22;
  background-image:
    linear-gradient(rgba(214, 184, 100, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 184, 100, 0.05) 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: 18px clamp(18px, 4vw, 72px);
  background: rgba(13, 13, 17, 0.76);
  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: 14px; 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(58px, 8vw, 110px) clamp(18px, 5vw, 86px); }
.narrow { max-width: 900px; margin: 0 auto; }

.hero {
  position: relative;
  min-height: calc(100svh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  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.2rem, 8vw, 7.8rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  text-wrap: balance;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
h3 { margin-bottom: 8px; font-size: 1.22rem; letter-spacing: -0.02em; }
p { color: var(--muted); line-height: 1.68; }
.lead { max-width: 610px; font-size: clamp(1.08rem, 1.5vw, 1.35rem); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 24px; }
.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);
}

.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,17,0.14), transparent 36%, rgba(214,184,100,0.08));
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  right: -10vw;
  top: 15vh;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(184, 149, 77, 0.22), transparent 66%);
  filter: blur(16px);
}

.intro p {
  font-size: clamp(1.3rem, 2.4vw, 2.15rem);
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.03em;
  text-align: center;
}


.original-stamp {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 42px);
  margin-top: -24px;
}

.stamp-mark {
  width: clamp(154px, 20vw, 218px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 3px solid rgba(214, 184, 100, 0.72);
  border-radius: 50%;
  color: var(--gold-light);
  background:
    radial-gradient(circle, rgba(184, 149, 77, 0.16), transparent 62%),
    rgba(14, 15, 13, 0.72);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-5deg);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.stamp-mark strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: var(--text);
}

.stamp-mark span {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
}

.stamp-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.8vw, 3.9rem);
}

.stamp-copy p:last-child {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.stamp-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.stamp-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 184, 100, 0.36);
  background: rgba(214, 184, 100, 0.10);
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-title { max-width: 840px; margin-bottom: clamp(28px, 5vw, 56px); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  min-height: 210px;
  padding: 24px;
  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);
}
.icon {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 2.1rem;
}
.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(260px, 27vw, 350px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--white-line);
  border-radius: 30px;
  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: 23px;
  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(280px, 30vw, 380px); }

.wide-shot img {
  width: min(1380px, 100%);
  margin: 0 auto;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.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-visual { transform: none; }
  .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; }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }


  .original-stamp {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: -10px;
  }
  .stamp-mark {
    width: 150px;
    justify-self: center;
  }
  .stamp-points {
    justify-content: center;
  }
  .stamp-points span {
    justify-content: center;
    text-align: center;
  }

  .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; }
}
