/* SetMeUp — site styles. Modern-money minimalism (Brand — SetMeUp.md). Overnight loop round 1: retired antique serif for a modern grotesque; filled CTAs with depth; solid cards. */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #faf9f7;
  --surface: #f2f0ec;
  --ink: #1a1917;
  --ink-soft: #3a3733;
  --muted: #57534e;
  --line: rgba(26, 25, 23, 0.10);
  --line-strong: rgba(26, 25, 23, 0.16);

  --gold: #b68235;
  --gold-bright: #c9933f;
  --gold-dark: #7d5411;
  --gold-soft: #fbf3e6;

  --hero-bg: #1a1917;
  --hero-ink: #f5f3f0;
  --hero-muted: #c4bfb7;

  --font: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26, 25, 23, 0.06);
  --shadow-md: 0 10px 26px -8px rgba(26, 25, 23, 0.16);
  --shadow-lg: 0 24px 54px -14px rgba(26, 25, 23, 0.26);

  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
a { color: var(--gold-dark); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(182, 130, 53, 0.22); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 40px; padding-right: 40px; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 17px; line-height: 1;
  min-height: 56px; padding: 0 30px; border-radius: var(--r-md);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn-primary { background: var(--gold); color: #1a1917; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: var(--hero-ink); border-color: rgba(245, 243, 240, 0.32); }
.btn-ghost-light:hover { background: rgba(245, 243, 240, 0.09); border-color: rgba(245, 243, 240, 0.7); transform: translateY(-1px); }
.btn-lg { min-height: 62px; font-size: 18px; padding: 0 38px; }

/* ── header ── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, 0.86); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px 40px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-height: 44px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--ink);
  color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; letter-spacing: -0.03em;
}
.brand-name { font-weight: 700; font-size: 21px; letter-spacing: -0.02em; color: var(--ink); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  font-size: 15.5px; font-weight: 500; color: var(--muted); text-decoration: none; border-radius: var(--r-sm);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav .btn { margin-left: 8px; min-height: 46px; font-size: 15.5px; padding: 0 20px; }

/* ── hero ── */
.hero { position: relative; background: var(--hero-bg); color: var(--hero-ink); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60rem 30rem at 88% 120%, rgba(182, 130, 53, 0.28), transparent 60%),
    radial-gradient(46rem 24rem at -8% -20%, rgba(182, 130, 53, 0.10), transparent 55%);
}
.hero-inner { position: relative; padding: 120px 40px 118px; }
.eyebrow {
  display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--gold); background: rgba(182, 130, 53, 0.12);
  padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 26px;
}
.hero h1 { font-size: clamp(40px, 6vw, 74px); font-weight: 800; line-height: 1.03; max-width: 16ch; margin-bottom: 24px; }
.hero-sub { font-size: clamp(19px, 2.2vw, 23px); line-height: 1.5; max-width: 30em; color: var(--hero-muted); margin-bottom: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 20px; }
.guarantee { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--hero-muted); margin-top: 22px; }
.guarantee svg { color: var(--gold); flex: none; }

/* ── trust ticker ── */
.ticker { background: var(--gold-soft); border-bottom: 1px solid var(--line); }
.ticker-row { display: flex; flex-wrap: wrap; gap: 12px 48px; justify-content: space-between; padding: 22px 40px; font-size: 16px; font-weight: 500; color: var(--gold-dark); }
.ticker-row span { display: inline-flex; align-items: center; gap: 9px; }
.ticker-row svg { flex: none; }

/* ── sections ── */
.section { padding: 96px 40px; }
.section-soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 40ch; margin-bottom: 12px; }
.section h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; }
.section-lede { font-size: 20px; color: var(--muted); max-width: 46ch; margin-top: 16px; margin-bottom: 52px; }

/* ── steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { padding: 30px 28px; border-radius: var(--r-lg); background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--ink); color: var(--gold); font-weight: 800; font-size: 18px; margin-bottom: 18px; }
.step h3 { font-size: 23px; margin-bottom: 8px; }
.step p { font-size: 18px; color: var(--muted); }

/* ── feature cards ── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--gold-soft); color: var(--gold-dark); margin-bottom: 18px; }
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { font-size: 17px; color: var(--muted); line-height: 1.55; }

/* ── testimonial ── */
.quote-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.quote-portrait { border-radius: var(--r-lg); background: var(--ink); color: var(--hero-ink); aspect-ratio: 4 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; box-shadow: var(--shadow-md); }
.quote-portrait .brand-mark { width: 60px; height: 60px; font-size: 30px; }
.quote-kicker { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 20px; }
blockquote { margin: 0 0 22px; font-size: clamp(24px, 3vw, 32px); font-weight: 600; line-height: 1.32; letter-spacing: -0.01em; color: var(--ink); }
.quote-who { font-size: 16px; font-weight: 600; color: var(--ink); }
.quote-who span { display: block; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* ── pricing strip ── */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 8px; }
.price-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; background: var(--bg); box-shadow: var(--shadow-sm); }
.price-card.feature { border-color: var(--gold); box-shadow: var(--shadow-md); }
.price-name { font-size: 15px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.price-num { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 10px; }
.price-card p { font-size: 16.5px; color: var(--muted); }

/* ── final CTA ── */
.final { background: var(--hero-bg); color: var(--hero-ink); text-align: center; }
.final-inner { padding: 92px 40px 104px; }
.final h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.final p { font-size: 21px; color: var(--hero-muted); max-width: 28em; margin: 0 auto 34px; }

/* ── footer ── */
.site-footer { background: var(--hero-bg); color: var(--hero-muted); border-top: 1px solid rgba(182, 130, 53, 0.28); }
.footer-row { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center; padding: 30px 40px 40px; font-size: 15.5px; }
.footer-row a { color: var(--hero-muted); text-decoration: none; }
.footer-row a:hover { color: var(--hero-ink); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-row a { display: inline-flex; align-items: center; min-height: 44px; }

/* ── reveal ── */
[data-anim] { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
[data-anim].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }

/* ── responsive ── */
@media (max-width: 900px) {
  .steps, .cards { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing { grid-template-columns: 1fr; }
  .hero-inner { padding: 88px 24px 84px; }
  .section { padding: 64px 24px; }
  .wrap, .header-row, .ticker-row, .footer-row { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 620px) {
  body { font-size: 18px; }
  .nav-link { display: none; }
  .header-row { padding: 12px 20px; }
  .hero-inner { padding: 72px 20px 68px; }
  .section { padding: 52px 20px; }
  .wrap, .ticker-row, .footer-row { padding-left: 20px; padding-right: 20px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .nav .btn { width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card { transition: none !important; }
}
