/* Echo & Elevate — agency site v2. House system: dark #0E0F11, amber #F5A623, Inter.
   Mobile-first. No framework. */

:root {
  --bg: #0E0F11;
  --bg-raise: #15171B;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --amber: #F5A623;
  --amber-soft: rgba(245, 166, 35, 0.12);
  --amber-line: rgba(245, 166, 35, 0.35);
  --text: #EDEEF0;
  --muted: #9BA0A8;
  --dim: #6A7078;
  --green: #3FB68B;
  --red: #E5533C;
  --radius: 16px;
  --radius-sm: 10px;
  --pad: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* room for the mobile CTA bar */
}

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

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 80%);
}
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.wordmark {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}
.wordmark:hover { text-decoration: none; }
.wordmark .amp { color: var(--amber); }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text); text-decoration: none; background: var(--surface); }
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
}

/* ---------- type scale ---------- */
h1 {
  font-size: clamp(30px, 6.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
}
h2 {
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 650;
}
h3 { font-size: 18px; letter-spacing: -0.015em; font-weight: 600; }

.lede { font-size: clamp(17px, 2.6vw, 20px); color: var(--muted); max-width: 62ch; }
.small { font-size: 13px; color: var(--dim); }

/* ---------- sections ---------- */
section { padding: 48px 0; }
@media (min-width: 760px) { section { padding: 72px 0; } }

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 12px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}
@media (min-width: 760px) { .hero { padding: 88px 0 64px; } }
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 130%;
  background: radial-gradient(ellipse 60% 50% at 30% 0%, rgba(245,166,35,0.09), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero h1 { max-width: 21ch; margin-bottom: 18px; }
.hero .lede { margin-bottom: 14px; }

.proof-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-left: 2px solid var(--amber);
  padding: 6px 0 6px 14px;
  margin: 22px 0 26px;
  max-width: 58ch;
  color: var(--text);
  font-size: 15.5px;
}

/* ---------- buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-block;
  background: var(--amber);
  color: #131313;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.2);
  transition: box-shadow 0.18s ease, translate 0.18s ease;
}
.btn:hover {
  text-decoration: none;
  box-shadow: 0 0 0 1px var(--amber-line), 0 6px 28px rgba(245,166,35,0.28);
  translate: 0 -1px;
}
.btn-ghost {
  display: inline-block;
  color: var(--text);
  font-weight: 550;
  font-size: 15.5px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}
.btn-ghost:hover { text-decoration: none; border-color: var(--amber-line); }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card .card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--amber-soft);
  border: 1px solid var(--amber-line);
  color: var(--amber);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ladder cards link footer */
.card .card-link { display: inline-block; margin-top: 12px; font-size: 14.5px; font-weight: 550; }

/* ---------- pillar blocks (The System) ---------- */
.pillar {
  display: grid;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 860px) {
  .pillar { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; gap: 40px; }
}
.pillar-copy .pillar-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 8px;
}
.pillar-copy h3 { font-size: 22px; margin-bottom: 10px; }
.pillar-copy p { color: var(--muted); }

.screen {
  margin: 0;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}
.screen svg { width: 100%; height: auto; }
.screen figcaption {
  font-size: 13px;
  color: var(--dim);
  padding: 10px 16px;
  border-top: 1px solid var(--line);
}

/* ---------- honest block ---------- */
.honest {
  background: linear-gradient(180deg, var(--amber-soft), rgba(245,166,35,0.04));
  border: 1px solid var(--amber-line);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 70ch;
}
.honest h3 { color: var(--amber); margin-bottom: 8px; }
.honest p { color: var(--text); font-size: 15.5px; }

/* ---------- differentiators ---------- */
.diff-list { display: grid; gap: 14px; grid-template-columns: 1fr; counter-reset: diff; }
@media (min-width: 760px) { .diff-list { grid-template-columns: 1fr 1fr; } }
.diff {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.diff h3 { margin-bottom: 8px; padding-left: 34px; position: relative; }
.diff h3::before {
  counter-increment: diff;
  content: counter(diff);
  position: absolute;
  left: 0; top: 1px;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--amber-soft);
  border: 1px solid var(--amber-line);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff p { color: var(--muted); font-size: 14.5px; }

/* ---------- deliverable tables (Before the System) ---------- */
.rung { border-top: 1px solid var(--line); padding: 36px 0; }
.rung-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.rung-head .rung-no {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber);
}
.rung-head .rung-price {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
}
.rung > p { color: var(--muted); max-width: 68ch; margin-bottom: 18px; }

.deliverables { list-style: none; display: grid; gap: 10px; }
@media (min-width: 760px) { .deliverables.two-col { grid-template-columns: 1fr 1fr; } }
.deliverables li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.deliverables li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px; height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--amber);
}
.deliverables li strong { color: var(--text); font-weight: 600; }
.deliverables li span { color: var(--muted); }

/* ---------- proof page ---------- */
.proof-item {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  display: grid;
  gap: 8px;
  max-width: 74ch;
}
.proof-item h3 { font-size: 20px; }
.proof-item p { color: var(--muted); }
.proof-item .check { color: var(--text); font-size: 14.5px; }
.proof-item .check strong { color: var(--amber); font-weight: 600; }

.stat-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin: 8px 0 4px; }
@media (min-width: 760px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.stat .n { font-size: clamp(24px, 4vw, 34px); font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.stat .l { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 6fr 5fr; gap: 48px; } }

form.enquiry { display: grid; gap: 14px; }
form.enquiry label { font-size: 14px; font-weight: 550; color: var(--text); display: grid; gap: 6px; }
form.enquiry input, form.enquiry textarea {
  width: 100%;
  background: var(--bg-raise);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
}
form.enquiry textarea { min-height: 120px; resize: vertical; }
form.enquiry input::placeholder, form.enquiry textarea::placeholder { color: var(--dim); }

.decline {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.decline p { color: var(--muted); font-size: 14.5px; }

.contact-direct { display: grid; gap: 10px; align-content: start; }
.contact-direct a.big {
  font-size: clamp(19px, 3vw, 24px);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
}
.contact-direct a.big:hover { color: var(--amber); text-decoration: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 74ch; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2px 16px;
}
.faq details[open] { border-color: var(--amber-line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 0;
  color: var(--text);
}
.faq details p { color: var(--muted); font-size: 14.5px; padding: 0 0 14px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 46px;
  margin-top: 24px;
}
.site-footer .wrap { display: grid; gap: 18px; }
@media (min-width: 760px) {
  .site-footer .wrap { grid-template-columns: 1fr auto; align-items: start; }
}
.site-footer p { color: var(--dim); font-size: 13.5px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.site-footer nav a { color: var(--muted); font-size: 13.5px; }

/* ---------- mobile CTA bar ---------- */
.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(14, 15, 17, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-strong);
}
.cta-bar .btn { flex: 1; text-align: center; padding: 12px 10px; font-size: 15px; }
.cta-bar .btn-ghost { flex: 0 0 auto; padding: 12px 16px; font-size: 15px; }
@media (min-width: 760px) {
  .cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- funnel hero: copy left, capture right ---------- */
.hero-split { padding-bottom: 8px; }
.hero-grid { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
.hero-copy h1 { margin-bottom: 14px; }

.tick-list { list-style: none; margin: 20px 0 0; display: grid; gap: 10px; }
.tick-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.5;
}
.tick-list li strong { color: var(--text); font-weight: 600; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-soft);
}

/* the capture card */
.hero-form {
  background: var(--bg-raise);
  border: 1px solid var(--amber-line);
  border-radius: var(--radius);
  padding: 24px 20px;
  scroll-margin-top: 20px;
}
.form-title { font-size: 1.25rem; line-height: 1.3; margin-bottom: 8px; }
.form-sub { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.form-sub strong { color: var(--amber); font-weight: 600; }

.hero-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.hero-form .opt { color: var(--dim); font-weight: 400; }
.hero-form input,
.hero-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-weight: 400;
  min-height: 44px;
}
.hero-form textarea { resize: vertical; }
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: var(--dim); }

.btn-wide { width: 100%; justify-content: center; text-align: center; margin-top: 4px; }
.btn-wide[disabled] { opacity: 0.6; cursor: default; }
.form-note { display: block; margin-top: 12px; color: var(--dim); }
.form-alt { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }

/* honeypot — off-screen, never shown, never announced */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status.good { background: rgba(63, 182, 139, 0.10); border: 1px solid rgba(63, 182, 139, 0.4); color: var(--text); }
.form-status.warn { background: rgba(229, 83, 60, 0.10); border: 1px solid rgba(229, 83, 60, 0.4); color: var(--text); }

/* the lit card in the ladder — where to start */
.card-lit { border-color: var(--amber-line); background: var(--amber-soft); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 44px; }
  .hero-form { padding: 28px 26px; position: sticky; top: 24px; }
}

/* 13 Sep 2026 — opt-in checkbox row on the teardown form; inputs in .hero-form are 100% wide by default */
.hero-form label.check { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--muted); font-size: 0.85rem; }
.hero-form label.check input { width: auto; margin: 3px 0 0; accent-color: var(--amber); flex: 0 0 auto; }

/* 13 Sep 2026 — breadcrumb row on subpages */
.crumbs { font-size: 13px; color: var(--dim); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.crumbs span { margin: 0 6px; }
