:root {
  color-scheme: dark;
  --bg: #06070a;
  --bg-soft: #0b0d12;
  --surface: #10131a;
  --surface-2: #151923;
  --text: #f3f5fa;
  --muted: #aab1c3;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c8a86a;
  --accent-soft: rgba(200, 168, 106, 0.2);
  --radius: 16px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 700px at 80% -10%, #1a1d27 0%, var(--bg) 45%), var(--bg);
  color: var(--text);
  font: 16px/1.5 "Inter", "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(6, 7, 10, 0.72);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--line);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: 160ms ease;
}

.btn-primary {
  color: #0f1219;
  background: linear-gradient(135deg, #dbc48f, var(--accent));
  box-shadow: 0 8px 20px rgba(200, 168, 106, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-store {
  color: var(--text);
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.btn-store:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.chrome-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
  background:
    radial-gradient(circle at 50% 50%, #4285f4 0 28%, transparent 30%),
    conic-gradient(#ea4335 0 33%, #fbbc05 33% 66%, #34a853 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero {
  padding: 84px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-main {
  padding: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent-soft);
}

h1 {
  margin: 18px 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 690px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0b0f15;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  cursor: zoom-in;
}

.screenshots-section {
  padding-top: 4px;
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.gallery-stack--spaced {
  gap: 24px;
}

.shot-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 14px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.shot-card--wide {
  max-width: 100%;
  padding: 10px;
}

.shot-frame {
  margin: 0;
}

.shot-spotlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.shot-spotlight-media {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.shot-spotlight-copy {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(6, 9, 14, 0.7);
  padding: 18px;
}

.shot-spotlight-copy h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.shot-spotlight-copy p {
  margin: 0 0 10px;
  color: var(--muted);
}

.shot-spotlight-copy p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 16px 0 20px;
}

.section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.compliance {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.compliance ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cta {
  margin: 26px 0 72px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(130deg, rgba(200, 168, 106, 0.16), rgba(255, 255, 255, 0.03) 48%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 24px 0 40px;
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 1000;
}

.lightbox--open {
  display: flex;
}

.lightbox img {
  max-width: min(1400px, 97vw);
  max-height: 90vh;
  width: min(1400px, 97vw);
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  cursor: zoom-out;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.lightbox--open img {
  transform: scale(1);
  opacity: 1;
}

.lightbox img.is-portrait {
  width: auto;
  max-width: 95vw;
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Privacy page */
.policy {
  padding: 52px 0 70px;
}

.policy-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
}

.policy h1 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(28px, 4.2vw, 42px);
}

.policy-meta {
  color: var(--muted);
  margin-bottom: 26px;
}

.policy h2 {
  margin: 28px 0 10px;
  font-size: 19px;
}

.policy p,
.policy li {
  color: #d6dcef;
}

.policy ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .shot-spotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1120px, calc(100% - 30px));
  }

  .nav-links {
    display: none;
  }

  .hero-main,
  .policy-wrap {
    padding: 22px;
  }
}
