:root {
  --bg: #F4ECD8;
  --bg-2: #EFE6CF;
  --ink: #1B1B1B;
  --pop: #F0412E;
  --blue: #2D4BFF;
  --yellow: #FFC43D;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .step h3, .tier h3 {
  font-family: 'Archivo Black', 'Space Grotesk', system-ui, sans-serif;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
code { background: rgba(0,0,0,0.06); padding: 1px 6px; border-radius: 4px; font-size: 0.9em; }

/* ---------- brand mark ---------- */
.mark { display: inline-flex; gap: 4px; vertical-align: middle; }
.mark i { width: 14px; height: 20px; border-radius: 2px; display: block; }
.mark i:nth-child(1) { background: var(--pop); }
.mark i:nth-child(2) { background: var(--blue); }
.mark i:nth-child(3) { background: var(--yellow); }

/* ---------- topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand strong { font-size: 17px; }
.topbar nav { display: flex; align-items: center; gap: 24px; }
.topbar nav a { font-size: 14px; text-decoration: none; opacity: 0.78; }
.topbar nav a:hover { opacity: 1; }
.topbar nav a.cta {
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  opacity: 1;
}
.topbar nav a.cta:hover { background: var(--blue); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 64px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero .badge {
  display: inline-block;
  background: rgba(45,75,255,0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  margin: 0 0 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero h1 .arrow { color: var(--pop); }
.hero .lede {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 30px;
  max-width: 540px;
  opacity: 0.84;
}
.hero .trust {
  margin: 22px 0 0;
  font-size: 13px;
  opacity: 0.55;
}
.hero-art img {
  border-radius: 8px;
  box-shadow: 14px 14px 0 var(--ink);
  border: 2px solid var(--ink);
}

/* ---------- CTAs ---------- */
.cta {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.06s ease;
}
.cta:hover { transform: translateY(-1px); }
.cta.primary {
  background: var(--ink);
  color: var(--bg);
}
.cta.primary:hover { background: var(--blue); }
.cta.primary .suffix { opacity: 0.7; font-weight: 500; font-size: 13px; margin-left: 6px; }
.cta.ghost {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.cta.ghost:hover { background: var(--ink); color: var(--bg); }
.cta.big { padding: 18px 32px; font-size: 17px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- how ---------- */
.how {
  background: var(--bg-2);
  padding: 100px 64px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.how h2,
.pricing h2,
.install h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 60px;
  line-height: 1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.step {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 8px 8px 0 var(--ink);
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--bg);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.step p { margin: 0 0 18px; font-size: 15px; opacity: 0.82; }
.step img {
  border-radius: 6px;
  border: 1.5px solid var(--ink);
  margin-top: 8px;
}

/* ---------- manifesto ---------- */
.manifesto {
  padding: 100px 64px;
  max-width: 760px;
  margin: 0 auto;
}
.manifesto h2 {
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  margin: 0 0 32px;
  line-height: 1;
}
.manifesto .bullets {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 18px;
  line-height: 1.6;
}
.manifesto .bullets p { margin: 0; }
.manifesto .bullets strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400 !important;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--pop);
}

/* ---------- pricing ---------- */
.pricing { padding: 100px 64px; max-width: 1280px; margin: 0 auto; }
.pricing .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.tier {
  position: relative;
  background: var(--bg-2);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.tier .price { margin: 0; font-size: 18px; opacity: 0.6; }
.tier .price strong { font-size: 48px; font-weight: 900; color: var(--ink); opacity: 1; }
.tier .price .unit { font-weight: 500; opacity: 0.7; }
.tier ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.tier ul li { padding-left: 22px; position: relative; }
.tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}
.tier ul li.lim { opacity: 0.45; }
.tier ul li.lim::before { content: '—'; color: var(--ink); }
.tier .cta { align-self: flex-start; margin-top: 6px; }
.tier.pro {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 10px 10px 0 var(--blue);
}
.tier.pro .price strong { color: var(--bg); }
.tier.pro ul li::before { color: var(--yellow); }
.tier.pro .cta.primary { background: var(--blue); color: var(--bg); }
.tier.pro .cta.primary:hover { background: var(--yellow); color: var(--ink); }
.tier .ribbon {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
}
.tier .note { font-size: 11px; opacity: 0.55; margin: 4px 0 0; }

/* ---------- install ---------- */
.install {
  background: var(--bg-2);
  border-top: 2px solid var(--ink);
  padding: 100px 64px;
  text-align: center;
}
.install p { max-width: 540px; margin: 0 auto 28px; font-size: 17px; opacity: 0.8; }
.install .alt { font-size: 13px; opacity: 0.6; margin-top: 20px; }
.install .alt a { color: var(--blue); }

/* ---------- footer ---------- */
footer {
  border-top: 2px solid var(--ink);
  padding: 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.foot-brand { display: inline-flex; align-items: center; gap: 10px; }
.foot-brand strong { font-size: 15px; }
.foot-nav { display: flex; gap: 20px; }
.foot-nav a { font-size: 13px; opacity: 0.7; text-decoration: none; }
.foot-nav a:hover { opacity: 1; }
footer .copy { margin: 0; font-size: 12px; opacity: 0.7; }
.maker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  transition: background 0.12s ease;
}
.maker:hover { background: rgba(0,0,0,0.06); opacity: 1; }
.maker .mini-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  display: inline-block;
}
.maker .mini-avatar svg { display: block; width: 100%; height: 100%; }
.maker strong { font-weight: 700; }

/* ---------- mobile ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 60px; gap: 28px; }
  .hero-art img { box-shadow: 8px 8px 0 var(--ink); }
  .how, .pricing, .install { padding: 64px 24px; }
  .steps, .pricing .grid { grid-template-columns: 1fr; }
  .topbar { padding: 14px 20px; }
  .topbar nav { gap: 14px; }
  .topbar nav a:not(.cta) { display: none; }
  footer { padding: 24px 20px; }
}
