:root {
  --bg: #ffffff;
  --soft: #F1EFEA;
  --soft-2: #E9E5DC;
  --ink: #1A1815;
  --cream: #F1EFEA;
  --card: #ffffff;
  --brd: #E1DCD2;
  --brd-2: #DCD6CB;
  --blue: #2C5A40;
  --blue-d: #1F6F4A;
  --blue-l: #9FD79A;
  --blue-deep: #14210F;
  --tint: #DDE4D6;
  --tint-2: #C9D4BF;
  --green: #2C5A40;
  --muted: #7D7669;
  --muted-2: #948C7E;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(26,24,21,0.04), 0 4px 14px -6px rgba(26,24,21,0.08);
  --shadow: 0 2px 6px rgba(26,24,21,0.05), 0 18px 40px -16px rgba(26,24,21,0.14);
  --shadow-blue: 0 10px 30px -10px rgba(26,24,21,0.25);
  --display: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --page-gutter: clamp(24px, 5vw, 72px);
  --content-max: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased; letter-spacing: 0; overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -0.04em; line-height: 1.06; text-wrap: balance; }
a { color: inherit; text-decoration: none; }
img { display: block; }
.wrap {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  position: relative;
  z-index: 2;
}
.accent { color: var(--blue); }
.grad-text {
  background: linear-gradient(110deg, var(--blue-deep) 0%, var(--blue) 48%, var(--blue-l) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Icons */
.ic-svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ic-star { fill: currentColor; stroke: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 750; font-size: 15px;
  padding: 12px 22px; border-radius: 8px; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s; white-space: nowrap;
}
.btn .ic-svg { width: 18px; height: 18px; stroke-width: 2; }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(26,24,21,0.4); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--brd-2); }
.btn-ghost:hover { border-color: var(--muted-2); background: var(--soft); }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* Nav */
header { position: sticky; top: 0; z-index: 50; background: #11100e; border-bottom: 1px solid rgba(255,255,255,0.12); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 62px; }
header .wrap {
  max-width: none;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; letter-spacing: 0; color: #ffffff; }
.logo-mark { width: 28px; height: 28px; border-radius: 7px; object-fit: cover; flex-shrink: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.24); }
.logo .mark { width: 28px; height: 28px; border-radius: 8px; background: var(--ink); display: grid; place-items: center; color: var(--cream); font-family: var(--mono); font-size: 13px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 500; }
.nav-links a { color: rgba(255,255,255,0.68); transition: color .15s; }
.nav-links a:hover { color: #ffffff; }
.nav-links a.active { color: #ffffff; font-weight: 750; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
header .btn-primary { background: #ffffff; color: var(--ink); box-shadow: none; }
header .btn-primary:hover { background: var(--tint); color: var(--ink); box-shadow: none; }
header .btn-ghost { background: transparent; color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.2); }
header .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #ffffff; border-color: rgba(255,255,255,0.36); }
@media (max-width: 940px) { .nav-links { display: none; } }

/* Hero */
.hero { padding: 84px 0 44px; position: relative; }
.hero::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 620px; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(44,90,64,0.10), transparent 70%),
             radial-gradient(ellipse 40% 50% at 80% 20%, rgba(20,33,15,0.06), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--blue-d); background: var(--tint); border: 1px solid var(--tint-2); padding: 6px 14px; border-radius: 8px; margin-bottom: 26px; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero h1 { font-size: clamp(42px, 6.2vw, 64px); font-weight: 600; margin-bottom: 22px; letter-spacing: -0.04em; }
.hero p.sub { font-size: 19px; color: var(--muted); max-width: 520px; margin-bottom: 32px; font-weight: 450; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 22px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust .ic-svg { width: 17px; height: 17px; color: var(--blue); }

/* Hero job packet */
.hero-command { position: relative; display: flex; flex-direction: column; align-items: flex-end; }
.job-photo { position: relative; width: 100%; aspect-ratio: 3 / 2; max-height: 390px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.job-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,24,21,0.08), rgba(26,24,21,0.62)); }
.job-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.job-photo-cap { position: absolute; left: 18px; bottom: 16px; z-index: 1; color: #fff; font-size: 13px; font-weight: 650; }
.job-panel { position: relative; width: min(620px, 94%); margin: -72px 34px 0 0; background: rgba(255,255,255,0.86); border: 1px solid rgba(225,220,210,0.78); border-radius: 12px; box-shadow: 0 22px 60px -26px rgba(26,24,21,0.42), var(--shadow); padding: 24px; backdrop-filter: blur(14px) saturate(1.08); }
.job-panel-top, .job-title-row, .jm-head, .job-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-d); font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.live-dot i { width: 7px; height: 7px; border-radius: 999px; background: var(--blue-l); box-shadow: 0 0 0 4px rgba(159,215,154,0.28); }
.job-age { color: var(--muted-2); font-size: 12px; }
.job-title-row { margin: 18px 0 16px; align-items: flex-start; }
.job-title { font-family: var(--display); font-size: 24px; font-weight: 650; letter-spacing: -0.035em; line-height: 1.05; }
.job-meta { color: var(--muted); font-size: 13.5px; margin-top: 5px; }
.job-pay { text-align: right; font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -0.04em; white-space: nowrap; }
.job-pay small { display: block; font-family: var(--body); font-size: 11.5px; font-weight: 550; color: var(--muted-2); letter-spacing: 0; margin-top: 2px; }
.job-snapshot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.job-snapshot div { background: rgba(241,239,234,0.72); border: 1px solid rgba(225,220,210,0.82); border-radius: 8px; padding: 12px; }
.job-snapshot span { display: block; font-size: 11px; color: var(--muted-2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.job-snapshot b { font-size: 15px; }
.job-milestones { margin: 18px 0; }
.jm-head span { color: var(--muted); font-size: 13px; }
.jm-head b { color: var(--green); font-size: 13px; }
.jm-bars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 10px; }
.jm-bars i { height: 8px; border-radius: 99px; background: var(--soft-2); }
.jm-bars i.done, .jm-bars i.active { background: var(--blue); }
.jm-bars i.active { background: linear-gradient(90deg, var(--blue-l), var(--blue)); }
.job-actions { align-items: center; border-top: 1px solid var(--brd); padding-top: 18px; }
.job-actions span { color: var(--muted); font-size: 12.5px; max-width: 220px; text-align: right; }
@media (max-width: 940px) {
  .hero-command { order: -1; margin-bottom: 20px; }
  .job-panel { width: calc(100% - 28px); margin: -58px 14px 0; }
}
@media (max-width: 560px) {
  .job-photo { aspect-ratio: 4 / 3; }
  .job-panel { width: 100%; margin: -28px 0 0; }
  .job-panel { padding: 18px; }
  .job-title-row, .job-actions { align-items: stretch; flex-direction: column; }
  .job-pay, .job-actions span { text-align: left; }
  .job-snapshot { grid-template-columns: 1fr; }
}

/* Page hero (subpages) */
.page-hero { padding: 92px 0 56px; text-align: center; position: relative; background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, var(--soft) 100%); }
.page-hero > .wrap,
.hero-split > .wrap,
.hero-tint > .wrap,
.hero-photostrip > .wrap {
  max-width: none;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 520px; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(44,90,64,0.08), transparent 70%);
}
.page-hero .pill { margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(46px, 6.4vw, 76px); margin-bottom: 24px; letter-spacing: -0.055em; }
.page-hero p { font-size: 18px; line-height: 1.58; color: var(--muted); max-width: 640px; margin: 0 auto; font-weight: 500; }

/* Stats */
.stats { border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); background: var(--soft); margin-top: 30px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 32px 24px; text-align: center; border-right: 1px solid var(--brd); }
.stat:last-child { border-right: none; }
.stat .num { font-size: 34px; font-weight: 700; letter-spacing: -0.04em; margin-bottom: 4px; }
.stat .lbl { font-size: 13.5px; color: var(--muted); font-weight: 450; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--brd); } }

/* Sections */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-d); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 14px; }
.section-head p { font-size: 16px; color: var(--muted); font-weight: 500; }
.soft-bg { background: var(--soft); }
.center-link { text-align: center; margin-top: 40px; }

/* Icon tile (props / guarantee / homeowner) */
.ic-tile { width: 46px; height: 46px; border-radius: 8px; display: grid; place-items: center; margin-bottom: 18px; background: var(--tint); border: 1px solid var(--tint-2); color: var(--blue); }
.ic-tile .ic-svg { width: 23px; height: 23px; }

/* Props */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prop { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--brd); transition: transform .18s, box-shadow .2s; }
.prop:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prop h3 { font-size: 19px; margin-bottom: 8px; }
.prop p { font-size: 14.5px; color: var(--muted); font-weight: 450; }

/* Contractor feature */
.contractor-feature { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 46px; align-items: center; }
.cf-copy h2 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 16px; letter-spacing: -0.045em; }
.cf-copy > p { color: var(--muted); font-size: 18px; font-weight: 450; max-width: 500px; margin-bottom: 26px; }
.cf-punch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 26px; }
.cf-punch div { border-top: 1px solid var(--brd); padding-top: 14px; }
.cf-punch b { display: block; font-family: var(--display); font-size: 28px; line-height: 1; letter-spacing: -0.04em; color: var(--blue); margin-bottom: 5px; }
.cf-punch span { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.35; }
.handoff { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 14px; align-items: stretch; }
.handoff-col { border-radius: 18px; padding: 22px; border: 1px solid var(--brd); }
.handoff-col.pain { background: var(--soft); color: var(--muted); }
.handoff-col.win { background: var(--ink); color: var(--cream); border-color: rgba(159,215,154,0.25); box-shadow: var(--shadow); }
.handoff-label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; color: var(--muted-2); }
.handoff-col.win .handoff-label { color: rgba(241,239,234,0.58); }
.handoff-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.42; padding: 11px 0; border-top: 1px solid rgba(26,24,21,0.08); }
.handoff-row:first-of-type { border-top: none; }
.handoff-col.win .handoff-row { border-color: rgba(241,239,234,0.12); color: rgba(241,239,234,0.9); }
.handoff-row span { width: 20px; height: 20px; flex-shrink: 0; display: grid; place-items: center; color: #c2483c; }
.handoff-row span .ic-svg { width: 15px; height: 15px; stroke-width: 2.4; }
.handoff-col.win .handoff-row span { color: var(--blue-l); }
.handoff-job { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: rgba(241,239,234,0.08); border: 1px solid rgba(241,239,234,0.14); border-radius: 14px; padding: 15px; margin-bottom: 8px; }
.hj-name { font-weight: 700; letter-spacing: -0.02em; }
.hj-sub { color: rgba(241,239,234,0.6); font-size: 12.5px; margin-top: 2px; }
.hj-amt { color: var(--blue-l); font-family: var(--display); font-size: 25px; font-weight: 700; letter-spacing: -0.04em; white-space: nowrap; }
@media (max-width: 980px) { .contractor-feature { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .handoff, .cf-punch { grid-template-columns: 1fr; } }

/* Guarantee */
.guarantee { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g-card {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--brd);
  box-shadow: var(--shadow-sm);
}
.g-card .ic-tile {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.g-card .ic-tile .ic-svg { width: 20px; height: 20px; }
.g-card .num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--blue-d);
  font-weight: 800;
  margin-bottom: 9px;
  letter-spacing: 0.12em;
}
.g-card h3 {
  max-width: 11em;
  font-size: 21px;
  line-height: 1.1;
  margin-bottom: 11px;
  letter-spacing: -0.035em;
}
.g-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; font-weight: 450; }
.band-foot { text-align: center; margin-top: 38px; color: var(--muted); font-size: 15px; }
.band-foot .accent { font-weight: 600; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--brd); }
.step .n { width: 42px; height: 42px; border-radius: 8px; font-weight: 800; font-size: 17px; display: grid; place-items: center; margin-bottom: 18px; color: var(--blue); background: var(--tint); border: 1.5px solid var(--tint-2); }
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); font-weight: 450; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gitem { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gitem:hover img { transform: scale(1.06); }
.gitem .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: #fff; font-size: 14px; font-weight: 550; background: linear-gradient(0deg, rgba(6,10,20,0.78), transparent); }
.gitem .cap small { display: block; font-weight: 400; opacity: 0.85; font-size: 12.5px; margin-top: 1px; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* Network strip */
.netstrip { text-align: center; }
.netstrip .cap { font-size: 13px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 26px; }
.brands { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.brands span { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: #b6bcc7; transition: color .2s; }
.brands span:hover { color: var(--muted); }
.netstrip .foot { margin-top: 22px; font-size: 12.5px; color: var(--muted-2); }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--brd); display: flex; flex-direction: column; }
.quote .stars { color: #f5a623; margin-bottom: 14px; display: flex; gap: 2px; }
.quote .stars .ic-svg { width: 16px; height: 16px; }
.quote p { font-size: 15.5px; color: var(--ink); font-weight: 450; flex: 1; margin-bottom: 20px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--blue-l), var(--blue-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.quote .nm { font-size: 14px; font-weight: 600; }
.quote .rl { font-size: 12.5px; color: var(--muted); }
.quotes-note { text-align: center; font-size: 12.5px; color: var(--muted-2); margin-top: 22px; font-style: italic; }
@media (max-width: 840px) { .quotes { grid-template-columns: 1fr; } }

/* Comparison */
.compare { max-width: 900px; margin: 0 auto; border: 1px solid var(--brd); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 22px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--brd); vertical-align: middle; }
.compare thead th { font-weight: 600; font-size: 14px; background: var(--soft); }
.compare thead th.us { color: var(--blue); background: var(--tint); }
.compare thead th .lbl-sub { display: block; font-weight: 450; font-size: 12px; color: var(--muted-2); text-transform: none; letter-spacing: 0; margin-top: 2px; }
.compare td.feat { color: var(--ink); font-weight: 550; width: 34%; }
.compare td.us { background: var(--tint); }
.compare td .yes, .compare td .no { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14.5px; }
.compare td .yes { color: var(--ink); }
.compare td .no { color: var(--muted); }
.compare td .yes b, .compare td .no b { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.compare td .yes b { background: #e7f7ef; color: var(--green); }
.compare td .no b { background: #fdeceb; color: #c2483c; }
.compare td b .ic-svg { width: 12px; height: 12px; stroke-width: 2.6; }
.compare tr:last-child td { border-bottom: none; }
@media (max-width: 620px) { .compare th, .compare td { padding: 12px 12px; font-size: 13px; } .compare td .yes, .compare td .no { font-size: 12.5px; gap: 5px; } }

/* Tiers */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.tier { padding: 26px; border-radius: 8px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--brd); transition: transform .18s, box-shadow .2s; }
.tier.enterprise { background: linear-gradient(180deg, var(--ink), #0E0D0B); border-color: rgba(159,215,154,0.26); color: var(--cream); }
.tier.enterprise .t-desc { color: rgba(241,239,234,0.66); }
.tier.enterprise li { color: rgba(241,239,234,0.92); }
.tier.enterprise li .ic-svg { color: var(--blue-l); }
.tier.enterprise .t-price b, .tier.enterprise .t-price span { color: var(--cream); }
.tier.enterprise .btn-primary { background: var(--blue-l); color: var(--blue-deep); box-shadow: 0 12px 34px -12px rgba(0,0,0,0.5); }
.tier.enterprise .btn-primary:hover { background: #B4E3AF; }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier.featured { position: relative; border-color: var(--blue); box-shadow: var(--shadow-blue); }
.tier.featured::after { content: 'Most popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 600; padding: 5px 13px; border-radius: 999px; }
.tier .t-name { font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.tier .t-desc { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; min-height: 38px; font-weight: 450; }
.tier .t-price { margin-bottom: 22px; }
.tier .t-price b { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
.tier .t-price span { color: var(--muted); font-size: 14px; }
.tier ul { list-style: none; margin-bottom: 24px; flex: 1; }
.tier li { font-size: 14px; color: var(--ink); padding: 7px 0; padding-left: 27px; position: relative; font-weight: 450; }
.tier li .ic-svg { position: absolute; left: 0; top: 9px; width: 16px; height: 16px; color: var(--blue); stroke-width: 2.2; }
.tier li.off { color: var(--muted-2); }
.tier li.off .ic-svg { color: var(--brd-2); }
.tier .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 22px; }

/* Badge */
.badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.badge-grid h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.badge-grid p { font-size: 16.5px; color: var(--muted); margin-bottom: 16px; font-weight: 450; }
.badge-visual { padding: 46px 40px; border-radius: 18px; text-align: center; background: #fff; border: 1px solid var(--brd); box-shadow: var(--shadow); }
.badge-visual .brandline { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.badge-visual .plus { color: var(--muted-2); font-size: 12px; margin: 18px 0 14px; letter-spacing: 0.14em; text-transform: uppercase; }
.seal { display: inline-flex; align-items: center; gap: 10px; background: var(--tint); border: 1px solid var(--tint-2); padding: 11px 20px; border-radius: 8px; font-weight: 700; font-size: 15px; color: var(--ink); }
.seal .s-mark { width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(150deg, var(--blue-l), var(--blue-deep)); display: grid; place-items: center; color: #fff; }
.seal .s-mark .ic-svg { width: 14px; height: 14px; stroke-width: 2.2; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-category {
  margin: 28px 0 12px;
  color: var(--blue-d);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.faq-category:first-child { margin-top: 0; }
.faq { border: 1px solid var(--brd); border-radius: 8px; margin-bottom: 12px; background: #fff; overflow: hidden; transition: border-color .2s; }
.faq[open] { border-color: var(--brd-2); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-size: 16.5px; font-weight: 550; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { color: var(--blue); display: grid; place-items: center; transition: transform .2s; flex-shrink: 0; }
.faq summary .pm .ic-svg { width: 18px; height: 18px; stroke-width: 2; }
.faq[open] summary .pm { transform: rotate(45deg); }
.faq .a { padding: 0 24px 22px; color: var(--muted); font-size: 15px; font-weight: 450; }

/* Join */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.join h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.join p.jsub { color: var(--muted); font-size: 18px; margin-bottom: 26px; font-weight: 450; }
.join-points { list-style: none; }
.join-points li { padding: 9px 0; padding-left: 30px; position: relative; color: var(--ink); font-size: 15px; font-weight: 450; }
.join-points li .ic-svg { position: absolute; left: 0; top: 10px; width: 18px; height: 18px; color: var(--blue); stroke-width: 2.2; }
.form-card { padding: 32px; border-radius: 8px; background: #fff; border: 1px solid var(--brd); box-shadow: var(--shadow); }
.form-card h3 { font-size: 21px; margin-bottom: 6px; }
.form-card .fc-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; font-weight: 450; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 12.5px; font-weight: 550; margin-bottom: 6px; color: var(--muted); }
.field input, .field select { width: 100%; padding: 12px 14px; border: 1px solid var(--brd-2); border-radius: 8px; font-family: inherit; font-size: 14.5px; background: #fff; color: var(--ink); transition: border .15s, box-shadow .15s; }
.field select, .finder-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-color: var(--card);
  background-image: linear-gradient(45deg, transparent 50%, #2C5A40 50%), linear-gradient(135deg, #2C5A40 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select:hover, .finder-form select:hover { border-color: var(--muted-2); background-color: #fff; }
.field select:invalid, .finder-form select:invalid { color: var(--muted-2); }
.field select option, .finder-form select option { color: var(--ink); background: #fff; }
.field select optgroup, .finder-form select optgroup { color: var(--blue-d); font-weight: 700; }
.field input::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--tint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted-2); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 26px 0; }
.form-success.show { display: block; }
.form-success .big { width: 56px; height: 56px; border-radius: 50%; background: var(--tint); color: var(--blue); display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .big .ic-svg { width: 28px; height: 28px; stroke-width: 2.2; }

/* Homeowner */
.ho-sec { background: linear-gradient(180deg, var(--tint), #ffffff 55%); }
.ho-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 44px; }
.ho-b { background: #fff; border: 1px solid var(--brd); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.ho-b h3 { font-size: 16.5px; margin-bottom: 7px; }
.ho-b p { font-size: 14px; color: var(--muted); font-weight: 450; }
.finder { background: #fff; border: 1px solid var(--brd); border-radius: 8px; box-shadow: var(--shadow); padding: 30px; max-width: 760px; margin: 0 auto; text-align: center; }
.hs-visual .finder { width: 100%; max-width: none; margin: 0; box-shadow: none; }
.finder h3 { font-size: 22px; margin-bottom: 6px; }
.finder > p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; font-weight: 450; }
.finder-form { display: flex; gap: 10px; flex-wrap: wrap; }
.finder-form select, .finder-form input { flex: 1; min-width: 160px; padding: 13px 14px; border: 1px solid var(--brd-2); border-radius: 8px; font-family: inherit; font-size: 14.5px; background: #fff; color: var(--ink); transition: border .15s, box-shadow .15s; }
.finder-form select {
  padding-right: 44px;
  background-color: var(--card);
  background-image: linear-gradient(45deg, transparent 50%, #2C5A40 50%), linear-gradient(135deg, #2C5A40 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.finder-form select:focus, .finder-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--tint); }
.finder-form .btn { flex: 0 0 auto; }
.finder .avail { margin-top: 16px; font-size: 13px; color: var(--muted); }
.finder .avail b { color: var(--ink); font-weight: 600; }
.finder-success { display: none; margin-top: 16px; padding: 14px; border-radius: 12px; background: var(--tint); color: var(--blue-d); font-weight: 500; font-size: 14px; }
.finder-success.show { display: block; }

.native-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  padding: 0 !important;
  border: 0 !important;
}
.custom-select { position: relative; width: 100%; }
.finder-form .custom-select { flex: 1; min-width: 160px; }
.custom-select-trigger {
  width: 100%;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--brd-2);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
  font: inherit;
  font-size: 14.5px;
  text-align: left;
  cursor: pointer;
  transition: border .15s, box-shadow .15s, background .15s;
}
.finder-form .custom-select-trigger { min-height: 49px; }
.custom-select-trigger:hover { border-color: var(--muted-2); background: #fff; }
.custom-select-trigger:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--tint); }
.custom-select-trigger.is-empty { color: var(--muted-2); }
.custom-select-chev {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .15s ease;
}
.custom-select.open .custom-select-chev { transform: rotate(225deg) translate(-2px, -1px); }
.custom-select-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 130;
  max-height: 280px;
  overflow: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 14px;
  box-shadow: 0 20px 48px -22px rgba(26,24,21,0.34), var(--shadow-sm);
}
.custom-select.open .custom-select-menu { display: block; }
.custom-select-group {
  padding: 10px 10px 5px;
  color: var(--blue-d);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.custom-select-option {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  padding: 10px 11px;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.custom-select-option:hover, .custom-select-option:focus { outline: none; background: var(--tint); color: var(--blue-deep); }
.custom-select-option.selected { background: var(--tint); color: var(--blue-deep); font-weight: 650; }
.custom-select-option.placeholder { color: var(--muted-2); }
.custom-select.invalid .custom-select-trigger { border-color: #c2483c; box-shadow: 0 0 0 3px rgba(194,72,60,0.12); }
@media (max-width: 840px) { .ho-benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ho-benefits { grid-template-columns: 1fr; } .finder-form .btn { width: 100%; } }

/* Estimate popup */
body.modal-open { overflow: hidden; }
.estimate-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 24px; }
.estimate-modal.show { display: flex; }
.estimate-backdrop { position: absolute; inset: 0; background: rgba(26,24,21,0.58); backdrop-filter: blur(7px); }
.estimate-dialog { position: relative; z-index: 1; width: min(720px, 100%); max-height: min(760px, calc(100vh - 42px)); overflow: auto; background: #fff; border: 1px solid var(--brd); border-radius: 8px; box-shadow: 0 24px 70px -24px rgba(0,0,0,0.5); padding: 34px; }
.estimate-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 1px solid var(--brd-2); border-radius: 8px; background: #fff; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .15s, color .15s, border-color .15s; }
.estimate-close:hover { background: var(--soft); color: var(--ink); border-color: var(--muted-2); }
.estimate-head { padding-right: 42px; margin-bottom: 24px; }
.estimate-head .eyebrow { margin-bottom: 10px; }
.estimate-head h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 10px; letter-spacing: -0.04em; }
.estimate-head p { color: var(--muted); font-size: 16px; font-weight: 450; max-width: 560px; }
.estimate-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.estimate-consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 12.5px; line-height: 1.5; margin: 4px 0 16px; cursor: pointer; }
.estimate-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }
.estimate-success { display: none; text-align: center; padding: 26px 8px 10px; }
.estimate-success.show { display: block; }
.estimate-success .big { width: 58px; height: 58px; border-radius: 50%; background: var(--tint); color: var(--blue); display: grid; place-items: center; margin: 0 auto 15px; }
.estimate-success .big .ic-svg { width: 29px; height: 29px; stroke-width: 2.4; }
.estimate-success h3 { font-size: 24px; margin-bottom: 8px; }
.estimate-success p { color: var(--muted); font-size: 15px; max-width: 430px; margin: 0 auto; }
@media (max-width: 620px) {
  .estimate-modal { padding: 12px; align-items: flex-end; }
  .estimate-dialog { max-height: calc(100vh - 24px); padding: 28px 20px 22px; border-radius: 16px; }
  .estimate-head { padding-right: 34px; }
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 50% 82% at 50% 0%, rgba(44,90,64,0.24), transparent 72%),
    linear-gradient(180deg, #1a1815 0%, #11100e 100%);
  padding-bottom: 70px;
}
.cta-band .inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; letter-spacing: -0.04em; }
.cta-band p { color: rgba(255,255,255,0.86); font-size: 18px; margin-bottom: 28px; font-weight: 450; }
.cta-band .btn-primary { background: #ffffff; color: var(--ink); box-shadow: 0 12px 34px -10px rgba(0,0,0,0.45); }
.cta-band .btn-primary:hover { background: var(--tint); }
.cta-band .cta-sub { margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,0.7); }

/* Homeowner mini strip (home page) */
.ho-inner { padding: 34px 40px; border-radius: 8px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: linear-gradient(120deg, #DDE4D6, #E9F1E6); border: 1px solid var(--tint-2); }
.ho-inner h3 { font-size: 22px; margin-bottom: 4px; }
.ho-inner p { color: var(--muted); font-size: 14.5px; font-weight: 450; }

/* Trust bar */
.trustbar { border-bottom: 1px solid var(--brd); background: #fff; padding: 24px 0; }
.trustbar .row { display: flex; align-items: center; justify-content: center; gap: 12px 38px; flex-wrap: wrap; }
.tb-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.tb-item .ck { width: 18px; height: 18px; border-radius: 50%; background: var(--tint); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.tb-item .ck .ic-svg { width: 11px; height: 11px; stroke-width: 3; }

/* Footer */
footer {
  border-top: 0;
  padding: 0 0 52px;
  background: #11100e;
  color: rgba(241,239,234,0.66);
}
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 38px; }
.foot-brand { max-width: 300px; }
.foot-brand .logo { margin-bottom: 14px; color: #ffffff; }
.foot-brand p { font-size: 13.5px; line-height: 1.6; color: rgba(241,239,234,0.64); font-weight: 450; }
.social-links { display: flex; align-items: center; gap: 9px; margin-top: 18px; }
.social-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(241,239,234,0.18); color: #ffffff; font-weight: 800; font-size: 15px; transition: transform .15s ease, border-color .2s ease, background .2s ease; }
.social-icon:hover { transform: translateY(-2px); border-color: rgba(221,228,214,0.38); background: rgba(221,228,214,0.16); }
.social-instagram { font-size: 21px; line-height: 1; }
.social-google { font-family: var(--display); }
.foot-col h4 { font-size: 13px; margin-bottom: 14px; font-weight: 600; color: #ffffff; }
.foot-col a { display: block; font-size: 13.5px; color: rgba(241,239,234,0.62); padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: #ffffff; }
.foot-bottom { border-top: 1px solid rgba(241,239,234,0.14); padding-top: 22px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(241,239,234,0.48); flex-wrap: wrap; gap: 10px; }

/* Legal / policy pages */
.policy-page { min-height: 70vh; }
.policy-hero { padding: 72px 0 28px; text-align: center; }
.policy-hero h1 { font-size: clamp(38px, 5vw, 60px); margin-bottom: 12px; }
.policy-hero p { color: var(--muted); font-size: 16px; }
.policy-body { padding: 26px 0 82px; }
.policy-wrap { max-width: 760px; background: #fff; border: 1px solid var(--brd); border-radius: 8px; box-shadow: var(--shadow-sm); padding: 42px; }
.policy-wrap h2 { font-size: 22px; margin: 34px 0 10px; }
.policy-wrap p { color: var(--muted); font-size: 16px; font-weight: 450; line-height: 1.75; }
.policy-wrap a { color: var(--blue-d); font-weight: 650; }
.policy-foot a { color: rgba(241,239,234,0.64); font-weight: 600; }
.policy-foot a:hover { color: #ffffff; }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--brd); padding: 11px 16px; padding-bottom: calc(11px + env(safe-area-inset-bottom, 0px)); box-shadow: 0 -6px 22px -12px rgba(14,16,22,0.35); }
.sticky-cta .in { display: flex; align-items: center; gap: 12px; justify-content: space-between; max-width: 560px; margin: 0 auto; }
.sticky-cta .txt { font-size: 13.5px; font-weight: 650; line-height: 1.25; }
.sticky-cta .txt small { display: block; font-weight: 450; color: var(--muted); font-size: 11.5px; }
.sticky-cta .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 700px) {
  .sticky-cta { display: block; }
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px)); }
  footer { padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px)); }
  .foot-grid { gap: 28px; margin-bottom: 30px; }
  .foot-bottom { gap: 8px 16px; }
}

/* Responsive */
@media (max-width: 940px) {
  .hero-grid, .badge-grid, .join-grid { grid-template-columns: 1fr; }
  .props, .guarantee { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero { padding: 52px 0 40px; }
  .page-hero, .hero-split, .hero-tint, .hero-photostrip { padding-top: 64px; }
  .page-hero, .hero-split, .hero-tint { padding-bottom: 48px; }
}
@media (max-width: 1040px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .page-hero, .hero-split, .hero-tint, .hero-photostrip { padding-top: 46px; }
  .page-hero, .hero-split, .hero-tint { padding-bottom: 38px; }
  .page-hero h1, .hs-grid h1, .ht-grid h1, .hero-photostrip h1 { font-size: clamp(42px, 12vw, 56px); margin-bottom: 18px; }
  .page-hero p, .hs-grid .hs-copy > p, .ht-grid .ht-copy > p, .hero-photostrip p { font-size: 16px; }
}

/* ================= Credibility / operating-system pass ================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.proof-card b {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 7px;
}
.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.assurance-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
}
.assurance-panel h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}
.assurance-panel p {
  color: rgba(241,239,234,0.72);
  font-size: 16px;
  line-height: 1.65;
}
.assurance-list {
  display: grid;
  gap: 10px;
}
.assurance-list div {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  gap: 13px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(241,239,234,0.12);
  border-radius: 8px;
  background: rgba(241,239,234,0.06);
}
.assurance-list i {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--tint);
  color: var(--blue-deep);
  font-style: normal;
  font-weight: 850;
}
.assurance-list b {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 3px;
}
.assurance-list span {
  display: block;
  color: rgba(241,239,234,0.66);
  font-size: 13.5px;
  line-height: 1.45;
}
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.standard-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.standard-card .label {
  color: var(--blue-d);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.standard-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.standard-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
  font-weight: 450;
}
.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lane-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.lane-card.dark {
  background: var(--ink);
  border-color: rgba(241,239,234,0.18);
  color: var(--cream);
}
.lane-card .kicker {
  color: var(--blue-d);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lane-card.dark .kicker { color: var(--blue-l); }
.lane-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.lane-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 450;
}
.lane-card.dark p { color: rgba(241,239,234,0.72); }
.lane-card ul {
  list-style: none;
  margin-top: 18px;
}
.lane-card li {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.45;
  padding: 8px 0;
  border-top: 1px solid rgba(26,24,21,0.08);
}
.lane-card.dark li {
  color: rgba(241,239,234,0.88);
  border-color: rgba(241,239,234,0.12);
}
.lane-card li:first-child { border-top: none; }
.lane-note {
  margin-top: 20px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}
.profile-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: var(--blue-d);
  font-size: 12.5px;
  font-weight: 750;
}
.profile-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-l);
  box-shadow: 0 0 0 4px rgba(159,215,154,0.22);
}
@media (max-width: 940px) {
  section { padding: 72px 0; }
  .nav {
    height: auto;
    min-height: 62px;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    padding-top: 8px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .proof-grid, .standard-grid, .lane-grid { grid-template-columns: 1fr 1fr; }
  .assurance-panel { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --page-gutter: 24px; }
  section { padding: 58px 0; }
  .proof-grid, .standard-grid, .lane-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .nav-links {
    gap: 14px;
    font-size: 12px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .hs-grid, .ht-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hs-copy, .ht-copy {
    order: -1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hs-visual, .ht-visual {
    order: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
  }
  .page-hero h1,
  .hs-grid h1,
  .ht-grid h1,
  .hero-photostrip h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.05;
    overflow-wrap: normal;
    text-wrap: balance;
  }
  .page-hero p,
  .hs-grid .hs-copy > p,
  .ht-grid .ht-copy > p,
  .hero-photostrip p {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }
  .hero-trust { gap: 12px; }
  .hero-trust span { font-size: 12.5px; }
  .flowcard,
  .tier-glance,
  .finder {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .flowrow {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }
  .flowrow .famt {
    grid-column: 2;
    margin-left: 0;
    font-size: 15px;
  }
  .tier-glance .tg-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px 14px;
  }
  .tier-glance .tg-price { font-size: 17px; }
  .hero-photostrip { text-align: left; }
  .hero-photostrip p { margin-left: 0; margin-right: 0; }
  .hi-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hi-strip .hicell {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }
  .hi-strip .hicell:nth-child(3) { display: block; }
}

/* ---- Local brand selector (for-homeowners) ---- */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--brd-2); background: #fff; font-size: 13.5px; font-weight: 550; color: var(--muted); cursor: pointer; transition: all .15s; }
.chip:hover { border-color: var(--muted-2); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brand-card { background: #fff; border: 1px solid var(--brd); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s; display: flex; flex-direction: column; }
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.brand-photo { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.brand-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.brand-card:hover .brand-photo img { transform: scale(1.05); }
.badge-chip { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.94); backdrop-filter: blur(4px); border-radius: 999px; padding: 5px 12px 5px 6px; font-size: 11.5px; font-weight: 600; display: flex; align-items: center; gap: 6px; box-shadow: var(--shadow-sm); color: var(--ink); }
.badge-chip .s-mark { width: 17px; height: 17px; border-radius: 5px; background: linear-gradient(150deg, var(--blue-l), var(--blue-deep)); display: grid; place-items: center; color: #fff; }
.badge-chip .s-mark .ic-svg { width: 10px; height: 10px; stroke-width: 2.6; }
.brand-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.brand-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 5px; }
.brand-name { font-size: 17px; font-weight: 650; letter-spacing: -0.02em; }
.brand-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.brand-rating .ic-svg { width: 14px; height: 14px; color: #f5a623; }
.brand-rating span { color: var(--muted-2); font-weight: 450; }
.brand-spec { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.brand-meta { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted-2); margin-bottom: 18px; }
.brand-meta .ic-svg { width: 14px; height: 14px; color: var(--blue); }
.brand-card .btn { margin-top: auto; width: 100%; justify-content: center; }
@media (max-width: 900px) { .brand-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .brand-grid { grid-template-columns: 1fr; } }

/* ---- What we handle / you handle (how-it-works) ---- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.duo-card { border-radius: 8px; padding: 32px; }
.duo-card.us { background: var(--tint); border: 1px solid var(--tint-2); }
.duo-card.you { background: #fff; border: 1px solid var(--brd); }
.duo-card .duo-h { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.duo-card .duo-h .ic-tile { margin-bottom: 0; }
.duo-card h3 { font-size: 20px; }
.duo-card .duo-h span { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.duo-list { list-style: none; }
.duo-list li { padding: 8px 0 8px 28px; position: relative; font-size: 14.5px; color: var(--ink); font-weight: 450; border-top: 1px solid rgba(14,16,22,0.06); }
.duo-list li:first-child { border-top: none; }
.duo-list li .ic-svg { position: absolute; left: 0; top: 11px; width: 16px; height: 16px; color: var(--blue); stroke-width: 2.2; }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }

/* ---- Escrow timeline (how-it-works) ---- */
.timeline { max-width: 620px; margin: 0 auto; }
.tl-item { display: flex; gap: 18px; padding-bottom: 26px; position: relative; align-items: flex-start; }
.tl-item::before { content: ''; position: absolute; left: 16px; top: 34px; bottom: -6px; width: 2px; background: var(--brd); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: #fff; color: var(--blue); border: 2px solid var(--tint-2); z-index: 1; }
.tl-dot .ic-svg { width: 15px; height: 15px; stroke-width: 2.4; }
.tl-dot.done { background: var(--blue); color: #fff; border-color: var(--blue); }
.tl-body { flex: 1; padding-top: 4px; }
.tl-body h4 { font-size: 16px; margin-bottom: 3px; }
.tl-body p { font-size: 14px; color: var(--muted); font-weight: 450; }
.tl-amt { margin-left: 14px; font-weight: 700; font-size: 15px; white-space: nowrap; padding-top: 6px; }
.tl-amt.paid { color: var(--green); }

/* ---- Feature strip (our-work: what every project includes) ---- */
.feat4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat-item { background: #fff; border: 1px solid var(--brd); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.feat-item .ic-tile { width: 40px; height: 40px; margin-bottom: 14px; }
.feat-item h4 { font-size: 15.5px; margin-bottom: 5px; }
.feat-item p { font-size: 13.5px; color: var(--muted); font-weight: 450; }
@media (max-width: 860px) { .feat4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .feat4 { grid-template-columns: 1fr; } }

/* ---- Gallery category header ---- */
.gallery-cat { margin: 0 0 22px; }
.gallery-cat h3 { font-size: 22px; margin-bottom: 6px; }
.gallery-cat p { font-size: 15px; color: var(--muted); font-weight: 450; max-width: 620px; }
.gallery + .gallery-cat, section .gallery + .gallery-cat { margin-top: 52px; }

/* ---- Case study (our-work) ---- */
.casestudy { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; border: 1px solid var(--brd); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.casestudy .cs-img { position: relative; min-height: 340px; }
.casestudy .cs-img img { width: 100%; height: 100%; object-fit: cover; }
.casestudy .cs-body { padding: 40px; }
.casestudy .cs-tag { font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.casestudy .cs-body h3 { font-size: 26px; margin-bottom: 12px; }
.casestudy .cs-body > p { font-size: 15px; color: var(--muted); font-weight: 450; margin-bottom: 22px; }
.cs-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; margin-bottom: 22px; }
.cs-meta .m-lbl { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 2px; }
.cs-meta .m-val { font-size: 15px; font-weight: 600; }
.cs-covered { border-top: 1px solid var(--brd); padding-top: 18px; }
.cs-covered .cc-lbl { font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.cs-covered ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.cs-covered li { font-size: 12.5px; color: var(--blue-d); background: var(--tint); border: 1px solid var(--tint-2); border-radius: 999px; padding: 5px 11px; }
@media (max-width: 820px) { .casestudy { grid-template-columns: 1fr; } .casestudy .cs-img { min-height: 260px; } }

/* ================= Trades umbrella ================= */
.trades { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trade-cat { position: relative; overflow: hidden; background: #183c2b; border: 1px solid rgba(24,60,43,0.72); border-radius: 8px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s, border-color .2s, background .18s; }
.trade-cat::after { content: 'Routed as sold scopes'; position: absolute; top: 18px; right: 20px; color: rgba(241,239,234,0.68); font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.trade-cat:hover { transform: translateY(-4px); background: #1b432f; box-shadow: var(--shadow); border-color: rgba(221,228,214,0.22); }
.trade-cat .tc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 0; padding: 24px 26px 18px; background: transparent; color: var(--cream); }
.trade-cat .tc-head .ic-tile { margin-bottom: 0; background: rgba(241,239,234,0.14); border-color: rgba(241,239,234,0.24); color: var(--blue-l); }
.trade-cat h3 { font-size: 22px; letter-spacing: -0.035em; }
.trade-cat .tc-sub { font-size: 13px; color: rgba(241,239,234,0.72); font-weight: 450; margin-top: 2px; }
.trade-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 26px 24px; background: transparent; }
.trade-tags span { font-size: 13px; color: rgba(255,255,255,0.88); background: rgba(221,228,214,0.16); border: 0; border-radius: 6px; padding: 6px 11px; font-weight: 750; box-shadow: none; transition: background .18s ease, color .18s ease, transform .18s ease; }
.trade-tags span:first-child { background: rgba(221,228,214,0.22); color: #fff; }
.trade-tags span:hover { transform: translateY(-1px); background: rgba(221,228,214,0.3); }
@media (max-width: 760px) { .trades { grid-template-columns: 1fr; } .trade-cat::after { display: none; } }

/* ================= Brand card v2 (monogram cover) ================= */
.brand-cover { height: 132px; position: relative; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-deep), var(--blue)); }
.brand-cover::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(255,255,255,0.20), transparent 55%); }
.brand-cover .mono { width: 62px; height: 62px; border-radius: 15px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.30); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 21px; letter-spacing: -0.03em; z-index: 1; }
.brand-cover .badge-chip { top: 12px; right: 12px; left: auto; }
.brand-cover .tradeicon { position: absolute; bottom: 12px; left: 14px; display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.92); font-size: 12px; font-weight: 600; z-index: 1; }
.brand-cover .tradeicon .ic-svg { width: 15px; height: 15px; }

/* ================= Hero: split (how-it-works, for-homeowners) ================= */
.hero-split { padding: 84px 0 78px; position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #ffffff 64%, var(--soft) 100%); }
.hero-split::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 1000px; height: 520px; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(44,90,64,0.08), transparent 70%); }
.hs-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr); gap: clamp(28px, 4vw, 58px); align-items: center; min-height: 500px; }
.hs-grid h1 { font-size: clamp(46px, 6vw, 72px); margin-bottom: 24px; letter-spacing: -0.055em; }
.hs-grid .hs-copy > p { font-size: 18px; line-height: 1.58; color: var(--muted); font-weight: 500; max-width: 650px; margin-bottom: 30px; }
.hs-visual {
  width: min(680px, 100%);
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  padding: 16px;
  background: rgba(251,250,247,0.96);
  border: 1px solid var(--brd);
  border-radius: 14px;
  box-shadow: 0 28px 72px -46px rgba(26,24,21,0.55);
}
.hs-visual::before {
  content: none;
  position: absolute;
  inset: 34px 82px -26px -28px;
  background: var(--soft);
  border: 1px solid var(--brd);
  border-radius: 8px;
  z-index: -1;
}
@media (max-width: 940px) { .hs-grid { grid-template-columns: 1fr; } .hs-visual { order: -1; } }

/* Escrow mini flow card (how-it-works hero) */
.flowcard {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(241,239,234,0.16);
  border-radius: 10px;
  box-shadow: none;
  padding: 24px;
  color: var(--cream);
}
.flowcard .fh { font-family: var(--mono); font-size: 11px; color: rgba(241,239,234,0.58); font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.flowrow { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 14px; margin-top: 9px; border: 1px solid rgba(241,239,234,0.12); border-radius: 8px; background: rgba(241,239,234,0.06); }
.flowrow:first-of-type { margin-top: 0; }
.flowrow .fdot { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.flowrow .fdot.done { background: var(--blue-l); color: var(--blue-deep); }
.flowrow .fdot.wait { background: var(--tint); color: var(--blue); border: 1px solid var(--tint-2); }
.flowrow .fdot .ic-svg { width: 15px; height: 15px; stroke-width: 2.5; }
.flowrow .ftext { font-size: 15px; font-weight: 750; letter-spacing: -0.01em; }
.flowrow .ftext small { display: block; color: rgba(241,239,234,0.58); font-weight: 500; font-size: 12.5px; margin-top: 2px; }
.flowrow .famt { margin-left: auto; font-weight: 800; font-size: 17px; white-space: nowrap; }
.flowrow .famt.paid { color: var(--blue-l); }

/* ================= Hero: tinted (membership) ================= */
.hero-tint { background: linear-gradient(180deg, #fff 0%, #fff 64%, var(--soft) 100%); border-bottom: 1px solid var(--brd); padding: 84px 0 78px; overflow: hidden; }
.ht-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr); gap: clamp(28px, 4vw, 58px); align-items: center; min-height: 500px; }
.ht-grid h1 { font-size: clamp(46px, 5.8vw, 72px); margin-bottom: 24px; letter-spacing: -0.055em; }
.ht-grid .ht-copy > p { font-size: 18px; line-height: 1.58; color: var(--muted); font-weight: 500; margin-bottom: 30px; max-width: 650px; }
.ht-visual {
  width: min(660px, 100%);
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  padding: 16px;
  background: rgba(251,250,247,0.96);
  border: 1px solid var(--brd);
  border-radius: 14px;
  box-shadow: 0 28px 72px -46px rgba(26,24,21,0.55);
}
.ht-visual::before {
  content: none;
  position: absolute;
  inset: 34px 82px -26px -28px;
  background: var(--soft);
  border: 1px solid var(--brd);
  border-radius: 8px;
  z-index: -1;
}
.tier-glance {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(241,239,234,0.16);
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
  padding: 12px;
}
.tier-glance .tg-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; border: 1px solid rgba(241,239,234,0.12); border-radius: 8px; margin-top: 9px; font-size: 16px; color: var(--cream); background: rgba(241,239,234,0.06); }
.tier-glance .tg-row:first-child { margin-top: 0; }
.tier-glance .tg-row:last-child { border-bottom: 1px solid rgba(241,239,234,0.12); }
.tier-glance .tg-row.hl { background: var(--tint); color: var(--ink); border-color: var(--tint-2); }
.tier-glance .tg-name { font-weight: 800; letter-spacing: -0.015em; }
.tier-glance .tg-price { font-weight: 850; font-size: 20px; white-space: nowrap; }
.tier-glance .tg-price span { color: rgba(241,239,234,0.58); font-weight: 600; font-size: 13px; }
.tier-glance .tg-row.hl .tg-price span { color: var(--muted); }
@media (max-width: 860px) { .ht-grid { grid-template-columns: 1fr; } }

.engine-map {
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(241,239,234,0.16);
  border-radius: 10px;
  padding: 20px;
  color: var(--cream);
}
.em-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(241,239,234,0.13);
}
.em-head span {
  color: var(--blue-l);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.em-head b {
  max-width: 210px;
  color: #fff;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-align: right;
}
.em-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.em-flow div,
.em-lanes div {
  border: 1px solid rgba(241,239,234,0.13);
  border-radius: 8px;
  background: rgba(241,239,234,0.06);
  padding: 14px;
}
.em-flow span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  margin-bottom: 12px;
  background: var(--tint);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
}
.em-flow b,
.em-lanes b {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.em-flow small,
.em-lanes span {
  display: block;
  color: rgba(241,239,234,0.62);
  font-size: 12.5px;
  line-height: 1.35;
}
.em-lanes {
  display: grid;
  gap: 8px;
}
.em-lanes div:nth-child(2) {
  background: var(--tint);
  color: var(--ink);
  border-color: var(--tint-2);
}
.em-lanes div:nth-child(2) b { color: var(--ink); }
.em-lanes div:nth-child(2) span { color: var(--muted); }

.membership-preview {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(241,239,234,0.09), transparent 34%),
    linear-gradient(180deg, #1a1815 0%, #11100e 100%);
  border: 1px solid rgba(241,239,234,0.16);
  border-radius: 10px;
  padding: 18px;
}
.membership-preview::before {
  content: "";
  position: absolute;
  inset: auto -42px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(159,215,154,0.14);
  filter: blur(16px);
  pointer-events: none;
}
.mp-top,
.mp-job,
.mp-support,
.mp-lanes {
  position: relative;
  z-index: 1;
}
.mp-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(241,239,234,0.13);
}
.mp-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-l);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mp-top b {
  display: block;
  max-width: 330px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.mp-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--blue-l);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mp-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}
.mp-job {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-top: 14px;
  padding: 18px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(241,239,234,0.72);
  border-radius: 8px;
}
.mp-job-main > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.mp-job h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.mp-job p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.mp-job-meta {
  min-width: 112px;
  align-self: start;
  padding: 13px 12px;
  text-align: right;
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 7px;
}
.mp-job-meta b {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.035em;
}
.mp-job-meta span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mp-support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 9px;
}
.mp-support div,
.mp-lanes div {
  border: 1px solid rgba(241,239,234,0.13);
  border-radius: 8px;
  background: rgba(241,239,234,0.06);
}
.mp-support div {
  padding: 14px;
}
.mp-support b,
.mp-lanes b {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.22;
  margin-bottom: 5px;
}
.mp-support span,
.mp-lanes small {
  display: block;
  color: rgba(241,239,234,0.62);
  font-size: 12.5px;
  line-height: 1.38;
}
.mp-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 9px;
}
.mp-lanes div {
  padding: 13px;
}
.mp-lanes span {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-bottom: 12px;
  border-radius: 7px;
  background: rgba(241,239,234,0.1);
  color: var(--blue-l);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
}
.mp-lanes div.active {
  background: var(--tint);
  color: var(--ink);
  border-color: var(--tint-2);
}
.mp-lanes div.active b { color: var(--ink); }
.mp-lanes div.active small { color: var(--muted); }
.mp-lanes div.active span {
  background: var(--ink);
  color: var(--cream);
}

/* ================= Hero: photo strip (our-work) ================= */
.hero-photostrip { padding: 92px 0 0; text-align: center; position: relative; background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, var(--soft) 100%); }
.hero-photostrip h1 { font-size: clamp(46px, 6.2vw, 76px); margin-bottom: 24px; letter-spacing: -0.055em; }
.hero-photostrip p { font-size: 18px; line-height: 1.58; color: var(--muted); max-width: 680px; margin: 0 auto 50px; font-weight: 500; }
.hi-strip { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 10px; height: 320px; }
.hi-strip .hicell { overflow: hidden; position: relative; }
.hi-strip .hicell:first-child { border-radius: 0; }
.hi-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hi-strip .hicell:hover img { transform: scale(1.05); }
.hi-strip .hicell .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; font-size: 13px; font-weight: 550; background: linear-gradient(0deg, rgba(6,10,20,0.7), transparent); }
@media (max-width: 760px) { .hi-strip { grid-template-columns: 1fr 1fr; height: 240px; } .hi-strip .hicell:nth-child(3) { display: none; } }

/* Final hero spacing overrides */
.hero-split, .hero-tint { padding-top: 70px; padding-bottom: 64px; }
.hs-grid, .ht-grid { min-height: 0; }
@media (max-width: 940px) {
  .page-hero, .hero-split, .hero-tint, .hero-photostrip { padding-top: 64px; }
  .page-hero, .hero-split, .hero-tint { padding-bottom: 48px; }
}
@media (max-width: 560px) {
  .page-hero, .hero-split, .hero-tint, .hero-photostrip { padding-top: 46px; }
  .page-hero, .hero-split, .hero-tint { padding-bottom: 38px; }
  .page-hero h1, .hs-grid h1, .ht-grid h1, .hero-photostrip h1 {
    font-size: clamp(42px, 12vw, 56px);
    margin-bottom: 18px;
  }
  .page-hero p, .hs-grid .hs-copy > p, .ht-grid .ht-copy > p, .hero-photostrip p {
    font-size: 16px;
  }
}

/* Final mobile QA overrides: keep hero text/media inside the viewport. */
@media (max-width: 620px) {
  .hero-split,
  .hero-tint,
  .hero-photostrip {
    text-align: left;
  }
  .hero-split > .wrap,
  .hero-tint > .wrap,
  .hero-photostrip > .wrap {
    width: 100vw;
    max-width: 100vw;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: 0;
    margin-right: 0;
  }
  .page-hero h1,
  .hs-grid h1,
  .ht-grid h1,
  .hero-photostrip h1 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.05;
    max-width: 100%;
  }
  .hs-grid,
  .ht-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: min(342px, calc(100vw - 48px));
    max-width: min(342px, calc(100vw - 48px));
    align-items: stretch;
    margin-left: 0;
    margin-right: auto;
    overflow: hidden;
  }
  .hs-copy,
  .ht-copy {
    order: -1;
    width: min(342px, calc(100vw - 48px));
    max-width: min(342px, calc(100vw - 48px));
    min-width: 0;
  }
  .hs-visual,
  .ht-visual {
    order: 0;
    width: min(342px, calc(100vw - 48px));
    max-width: min(342px, calc(100vw - 48px));
    min-width: 0;
    padding: 12px;
    overflow: hidden;
  }
  .flowrow {
    grid-template-columns: 32px minmax(0, 1fr);
  }
  .flowrow .famt {
    grid-column: 2;
    margin-left: 0;
  }
  .tier-glance .tg-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px 14px;
  }
  .tier-glance .tg-price {
    font-size: 17px;
  }
  .engine-map {
    padding: 16px;
  }
  .em-head {
    display: block;
  }
  .em-head b {
    display: block;
    margin-top: 8px;
    text-align: left;
    font-size: 24px;
  }
  .em-flow {
    grid-template-columns: 1fr;
  }
  .membership-preview {
    padding: 14px;
  }
  .mp-top {
    display: block;
  }
  .mp-top b {
    max-width: 100%;
    font-size: 24px;
  }
  .mp-status {
    margin-top: 12px;
  }
  .mp-job {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 15px;
  }
  .mp-job h3 {
    font-size: 22px;
  }
  .mp-job-meta {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
  }
  .mp-support,
  .mp-lanes {
    grid-template-columns: 1fr;
  }
  .mp-lanes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .mp-lanes div {
    display: block;
    padding: 10px 8px;
  }
  .mp-lanes span {
    width: 23px;
    height: 23px;
    margin-bottom: 8px;
  }
  .mp-lanes b {
    margin-bottom: 2px;
    font-size: 12.5px;
  }
  .mp-lanes small {
    font-size: 11px;
  }
  .hero-photostrip {
    text-align: left;
  }
  .hero-photostrip h1,
  .hero-photostrip p {
    width: min(342px, calc(100vw - 48px));
    max-width: min(342px, calc(100vw - 48px));
    margin-left: 0;
    margin-right: 0;
  }
  .hero-photostrip p { font-size: 15.5px; }
  .hi-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hi-strip .hicell {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }
  .hi-strip .hicell:nth-child(3) {
    display: block;
  }
  .sticky-cta {
    padding-left: 12px;
    padding-right: 12px;
  }
  .sticky-cta .in {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }
  .sticky-cta .txt {
    min-width: 0;
    max-width: 100%;
    font-size: 12.5px;
  }
  .sticky-cta .btn {
    display: none;
  }
}

/* Universal nav sizing: keep header height consistent across pages. */
header .wrap.nav {
  height: 62px;
  min-height: 62px;
  flex-wrap: nowrap;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
header .nav-links {
  display: flex;
  order: 0;
  width: auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 0;
  padding-bottom: 0;
  white-space: nowrap;
  scrollbar-width: none;
}
header .nav-links::-webkit-scrollbar { display: none; }
header .nav-links a { white-space: nowrap; }
header .nav-cta {
  gap: 10px;
}
header .nav-cta .btn {
  min-height: 0;
  font-size: 13px;
  line-height: 1.2;
  border-radius: 7px;
  box-shadow: none;
}
header .nav-cta .btn-ghost {
  padding: 10px 16px;
  background: transparent;
  border-color: transparent;
  color: rgba(255,255,255,0.72);
}
header .nav-cta .btn-ghost:hover {
  background: transparent;
  border-color: transparent;
  color: #ffffff;
}
header .nav-cta .btn-primary {
  padding: 11px 18px;
  background: #ffffff;
  color: var(--ink);
}
header .nav-cta .btn-primary:hover {
  background: var(--tint);
  color: var(--ink);
  transform: none;
}
@media (max-width: 760px) {
  header .nav-cta { display: none; }
  header .nav-links { gap: 18px; font-size: 12px; }
}
@media (max-width: 520px) {
  header .logo span { display: none; }
}

/* Opt-in motion system for marketing pages. The Our Work page does not use motion-ui. */
@keyframes tbRiseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tbGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,111,74,0.16); }
  50% { box-shadow: 0 0 0 7px rgba(31,111,74,0); }
}
body.motion-ui section {
  overflow: hidden;
}
body.motion-ui .soft-bg {
  background:
    radial-gradient(ellipse 58% 70% at 50% 0%, rgba(44,90,64,0.055), transparent 72%),
    linear-gradient(180deg, var(--soft) 0%, #ffffff 100%);
}
body.motion-ui .hero-split,
body.motion-ui .hero-tint,
body.motion-ui .page-hero,
body.motion-ui .policy-hero {
  background:
    radial-gradient(ellipse 52% 62% at 50% 0%, rgba(44,90,64,0.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 68%, var(--soft) 100%);
}
body.motion-ui .hs-copy,
body.motion-ui .hs-visual,
body.motion-ui .ht-copy,
body.motion-ui .ht-visual,
body.motion-ui .page-hero .wrap,
body.motion-ui .policy-hero .wrap,
body.motion-ui .section-head,
body.motion-ui .prop,
body.motion-ui .step,
body.motion-ui .g-card,
body.motion-ui .tier,
body.motion-ui .proof-card,
body.motion-ui .faq,
body.motion-ui .form-card,
body.motion-ui .trustbar,
body.motion-ui .ho-b,
body.motion-ui .assurance-panel,
body.motion-ui .trade-cat,
body.motion-ui .brand-card,
body.motion-ui .feat-item,
body.motion-ui .standard-card,
body.motion-ui .tl-item,
body.motion-ui .flowcard,
body.motion-ui .casestudy,
body.motion-ui .policy-wrap,
body.motion-ui .cta-band .inner {
  animation: tbRiseIn .58s ease both;
}
body.motion-ui .hs-visual,
body.motion-ui .ht-visual,
body.motion-ui .step:nth-child(2),
body.motion-ui .g-card:nth-child(2),
body.motion-ui .tier:nth-child(2),
body.motion-ui .proof-card:nth-child(2),
body.motion-ui .ho-b:nth-child(2),
body.motion-ui .trade-cat:nth-child(2),
body.motion-ui .brand-card:nth-child(2),
body.motion-ui .feat-item:nth-child(2),
body.motion-ui .standard-card:nth-child(2),
body.motion-ui .tl-item:nth-child(2) {
  animation-delay: .07s;
}
body.motion-ui .step:nth-child(3),
body.motion-ui .g-card:nth-child(3),
body.motion-ui .tier:nth-child(3),
body.motion-ui .proof-card:nth-child(3),
body.motion-ui .ho-b:nth-child(3),
body.motion-ui .trade-cat:nth-child(3),
body.motion-ui .brand-card:nth-child(3),
body.motion-ui .feat-item:nth-child(3),
body.motion-ui .standard-card:nth-child(3),
body.motion-ui .tl-item:nth-child(3) {
  animation-delay: .14s;
}
body.motion-ui .step:nth-child(4),
body.motion-ui .tier:nth-child(4),
body.motion-ui .ho-b:nth-child(4),
body.motion-ui .trade-cat:nth-child(4),
body.motion-ui .brand-card:nth-child(4),
body.motion-ui .tl-item:nth-child(4) {
  animation-delay: .21s;
}
body.motion-ui .nav-links a {
  position: relative;
}
body.motion-ui .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--tint);
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .18s ease, transform .18s ease;
}
body.motion-ui .nav-links a:hover::after,
body.motion-ui .nav-links a.active::after {
  opacity: .7;
  transform: scaleX(1);
}
body.motion-ui .btn:active {
  transform: translateY(0);
}
body.motion-ui .prop,
body.motion-ui .step,
body.motion-ui .g-card,
body.motion-ui .tier,
body.motion-ui .proof-card,
body.motion-ui .form-card,
body.motion-ui .ho-b,
body.motion-ui .assurance-panel,
body.motion-ui .brand-card,
body.motion-ui .feat-item,
body.motion-ui .standard-card,
body.motion-ui .flowcard,
body.motion-ui .casestudy,
body.motion-ui .policy-wrap {
  transition: transform .22s ease, border-color .22s ease, box-shadow .26s ease, background .22s ease;
}
body.motion-ui .prop:hover,
body.motion-ui .step:hover,
body.motion-ui .g-card:hover,
body.motion-ui .tier:hover,
body.motion-ui .proof-card:hover,
body.motion-ui .form-card:hover,
body.motion-ui .ho-b:hover,
body.motion-ui .assurance-panel:hover,
body.motion-ui .brand-card:hover,
body.motion-ui .feat-item:hover,
body.motion-ui .standard-card:hover,
body.motion-ui .flowcard:hover,
body.motion-ui .casestudy:hover,
body.motion-ui .policy-wrap:hover {
  transform: translateY(-5px);
  border-color: rgba(44,90,64,0.28);
  box-shadow: 0 24px 56px -36px rgba(26,24,21,0.46);
}
body.motion-ui .g-card:hover .ic-tile,
body.motion-ui .ho-b:hover .ic-tile,
body.motion-ui .feat-item:hover .ic-tile {
  animation: tbGlowPulse 1.15s ease;
}
body.motion-ui .faq:hover {
  border-color: rgba(44,90,64,0.28);
  box-shadow: 0 18px 44px -36px rgba(26,24,21,0.38);
}
body.motion-ui .faq[open] {
  border-color: rgba(44,90,64,0.34);
  box-shadow: 0 20px 48px -38px rgba(26,24,21,0.42);
}
body.motion-ui .field input:focus,
body.motion-ui .field select:focus,
body.motion-ui .finder-form input:focus,
body.motion-ui .finder-form select:focus {
  transform: translateY(-1px);
}
body.motion-ui .brand-photo img,
body.motion-ui .brand-cover,
body.motion-ui .hi-strip img,
body.motion-ui .cs-img img,
body.motion-ui .job-photo img {
  transition: transform .55s ease, filter .28s ease;
}
body.motion-ui .brand-card:hover .brand-photo img,
body.motion-ui .brand-card:hover .brand-cover,
body.motion-ui .hicell:hover img,
body.motion-ui .casestudy:hover .cs-img img,
body.motion-ui .job-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}
body.motion-ui .chip,
body.motion-ui .trade-tags span,
body.motion-ui .brand-card .btn {
  transition: transform .16s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .2s ease;
}
body.motion-ui .chip:hover,
body.motion-ui .trade-tags span:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -20px rgba(26,24,21,0.42);
}
body.motion-ui .cta-band {
  background:
    radial-gradient(ellipse 50% 82% at 50% 0%, rgba(44,90,64,0.24), transparent 72%),
    linear-gradient(180deg, #1a1815 0%, #11100e 100%);
}
@media (prefers-reduced-motion: reduce) {
  body.motion-ui *,
  body.motion-ui *::before,
  body.motion-ui *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  body.motion-ui .prop:hover,
  body.motion-ui .step:hover,
  body.motion-ui .g-card:hover,
  body.motion-ui .tier:hover,
  body.motion-ui .proof-card:hover,
  body.motion-ui .form-card:hover,
  body.motion-ui .ho-b:hover,
  body.motion-ui .assurance-panel:hover,
  body.motion-ui .brand-card:hover,
  body.motion-ui .feat-item:hover,
  body.motion-ui .standard-card:hover,
  body.motion-ui .flowcard:hover,
  body.motion-ui .casestudy:hover,
  body.motion-ui .policy-wrap:hover,
  body.motion-ui .chip:hover,
  body.motion-ui .trade-tags span:hover,
  body.motion-ui .brand-card:hover .brand-photo img,
  body.motion-ui .brand-card:hover .brand-cover,
  body.motion-ui .hicell:hover img,
  body.motion-ui .casestudy:hover .cs-img img,
  body.motion-ui .job-photo:hover img {
    transform: none;
  }
}

/* OAuth sign-in screen */
.oauth-body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 48% 60% at 72% 12%, rgba(159,215,154,0.18), transparent 72%),
    radial-gradient(ellipse 44% 56% at 20% 0%, rgba(44,90,64,0.12), transparent 70%),
    linear-gradient(135deg, #ffffff 0%, var(--soft) 46%, #11100e 46%, #11100e 100%);
}
.oauth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  align-items: stretch;
}
.oauth-panel {
  width: min(560px, calc(100vw - 48px));
  align-self: center;
  justify-self: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(225,220,210,0.9);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 30px 80px -48px rgba(26,24,21,0.44);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  animation: tbRiseIn .58s ease both;
}
.oauth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 42px;
}
.oauth-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.oauth-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.oauth-copy p {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.oauth-actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.oauth-provider {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--brd-2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 12px 14px;
  font-weight: 750;
  transition: transform .18s ease, border-color .2s ease, box-shadow .24s ease, background .2s ease;
}
.oauth-provider:hover {
  transform: translateY(-2px);
  border-color: rgba(44,90,64,0.32);
  box-shadow: 0 18px 42px -34px rgba(26,24,21,0.5);
}
.oauth-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
}
.oauth-icon.apple { background: #000; }
.oauth-icon.ms { background: var(--green); }
.oauth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.oauth-divider::before,
.oauth-divider::after {
  content: "";
  height: 1px;
  background: var(--brd);
}
.oauth-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.oauth-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.oauth-email-row input {
  min-width: 0;
  border: 1px solid var(--brd-2);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
  transition: transform .16s ease, border-color .18s ease, box-shadow .18s ease;
}
.oauth-email-row input:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-chip);
}
.oauth-email-row button {
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--cream);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, background .18s ease;
}
.oauth-email-row button:hover {
  transform: translateY(-1px);
  background: #000;
}
.oauth-demo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--brd);
}
.oauth-demo-links a {
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}
.oauth-terms {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}
.oauth-terms a {
  color: var(--ink);
  font-weight: 750;
}
.oauth-context {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 72px);
  color: var(--cream);
}
.oauth-context-card {
  width: min(480px, 100%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(241,239,234,0.16);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 34px 78px -44px rgba(0,0,0,0.8);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  animation: tbRiseIn .58s ease .08s both;
}
.oauth-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.oauth-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-l);
  box-shadow: 0 0 0 5px rgba(159,215,154,0.18);
}
.oauth-context h2 {
  margin: 18px 0 24px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.oauth-lanes {
  display: grid;
  gap: 14px;
}
.oauth-lanes div {
  border-top: 1px solid rgba(241,239,234,0.16);
  padding-top: 14px;
}
.oauth-lanes b {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}
.oauth-lanes span {
  display: block;
  color: rgba(241,239,234,0.64);
  font-size: 13.5px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .oauth-body {
    background:
      radial-gradient(ellipse 52% 54% at 50% 0%, rgba(44,90,64,0.12), transparent 70%),
      linear-gradient(180deg, #ffffff 0%, var(--soft) 55%, #11100e 55%, #11100e 100%);
  }
  .oauth-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 46px;
  }
  .oauth-context {
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .oauth-panel {
    width: calc(100vw - 32px);
  }
  .oauth-email-row {
    grid-template-columns: 1fr;
  }
  .oauth-email-row button {
    min-height: 48px;
  }
}
