:root {
  --bg: #0e0d0b;
  --scroll: #0e0d0b;
  --surface: #181714;
  --surface-muted: #23211c;
  --border: #2e2c27;
  --text: #edeae3;
  --text-secondary: #7d776b;
  --text-muted: #9a9488;
  --accent: #ffe566;
  --accent-soft: rgba(255, 229, 102, 0.14);
  --accent-border: rgba(255, 229, 102, 0.28);
  --on-accent: #1a1608;
  --success: #30d158;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --font-display: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --max: 920px;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 229, 102, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand:hover {
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(255, 229, 102, 0.35);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
}

.nav-links a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.hero {
  text-align: center;
  padding: 48px 0 56px;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero p.lead {
  margin: 0 auto 28px;
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.hero-dots span {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--accent);
  opacity: 0.45;
}

.hero-dots span:nth-child(2) {
  width: 7px;
  height: 7px;
  opacity: 1;
}

.store-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-row {
  margin-bottom: 12px;
}

.cta-row-secondary {
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 32px rgba(255, 229, 102, 0.28);
}

.btn-primary:hover {
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(255, 229, 102, 0.42);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  text-decoration: none;
  border-color: var(--text-secondary);
}

.section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.grid-features {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .grid-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  margin-bottom: 16px;
}

.ai-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ai-note .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--success);
}

.page-head {
  margin-bottom: 32px;
}

.page-head h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 560px;
}

.legal {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 28px 0 10px;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal p,
.legal ul {
  margin: 0 0 12px;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li {
  margin-bottom: 6px;
}

.legal strong {
  color: var(--text);
}

.meta-line {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-card {
  max-width: 560px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(48, 209, 88, 0.12);
  border: 1px solid rgba(48, 209, 88, 0.35);
  color: #5ee987;
}

.form-status.error {
  background: rgba(255, 229, 102, 0.1);
  border: 1px solid var(--accent-border);
  color: #ffe566;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    height: auto;
    padding: 14px 16px;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
