/* ============================================================
   BuildSafe — Copper Noir · Light
   Warm ivory luxury · molten copper accent · cocoa-brown type
   ============================================================ */
:root {
  --bg: #faf6ef;
  --bg-2: #f4edde;
  --bg-3: #ece1cb;
  --ink: #2a2118;
  --muted: #6d5f4b;
  --faint: #a08e73;
  --copper: #c87f3d;
  --copper-hi: #e8a35c;
  --copper-deep: #8f5522;
  --copper-ink: #9c5f22;
  --line: rgba(200, 127, 61, 0.3);
  --card: #fffdf8;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --radius: 18px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 5.5rem; /* offset for the fixed floating nav */
}

::selection { background: rgba(200, 127, 61, 0.28); }

html { scrollbar-width: thin; scrollbar-color: #c87f3d #f4edde; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f4edde; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e8a35c, #8f5522);
  border-radius: 8px; border: 2px solid #f4edde;
}
::-webkit-scrollbar-thumb:hover { background: #c87f3d; }

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin: 0.6rem 0 1rem; }
h1 em, h2 em { font-style: italic; color: var(--copper-ink); }

section[id] { scroll-margin-top: 6rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 640px; text-align: center; }

.section { padding: 5rem 0; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.kicker {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem;
  color: var(--copper-ink); font-weight: 700; margin-bottom: 0.5rem;
}
.sub { color: var(--muted); max-width: 620px; font-size: 1.05rem; }
.container.narrow .sub { margin: 0 auto; }
.lede, .sub, .card p, .step p, .faq-a p { text-wrap: pretty; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--copper); color: #fffdf8; padding: 0.6rem 1rem;
  border-radius: 8px; font-weight: 600; text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: none; border-radius: 999px; padding: 0.9rem 1.8rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-copper {
  background: linear-gradient(135deg, var(--copper-hi), var(--copper) 55%, var(--copper-deep));
  color: #241505;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(200, 127, 61, 0.38);
}
.btn-copper:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 14px 34px rgba(200, 127, 61, 0.5);
}
.btn-copper:active {
  transform: translateY(0) scale(0.98);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(200, 127, 61, 0.3);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.btn:focus-visible, a:focus-visible, input:focus-visible, button:focus-visible, select:focus-visible {
  outline: 2px solid var(--copper-deep); outline-offset: 3px;
}

/* ---------- Nav — floating pill ---------- */
.nav {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 2rem), var(--maxw));
  z-index: 100;
  background: rgba(250, 246, 239, 0.78);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(140, 95, 40, 0.14);
  transition: box-shadow 0.3s ease, background 0.3s ease, top 0.3s ease;
}
.nav.scrolled {
  top: 0.6rem;
  background: rgba(250, 246, 239, 0.94);
  box-shadow: 0 16px 44px rgba(140, 95, 40, 0.22);
}
.nav-inner {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 0.6rem 0.7rem 0.6rem 1.1rem;
  transition: padding 0.3s ease;
}
.nav.scrolled .nav-inner { padding-top: 0.42rem; padding-bottom: 0.42rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand img { width: 40px; height: 40px; border-radius: 12px; box-shadow: 0 4px 14px rgba(200, 127, 61, 0.45); transition: transform 0.25s ease; }
.brand:hover img { transform: rotate(-6deg) scale(1.04); }
.brand-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); }

.nav-links { display: none; gap: 0.25rem; margin-left: auto; align-items: center; }
.nav-links a {
  position: relative; text-decoration: none; color: var(--muted);
  font-weight: 500; font-size: 0.95rem; padding: 0.55rem 0.9rem; border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.32rem; height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-hi));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(200, 127, 61, 0.1); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--copper-ink); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }

.nav .btn { margin-left: auto; flex-shrink: 0; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(200, 127, 61, 0.1); border: 1px solid var(--line);
  color: var(--ink); cursor: pointer; padding: 0.5rem; border-radius: 50%;
  margin-left: 0.25rem; flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-toggle:hover { background: rgba(200, 127, 61, 0.2); }
.nav-toggle:active { transform: scale(0.94); }

/* Polished mobile dropdown panel */
.mobile-menu {
  position: absolute; top: calc(100% + 0.6rem); left: 0; right: 0;
  display: flex; flex-direction: column; gap: 0.15rem;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 24px 60px rgba(140, 95, 40, 0.22);
  padding: 0.7rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) {
  text-decoration: none; padding: 0.85rem 1rem; border-radius: 14px;
  color: var(--muted); font-weight: 500; font-size: 1rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.mobile-menu a:not(.btn):hover { background: rgba(200, 127, 61, 0.12); color: var(--ink); }
.mobile-menu a:not(.btn).active { color: var(--copper-ink); font-weight: 600; background: rgba(200, 127, 61, 0.12); }
.mobile-menu .btn { margin: 0.5rem 0.25rem 0.25rem; }
.mobile-menu:not([hidden]) a { animation: menuIn 0.32s ease both; }
.mobile-menu:not([hidden]) a:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu:not([hidden]) a:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu:not([hidden]) a:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu:not([hidden]) a:nth-child(5) { animation-delay: 0.2s; }
.mobile-menu:not([hidden]) a:nth-child(6) { animation-delay: 0.25s; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 2.5rem 0 5.5rem; }
.hero-glow {
  position: absolute; inset: -20% -10% auto; height: 95%; pointer-events: none;
  background:
    radial-gradient(46rem 28rem at 76% 10%, rgba(200, 127, 61, 0.22), transparent 65%),
    radial-gradient(30rem 22rem at 10% 85%, rgba(200, 127, 61, 0.12), transparent 60%),
    radial-gradient(20rem 12rem at 50% 0%, rgba(232, 163, 92, 0.16), transparent 70%);
}
.hero-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem;
  display: grid; gap: 3.5rem; align-items: center;
}
.launch-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--copper-ink); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.1rem; margin-bottom: 1.5rem;
  background: rgba(200, 127, 61, 0.1);
  box-shadow: 0 4px 16px rgba(200, 127, 61, 0.12);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 0 0 rgba(200, 127, 61, 0.5); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 127, 61, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(200, 127, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 127, 61, 0); }
}
.hero-copy .lede { color: var(--muted); font-size: 1.1rem; max-width: 34rem; margin: 1.25rem 0 2rem; }

.store-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.store-badge {
  position: relative; display: inline-flex; align-items: center; gap: 0.8rem;
  text-decoration: none; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 0.75rem 1.15rem; min-width: 200px;
  box-shadow: 0 6px 20px rgba(140, 95, 40, 0.1);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.store-badge:hover { border-color: var(--copper); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(140, 95, 40, 0.18); }
.store-badge:active { transform: translateY(0) scale(0.98); }
.store-badge svg { width: 30px; height: 30px; color: var(--ink); flex-shrink: 0; }
.store-badge span:not(.soon) { display: flex; flex-direction: column; line-height: 1.25; }
.store-badge small { font-size: 0.68rem; color: var(--muted); }
.store-badge strong { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.soon {
  position: absolute; top: -11px; right: 10px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--copper-hi), var(--copper-deep));
  color: #fffdf8; border-radius: 999px; padding: 0.18rem 0.6rem;
  box-shadow: 0 4px 10px rgba(200, 127, 61, 0.4);
}
.hero-note { margin-top: 1.25rem; color: var(--faint); font-size: 0.88rem; }

/* Hero art — pure CSS copper composition */
.hero-art { position: relative; min-height: 420px; }
.art-shield {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: min(300px, 62vw); aspect-ratio: 1; border-radius: 32px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(140, 95, 40, 0.28), 0 0 90px rgba(200, 127, 61, 0.28);
  border: 1px solid var(--line);
  outline: 1px solid rgba(200, 127, 61, 0.4); outline-offset: 7px;
  animation: float 7s ease-in-out infinite;
}
.art-shield img { width: 100%; height: 100%; object-fit: cover; }
.art-card {
  position: absolute; background: rgba(255, 253, 248, 0.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px; padding: 0.9rem 1.05rem;
  box-shadow: 0 18px 44px rgba(140, 95, 40, 0.18); display: flex; align-items: center; gap: 0.75rem;
  animation: float 8s ease-in-out infinite;
}
.art-card-1 { top: 2%; left: 0; animation-delay: 0.6s; }
.art-card-2 { bottom: 14%; right: 0; animation-delay: 1.8s; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.art-card-3 { bottom: 0; left: 6%; animation-delay: 3s; }
.art-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--copper-hi), var(--copper-deep)); }
.art-lines { display: flex; flex-direction: column; gap: 6px; min-width: 110px; }
.art-lines i { display: block; height: 8px; border-radius: 4px; background: rgba(42, 33, 24, 0.12); }
.art-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--copper-ink); border: 1px solid var(--line); border-radius: 999px; padding: 0.25rem 0.7rem;
  white-space: nowrap; background: rgba(200, 127, 61, 0.08);
}
.art-bid { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.art-bid b { display: block; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; color: var(--copper-ink); letter-spacing: 0.08em; text-transform: uppercase; }
.art-chat { width: 34px; height: 34px; border-radius: 50% 50% 50% 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep)); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.art-shield { animation-name: floatShield; }
@keyframes floatShield { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 12px)); } }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 2rem 1.25rem;
  display: grid; gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 1rem; }
.trust-item svg {
  width: 56px; height: 56px; padding: 12px; flex-shrink: 0; color: var(--copper-ink);
  background: linear-gradient(135deg, rgba(200, 127, 61, 0.16), rgba(200, 127, 61, 0.07));
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 6px 16px rgba(140, 95, 40, 0.1);
}
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1rem; color: var(--ink); }
.trust-item span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.grid-3 { grid-template-columns: 1fr; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 4px 18px rgba(140, 95, 40, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px); border-color: rgba(200, 127, 61, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 22px 48px rgba(140, 95, 40, 0.18);
}
.card svg {
  width: 52px; height: 52px; padding: 11px; color: var(--copper-ink); margin-bottom: 1.15rem;
  background: linear-gradient(135deg, rgba(200, 127, 61, 0.14), rgba(200, 127, 61, 0.06));
  border: 1px solid var(--line); border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; color: var(--ink); }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.25rem; margin-top: 2.5rem; counter-reset: step; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.75rem 1.75rem; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 4px 18px rgba(140, 95, 40, 0.07);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.step:hover {
  transform: translateY(-4px); border-color: rgba(200, 127, 61, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 18px 40px rgba(140, 95, 40, 0.15);
}
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper-hi));
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 1rem;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: #fffdf8;
  background: linear-gradient(135deg, var(--copper-hi), var(--copper-deep));
  box-shadow: 0 6px 16px rgba(200, 127, 61, 0.4);
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--ink); }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- For contractors ---------- */
.split { display: grid; gap: 3rem; align-items: center; }
.checklist { list-style: none; margin-top: 1.75rem; display: grid; gap: 1.1rem; }
.checklist li { display: flex; gap: 0.9rem; align-items: flex-start; }
.checklist svg { width: 24px; height: 24px; color: var(--copper-ink); flex-shrink: 0; margin-top: 0.2rem; }
.checklist div { display: flex; flex-direction: column; }
.checklist strong { font-size: 1.02rem; color: var(--ink); }
.checklist span { color: var(--muted); font-size: 0.93rem; }

.pro-card {
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: 22px; padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(140, 95, 40, 0.16);
}
.pro-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.pro-avatar { width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--copper-hi), var(--copper-deep)); }
.pro-id { display: flex; flex-direction: column; margin-right: auto; }
.pro-id strong { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.pro-id span { font-size: 0.75rem; color: var(--copper-ink); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pro-rating {
  font-family: var(--serif); font-size: 1.4rem; color: var(--copper-ink);
  border: 1px solid var(--line); border-radius: 12px; padding: 0.3rem 0.8rem;
  background: rgba(200, 127, 61, 0.08);
}
.pro-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.pro-stats div { background: rgba(200, 127, 61, 0.08); border: 1px solid var(--line); border-radius: 14px; padding: 0.9rem 0.5rem; text-align: center; }
.pro-stats strong { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.pro-stats span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.pro-lead {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  border: 1px dashed var(--line); border-radius: 12px; padding: 0.8rem 1rem; margin-top: 0.6rem;
  font-size: 0.9rem; background: rgba(255, 253, 248, 0.6);
}
.pro-lead span { color: var(--muted); }
.pro-lead strong { color: var(--copper-ink); white-space: nowrap; }

/* ---------- Waitlist ---------- */
.waitlist-form { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.waitlist-form input {
  flex: 1; font: inherit; color: var(--ink); background: #ffffff;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.9rem 1.4rem;
  box-shadow: inset 0 2px 8px rgba(140, 95, 40, 0.06);
}
.waitlist-form input::placeholder { color: var(--faint); }
.waitlist-form input:focus { border-color: var(--copper); outline: none; box-shadow: 0 0 0 3px rgba(200, 127, 61, 0.2); }
.form-msg { min-height: 1.6em; margin-top: 1rem; font-weight: 500; }
.form-msg.ok { color: var(--copper-ink); }
.form-msg.err { color: #b3402e; }
.fine { color: var(--faint); font-size: 0.85rem; margin-top: 0.75rem; }

/* ---------- Contact ---------- */
.contact-card { text-decoration: none; }
.contact-card p { color: var(--ink); font-weight: 600; font-size: 1.05rem; word-break: break-word; }
.contact-card .muted { color: var(--muted); font-weight: 400; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; margin-top: 2.5rem; text-align: left; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.25s ease;
}
.faq-item.open { border-color: var(--copper); box-shadow: 0 12px 30px rgba(140, 95, 40, 0.12); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; font: inherit; text-align: left;
  padding: 1.25rem 1.5rem; color: var(--ink);
}
.faq-q span { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.faq-q svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--copper-ink); transition: transform 0.3s ease; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 1.5rem 1.5rem; color: var(--muted); font-size: 0.97rem; }
.faq-a a { color: var(--copper-ink); font-weight: 600; }

/* ---------- Reviews (honest empty state) ---------- */
.review-shell { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.review-skel {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; min-height: 196px;
}
.review-skel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(200, 127, 61, 0.14) 50%, transparent 80%);
  animation: skimmer 2.4s infinite;
}
@keyframes skimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.skel-row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.skel { display: block; height: 12px; border-radius: 6px; background: rgba(42, 33, 24, 0.09); }
.skel + .skel { margin-top: 10px; }
.skel-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.skel-row .skel-line { margin-top: 0; }
.review-note { text-align: center; margin-top: 1.5rem; }

/* ---------- Contractor signup ---------- */
.signup-form { display: grid; gap: 1rem; margin-top: 2rem; text-align: left; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.field input, .field select {
  font: inherit; color: var(--ink); background: #ffffff;
  border: 1px solid var(--line); border-radius: 14px; padding: 0.85rem 1.1rem;
  box-shadow: inset 0 2px 8px rgba(140, 95, 40, 0.06); width: 100%;
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239c5f22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.field select:invalid { color: var(--faint); }
.field input::placeholder { color: var(--faint); }
.field input:focus, .field select:focus { border-color: var(--copper); outline: none; box-shadow: 0 0 0 3px rgba(200, 127, 61, 0.2); }
.signup-form .btn { width: 100%; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: #f1e7d3; padding: 3rem 0 2.5rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer .brand img { width: 32px; height: 32px; border-radius: 10px; }
.footer .brand-name { font-size: 1.2rem; }
.footer .tagline { font-family: var(--serif); font-style: italic; color: var(--copper-ink); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--ink); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Compact nav on small phones: logo only, keeps the pill from overflowing */
@media (max-width: 559.98px) {
  .nav .brand-name { display: none; }
  .nav-inner { gap: 0.9rem; padding-left: 0.7rem; }
}

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .review-shell { grid-template-columns: repeat(3, 1fr); }
  .signup-form { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .waitlist-form { flex-direction: row; }
  .waitlist-form .btn { flex-shrink: 0; }
}

/* Desktop nav links appear at 900px — the full link row overflows the pill
   on tablet widths, so 720–899px keeps the compact hamburger layout. */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav .btn { margin-left: 0; }
  .nav-toggle, .mobile-menu { display: none; }
}

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .section { padding: 6.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
