/* Grace Site — meet-grace.com */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap");

:root {
  --bg: #070708;
  --bg-elev: #101012;
  --bg-card: #141417;
  --text: #f2f2f4;
  --muted: #9b9ba6;
  --faint: #6c6c78;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #f4f4f5;
  --accent-ink: #0a0a0b;
  --soft: rgba(244, 244, 245, 0.08);
  --ok: #3dd68c;
  --plan: #7eb8ff;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(126, 184, 255, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 20px 20px 96px; }

nav.top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0 18px; margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; text-decoration: none; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: url("assets/grace-icon.png") center/cover no-repeat;
  border: 1px solid var(--line-strong); flex-shrink: 0;
}
.nav-links { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 13.5px; font-weight: 500; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 4px; padding-left: 14px;
  border-left: 1px solid var(--line-strong);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
}
.lang-switch a { color: var(--faint); text-decoration: none; }
.lang-switch a:hover { color: var(--text); }
.lang-switch a.current { color: var(--text); }
.lang-switch .sep { color: var(--line-strong); font-weight: 400; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  color: var(--text); border-radius: 10px; padding: 7px 10px; cursor: pointer;
}

.hero {
  position: relative; min-height: min(72vh, 640px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px 0 56px; margin: 0 -8px 64px; border-radius: 28px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, var(--bg) 92%),
    url("assets/grace-bg.png") center/cover no-repeat;
  opacity: 0.45; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 0 12px; max-width: 760px; }
.hero .brand-hero {
  font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800; letter-spacing: -0.05em; line-height: 0.95; margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 650; letter-spacing: -0.03em; line-height: 1.2; margin: 0 0 14px;
  color: color-mix(in srgb, var(--text) 92%, transparent);
}
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin: 0 0 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; font-weight: 650; font-size: 14px;
  text-decoration: none; border: 1px solid transparent; transition: 0.15s ease;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { filter: brightness(0.94); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--soft); text-decoration: none; }

section { margin: 0 0 72px; }
section > h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em; margin: 0 0 10px;
}
.lede { color: var(--muted); max-width: 640px; margin: 0 0 28px; font-size: 1.05rem; }

.feature-rail {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px;
}
.feature-rail a {
  display: block; padding: 16px 16px 18px; border: 1px solid var(--line);
  border-radius: 14px; background: color-mix(in srgb, var(--bg-elev) 80%, transparent);
  text-decoration: none; transition: 0.15s ease;
}
.feature-rail a:hover { border-color: var(--line-strong); background: var(--bg-card); }
.feature-rail .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.feature-rail .title { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.feature-rail p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.45; }
.feature-rail .tag-plan { color: var(--plan); }

.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step);
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--muted);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.step h3 { margin: 2px 0 6px; font-size: 1.05rem; letter-spacing: -0.02em; }
.step p { margin: 0; color: var(--muted); }

.feature-block {
  display: grid; gap: 28px; padding: 36px 0;
  border-top: 1px solid var(--line);
}
.feature-block:first-of-type { border-top: none; padding-top: 8px; }
.feature-head .status {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 10px; color: var(--ok);
}
.feature-head .status.planned { color: var(--plan); }
.feature-head h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.035em; margin: 0 0 12px;
}
.feature-head .lede { margin-bottom: 0; }
.feature-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 28px;
}
.point h3 { margin: 0 0 6px; font-size: 15px; font-weight: 650; letter-spacing: -0.01em; }
.point p { margin: 0; color: var(--muted); font-size: 14.5px; }
.flow {
  margin-top: 8px; padding: 16px 18px; border-radius: 14px;
  border: 1px dashed var(--line-strong); background: var(--bg-elev);
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px;
  color: var(--muted); line-height: 1.6;
}
.flow strong { color: var(--text); font-weight: 600; }

.split-cta {
  display: grid; gap: 18px; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: linear-gradient(145deg, var(--bg-card), var(--bg-elev));
}
.split-cta h2 { margin: 0; font-family: var(--font-display); letter-spacing: -0.03em; }
.split-cta p { margin: 0; color: var(--muted); }

.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px;
}
.card {
  padding: 16px 16px 18px; border: 1px solid var(--line); border-radius: 14px;
  background: color-mix(in srgb, var(--bg-elev) 85%, transparent);
}
.card-title {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.card p { margin: 0; color: var(--muted); font-size: 14px; }

footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 28px; margin-top: 56px; border-top: 1px solid var(--line);
  color: var(--faint); font-size: 13px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
footer .footer-meta { display: flex; flex-direction: column; gap: 6px; max-width: 420px; }
footer .footer-meta strong { color: var(--muted); font-weight: 600; }
footer .footer-links { display: flex; flex-wrap: wrap; gap: 6px 10px; justify-content: flex-end; align-items: center; }
footer .footer-links .dot { color: var(--line-strong); }

.legal h2 { margin-top: 0; }
.legal h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.02em; margin: 28px 0 10px;
}
.legal p, .legal li { color: var(--muted); font-size: 15px; max-width: 72ch; }
.legal ul { padding-left: 1.2em; }
.legal address { font-style: normal; color: var(--muted); line-height: 1.7; }

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; gap: 10px;
    padding: 12px 0 4px;
  }
  .nav-links.open { display: flex; }
  nav.top { flex-wrap: wrap; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { min-height: 56vh; margin-bottom: 48px; }
}
