@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:       #0c0c0c;
  --bg-card:  #131313;
  --bg-hover: #191919;
  --border:   #222222;
  --text:     #f0ede8;
  --muted:    #888880;
  --gold:     #c9a84c;
  --gold-dim: #9a7d35;
  --radius:   10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 36px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--bg);
  border-radius: 12px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-appstore:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-appstore svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-appstore .badge-sub {
  font-size: 10px;
  font-weight: 400;
  display: block;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.btn-appstore .badge-main {
  display: block;
  line-height: 1;
}

/* ── Divider ── */
.divider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: var(--border);
}

/* ── Features ── */
.features {
  padding: 96px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: var(--bg-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Members ── */
.members {
  padding: 96px 40px;
  text-align: center;
}

.members-inner {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 64px 48px;
}

.members h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.members p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.tag-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  font-size: 13px;
  color: var(--muted);
}

footer a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

footer a:hover {
  color: var(--text);
}

/* ── Privacy page ── */
.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.policy-wrap h1 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.policy-wrap .updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 56px;
  display: block;
}

.policy-wrap h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 40px 0 12px;
  color: var(--text);
}

.policy-wrap p,
.policy-wrap li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-wrap ul,
.policy-wrap ol {
  padding-left: 20px;
  margin: 12px 0;
}

.policy-wrap li {
  margin-bottom: 6px;
}

.policy-wrap a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-wrap strong {
  color: var(--text);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav {
    padding: 18px 20px;
  }

  .features {
    padding: 64px 20px;
  }

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

  .members {
    padding: 64px 20px;
  }

  .members-inner {
    padding: 40px 28px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px 20px;
  }

  .policy-wrap {
    padding: 60px 20px 80px;
  }
}
