:root {
  --bg: #f7f6f1;
  --surface: #ffffff;
  --text: #171a17;
  --muted: #5a625a;
  --brand: #747f6d;
  --brand-2: #2b2f2b;
  --ring: rgba(116, 127, 109, 0.35);
  --border: rgba(23, 26, 23, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 15% 0%, rgba(116, 127, 109, 0.18), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(0, 0, 0, 0.08), transparent 50%),
    var(--bg);
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 50;
}

.skip:focus {
  left: 12px;
  outline: 3px solid var(--ring);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 246, 241, 0.78);
  border-bottom: 1px solid rgba(23, 26, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.brand-name {
  font-family: Pacifico, "SignPainter", cursive;
  font-size: 22px;
  color: var(--brand-2);
  letter-spacing: 0.2px;
}

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

.nav a {
  color: rgba(23, 26, 23, 0.86);
  font-weight: 600;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(116, 127, 109, 0.35);
}

.btn:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

.btn:focus {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn--ghost {
  background: transparent;
  color: var(--brand-2);
  border: 1px solid rgba(23, 26, 23, 0.16);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.65);
}

.btn--full {
  width: 100%;
}

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: block;
  text-align: center;
}

.hero-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 24px;
}

.hero-brand {
  font-family: Pacifico, "SignPainter", cursive;
  font-size: 54px;
  color: var(--brand-2);
  margin: 0 0 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 26, 23, 0.1);
  padding: 8px 12px;
  border-radius: 999px;
}

h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin: 12px 0 10px;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.subhead {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(23, 26, 23, 0.8);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
  justify-content: center;
}

.micro {
  margin: 0;
  font-size: 13px;
  color: rgba(23, 26, 23, 0.65);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(23, 26, 23, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-inner {
  padding: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  background: rgba(116, 127, 109, 0.16);
  color: rgba(23, 26, 23, 0.86);
  border: 1px solid rgba(116, 127, 109, 0.35);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.card-title {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 800;
}

.card-meta {
  margin-top: 6px;
  color: rgba(23, 26, 23, 0.65);
  font-size: 14px;
}

.divider {
  height: 1px;
  background: rgba(23, 26, 23, 0.12);
  margin: 18px 0;
}

.funny {
  font-family: Pacifico, "SignPainter", cursive;
  font-size: 18px;
  color: rgba(23, 26, 23, 0.86);
}

.stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-num {
  font-weight: 900;
  font-size: 16px;
}

.stat-label {
  color: rgba(23, 26, 23, 0.6);
  font-size: 12px;
  margin-top: 2px;
}

.section {
  padding: 72px 0;
}

.section.small {
  padding: 34px 0 60px;
}

.section.alt {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.02em;
  text-align: center;
}

.h3 {
  margin: 0;
}

.lead {
  margin: 10px 0 0;
  color: rgba(23, 26, 23, 0.72);
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 26, 23, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: rgba(23, 26, 23, 0.7);
  line-height: 1.55;
}

.list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(23, 26, 23, 0.7);
}

.list li {
  margin: 8px 0;
}

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

.step {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 26, 23, 0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(116, 127, 109, 0.16);
  border: 1px solid rgba(116, 127, 109, 0.35);
}

.step h3 {
  margin: 10px 0 6px;
}

.step p {
  margin: 0;
  color: rgba(23, 26, 23, 0.7);
  line-height: 1.55;
}

.callout {
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.75);
  padding: 16px 18px;
  display: grid;
  gap: 6px;
}

.callout-title {
  font-weight: 900;
}

.callout-body {
  color: rgba(23, 26, 23, 0.7);
}

.signup {
  display: block;
  max-width: 480px;
  margin: 0 auto;
}

.signup-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 26, 23, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.field {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.field span {
  font-size: 13px;
  color: rgba(23, 26, 23, 0.7);
  font-weight: 700;
}

input,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(23, 26, 23, 0.16);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid var(--ring);
  border-color: rgba(116, 127, 109, 0.5);
}

.form-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(23, 26, 23, 0.62);
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
}

.form-status.success {
  color: #1b5e20;
}

.form-status.error {
  color: #8d1e1e;
}

.trust {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.trust-item {
  border-radius: 14px;
  border: 1px solid rgba(23, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
}

.trust-title {
  font-weight: 900;
}

.trust-text {
  margin-top: 4px;
  color: rgba(23, 26, 23, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.footer-card {
  border-radius: var(--radius);
  border: 1px solid rgba(23, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.8);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(23, 26, 23, 0.08);
  background: rgba(247, 246, 241, 0.9);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name {
  font-weight: 900;
}

.footer-sub {
  margin-top: 2px;
  color: rgba(23, 26, 23, 0.65);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  color: rgba(23, 26, 23, 0.7);
  font-weight: 600;
  font-size: 14px;
}

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

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

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

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

  .nav {
    gap: 12px;
  }

  .nav a:not(.btn) {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  .footer-credit {
    text-align: center;
  }
}
