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

:root {
  --bg: #1c1a17;
  --bg-alt: #26241f;
  --bg-dark: #14120f;
  --surface: #2a2723;
  --surface-2: #211f1b;
  --text: #eee8dc;
  --text-muted: #aaa193;
  --text-faint: #746d62;
  --accent: #b8956a;
  --accent-bright: #d4b483;
  --accent-green: #88a57b;
  --accent-blue: #7fa3b5;
  --border: #37332e;
  --border-strong: #49433c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.promo {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--accent);
  color: #1c1a17;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
}

nav {
  position: sticky;
  top: 37px;
  z-index: 50;
  background: rgba(28, 26, 23, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}

.nav-inner {
  width: min(1200px, calc(100% - 48px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: 'Sansita', serif;
  font-size: 22px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: auto;
}

.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, opacity 0.16s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #1c1a17;
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.btn-large {
  min-height: 50px;
  padding: 13px 24px;
  font-size: 16px;
}

section {
  padding: 96px 0;
}

.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero {
  min-height: calc(100vh - 107px);
  display: flex;
  align-items: center;
  padding: 72px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: 56px;
  align-items: center;
}

.hero-grid-simple {
  display: block;
}

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

.hero-mole {
  width: 124px;
  margin-bottom: 12px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Sansita', serif;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  font-size: 64px;
  line-height: 1.02;
  margin-bottom: 22px;
}

h2 {
  font-size: 46px;
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 12px;
}

p {
  color: var(--text-muted);
}

.lead,
.hero-sub {
  font-size: 19px;
  line-height: 1.58;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 28px;
}

.hero-cta-meta {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-proof {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.hero-proof-num {
  display: flex;
  gap: 16px;
  align-items: center;
}

.counter {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-green);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-proof-label {
  color: var(--text-muted);
  font-size: 15px;
}

.signup-section {
  background: var(--bg-dark);
}

.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.65fr);
  gap: 64px;
  align-items: center;
}

.signup-copy {
  max-width: 620px;
}

.signup-mole {
  width: 118px;
  margin-bottom: 10px;
}

.signup-form {
  padding: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.signup-form label {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.signup-form input {
  width: 100%;
  height: 50px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #171511;
  color: var(--text);
}

.signup-form input::placeholder {
  color: var(--text-faint);
}

.signup-form button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin-top: 14px;
  color: var(--text-faint);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 700;
}

.form-status.error {
  color: #e2a285;
}

footer {
  padding: 28px 24px;
  color: var(--text-faint);
  text-align: center;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 8px;
}

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

@media (max-width: 1060px) {
  .signup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wrap,
  .nav-inner {
    width: min(100% - 32px, 1200px);
  }

  .nav-inner {
    min-height: 62px;
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  nav {
    top: 37px;
  }

  section {
    padding: 68px 0;
  }

  .hero {
    padding: 54px 0 72px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .lead,
  .hero-sub {
    font-size: 17px;
  }

  .hero-proof-num {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .signup-grid {
    gap: 34px;
  }

  .signup-form {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .nav-inner > .btn {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero-cta-row .btn {
    width: 100%;
  }
}
