/* OWNABLE homepage. Modeled on the Rentmate homepage structure (nav / hero / value trio /
   paths / how-it-works / numbers / FAQ / CTA band / footer) rendered in the Ownable quiz
   world so the click into the funnel feels like the same room.
   Tokens mirror assets/nest-v2.css. Breakpoints match the model: 640 / 810 / 1200. */

:root {
  --field: #FAF5EA;        /* page ground — matches the story frames' top edge */
  --field-deep: #F1E8D5;   /* tinted panels */
  --ink: #2B2013;          /* espresso */
  --ink-soft: rgba(43, 32, 19, .68);
  --ink-faint: rgba(43, 32, 19, .5);
  --tile: #FFFFFF;
  --line: rgba(43, 32, 19, .12);
  --gold: #E8B23A;
  --gold-lo: #C9971F;
  --gold-deep: #9A741A;
  --kraft: #C6A06A;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(43, 32, 19, .08);
  --font-head: 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--field);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.shell { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 810px) { .shell { padding: 0 32px; } }

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.02em; }

/* ---------- primary button: the ONE saturated gold object class on the page ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 6px 18px rgba(201, 151, 31, .35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { background: #F0BC49; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(201, 151, 31, .42); }
.btn .material-symbols-outlined { font-size: 20px; }
.btn-sm { padding: 11px 20px; font-size: 14px; box-shadow: 0 4px 12px rgba(201, 151, 31, .3); }
.link-quiet {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--ink-soft); border-bottom: 2px solid var(--line);
  padding-bottom: 2px; transition: color .15s ease, border-color .15s ease;
}
.link-quiet:hover { color: var(--ink); border-color: var(--gold); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 245, 234, .88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: none; align-items: center; gap: 28px; margin-left: 12px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; }
@media (min-width: 810px) { .nav-links { display: flex; } }

/* ---------- hero ---------- */
.hero { padding: 56px 0 0; text-align: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--field-deep); color: var(--gold-deep);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  padding: 8px 16px; border-radius: 999px;
}
.hero-pill .material-symbols-outlined { font-size: 16px; }
.hero h1 {
  margin: 22px auto 0; max-width: 820px;
  font-weight: 800; font-size: 38px; line-height: 1.06; letter-spacing: -0.03em;
}
.hero h1 .able { color: var(--gold-lo); }
.hero h1 br { display: none; }
@media (min-width: 640px) { .hero h1 br { display: inline; } }
.hero-sub { margin: 18px auto 0; max-width: 640px; font-size: 16px; color: var(--ink-soft); }
/* The offer sentence: ListKit-style inline highlight (brand tint at ~25%, per-line rounded
   bands via box-decoration-break: clone), in Ownable gold. */
.hero-mark {
  background: rgba(232, 178, 58, .28);
  color: var(--ink);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.hero-trust {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--ink-faint);
}
.hero-trust .material-symbols-outlined { font-size: 15px; }
/* The quizzes' padlock, verbatim from nest-v2.css .ff-lock — same icon on both surfaces. */
.ff-lock {
  width: 12px; height: 12px; flex: none; display: inline-block;
  background: currentColor;
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a5 5 0 0 0-5 5v3H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V11a2 2 0 0 0-2-2h-1V6a5 5 0 0 0-5-5zm0 2a3 3 0 0 1 3 3v3H9V6a3 3 0 0 1 3-3z'/%3E%3C/svg%3E");
  mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a5 5 0 0 0-5 5v3H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V11a2 2 0 0 0-2-2h-1V6a5 5 0 0 0-5-5zm0 2a3 3 0 0 1 3 3v3H9V6a3 3 0 0 1 3-3z'/%3E%3C/svg%3E");
}
/* "How it works" secondary CTA parked by Austin 2026-08-30 — markup stays for easy re-enable. */
.hero-ctas .link-quiet { display: none; }
.hero-stats {
  margin: 36px auto 0; max-width: 820px;
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.hero-stat {
  background: var(--tile); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 16px 20px; display: flex; align-items: baseline; gap: 10px; text-align: left;
}
.hero-stat b { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--gold-lo); }
.hero-stat span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.35; }
@media (min-width: 640px) {
  .hero h1 { font-size: 52px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { display: block; }
  .hero-stat b { display: block; font-size: 30px; }
  .hero-stat span { display: block; margin-top: 4px; }
}
@media (min-width: 1200px) { .hero h1 { font-size: 62px; } }

/* The stage: a full-width story frame whose sky already fades to the page cream at its top
   edge — same contract as the quiz pages, so NO overlay and no masking here, ever. */
.hero-stage { margin-top: -6px; }
.hero-stage img { width: 100%; height: auto; }

/* ---------- generic section furniture ---------- */
.section { padding: 72px 0; }
@media (min-width: 810px) { .section { padding: 96px 0; } }
.section-head { text-align: center; max-width: 680px; margin: 0 auto; }
.section-head h2 { font-size: 30px; font-weight: 800; line-height: 1.12; }
.section-head p { margin-top: 14px; font-size: 16px; color: var(--ink-soft); }
@media (min-width: 810px) { .section-head h2 { font-size: 40px; } }

/* ---------- value trio ---------- */
.trio { margin-top: 44px; display: grid; gap: 18px; }
@media (min-width: 810px) { .trio { grid-template-columns: repeat(3, 1fr); } }
.trio-card {
  background: var(--tile); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 24px;
}
.trio-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--field-deep); color: var(--gold-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.trio-icon .material-symbols-outlined { font-size: 24px; }
.trio-card h3 { margin-top: 16px; font-size: 19px; font-weight: 800; }
.trio-card p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- program path cards ---------- */
.paths { margin-top: 44px; display: grid; gap: 20px; }
@media (min-width: 810px) { .paths { grid-template-columns: repeat(3, 1fr); } }
.path-card {
  background: var(--tile); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.path-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(43, 32, 19, .12); }
.path-art { aspect-ratio: 16 / 9; overflow: hidden; }
.path-art img { width: 100%; height: 100%; object-fit: cover; }
.path-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.path-body h3 { font-size: 20px; font-weight: 800; }
.path-body p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.path-body .btn { margin-top: 18px; align-self: flex-start; }

.paths-more { margin-top: 34px; text-align: center; }
.paths-more span { display: block; font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.paths-more-row { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tile); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: border-color .15s ease, color .15s ease;
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip .material-symbols-outlined { font-size: 16px; color: var(--gold-lo); }

/* ---------- how it works: dashed-rail timeline (the Rentmate idiom) ---------- */
.steps { margin-top: 52px; display: grid; gap: 48px; max-width: 920px; margin-left: auto; margin-right: auto; }
.step { position: relative; padding-left: 52px; }
.step-rail {
  position: absolute; left: 17px; top: 40px; bottom: -48px;
  border-left: 2px dashed var(--kraft);
}
.step:last-child .step-rail { display: none; }
.step-n {
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 151, 31, .35);
}
.step-grid { display: grid; gap: 20px; align-items: center; }
@media (min-width: 810px) { .step-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: 40px; } }
.step h3 { font-size: 21px; font-weight: 800; }
.step p { margin-top: 8px; font-size: 15px; color: var(--ink-soft); max-width: 460px; }
.step-chip {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 7px;
  background: var(--field-deep); color: var(--gold-deep);
  font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: 999px;
}
.step-chip .material-symbols-outlined { font-size: 15px; }
.step-shot { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.step-shot img { width: 100%; height: auto; }

/* ---------- the numbers: deep-cream band ---------- */
.numbers-band { background: var(--field-deep); }
.numbers { margin-top: 44px; display: grid; gap: 16px; }
@media (min-width: 640px) { .numbers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .numbers { grid-template-columns: repeat(3, 1fr); } }
.num-card {
  background: var(--tile); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 24px;
}
.num-card b { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--gold-lo); line-height: 1; }
.num-card p { margin-top: 10px; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.num-card small { display: block; margin-top: 8px; font-size: 12px; color: var(--ink-faint); }
.numbers-note { margin-top: 26px; text-align: center; font-size: 12.5px; color: var(--ink-faint); max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- FAQ ---------- */
.faq { margin: 44px auto 0; max-width: 760px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 20px 4px; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-q .material-symbols-outlined { font-size: 20px; color: var(--ink-faint); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .material-symbols-outlined { transform: rotate(45deg); color: var(--gold-lo); }
.faq-a { display: none; padding: 0 4px 20px; font-size: 15px; color: var(--ink-soft); max-width: 660px; }
.faq-item.open .faq-a { display: block; }

/* ---------- CTA band ---------- */
.cta-wrap { padding: 0 12px 20px; }
@media (min-width: 810px) { .cta-wrap { padding: 0 20px 28px; } }
.cta-band {
  max-width: 1180px; margin: 0 auto;
  background: var(--field-deep); border-radius: 32px; overflow: hidden;
}
.cta-grid { display: grid; align-items: center; }
@media (min-width: 810px) { .cta-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 46%); } }
.cta-copy { padding: 44px 28px; text-align: center; }
@media (min-width: 810px) { .cta-copy { padding: 64px 20px 64px 56px; text-align: left; } }
.cta-copy h2 { font-size: 30px; font-weight: 800; line-height: 1.1; }
.cta-copy p { margin-top: 14px; font-size: 16px; color: var(--ink-soft); max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-copy .btn { margin-top: 26px; }
.cta-copy .cta-trust { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--ink-faint); }
@media (min-width: 810px) {
  .cta-copy h2 { font-size: 38px; }
  .cta-copy p { margin-left: 0; }
}
.cta-art { display: none; }
@media (min-width: 810px) { .cta-art { display: block; height: 100%; min-height: 320px; } }
.cta-art img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.cta-art-mobile { aspect-ratio: 21 / 9; }
.cta-art-mobile img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 810px) { .cta-art-mobile { display: none; } }

/* ---------- footer ---------- */
.footer { padding: 56px 0 44px; }
.footer-top { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 32px; justify-content: space-between; }
.footer-logo img { height: 24px; width: auto; }
.footer-blurb { margin-top: 12px; max-width: 320px; font-size: 14px; color: var(--ink-soft); }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.footer-col ul { list-style: none; margin-top: 14px; }
.footer-col li + li { margin-top: 10px; }
.footer-col a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); }
.footer-legal { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-legal p { font-size: 12.5px; color: var(--ink-faint); max-width: 820px; }
.footer-legal p + p { margin-top: 10px; }
