/* ============================================================
   AgentGo — agentgo.ca
   Premium, plain-spoken. One accent colour. Mobile-first.
   ============================================================ */

:root {
  --ink:       #0c1714;
  --ink-2:     #44524d;
  --ink-3:     #6b7a74;
  --line:      #e6ebe8;
  --bg:        #ffffff;
  --bg-soft:   #f5f8f6;
  --bg-mint:   #eef6f1;

  --accent:    #0e8a5a;
  --accent-d:  #0a6f55;
  --accent-l:  #13a06a;
  --accent-bg: #e7f4ed;
  --gold:      #b07d1e;
  --gold-bg:   #fbf3df;
  --blue:      #2f6df0;
  --amber:     #e0871f;

  --shadow-sm: 0 1px 3px rgba(12,23,20,.06), 0 1px 2px rgba(12,23,20,.04);
  --shadow-md: 0 10px 30px rgba(12,23,20,.08), 0 2px 8px rgba(12,23,20,.05);
  --shadow-lg: 0 30px 70px rgba(10,111,85,.16), 0 8px 24px rgba(12,23,20,.08);

  --radius:    16px;
  --radius-lg: 22px;
  --maxw:      1140px;

  --font:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Sora", var(--font);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 1000;
}
.skip-link:focus { left: 0; }

.accent-text { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 28px; font-size: 16.5px; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(14,138,90,.28); }
.btn-primary:hover { background: var(--accent-d); box-shadow: 0 12px 26px rgba(14,138,90,.34); transform: translateY(-1px); }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { color: var(--accent); }

.btn-light { background: #fff; color: var(--accent-d); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(0,0,0,.24); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 18px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--ink); }
.brand-name--light { color: #fff; }
.brand-go { color: var(--accent); }
.brand-name--light .brand-go { color: var(--accent-l); }
.tm { font-size: .42em; font-weight: 700; vertical-align: super; margin-left: 1px; color: var(--ink-3); letter-spacing: 0; }
.brand-name--light .tm { color: rgba(255,255,255,.55); }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s ease; }
.nav-links a:hover { color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; gap: 6px; padding: 12px 22px 22px; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 6px; font-weight: 600; color: var(--ink); border-radius: 10px; }
.mobile-menu a.btn { justify-content: center; margin-top: 4px; }
.mobile-menu a:not(.btn):hover { background: var(--bg-soft); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 72px;
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--bg-mint), transparent 60%),
    linear-gradient(180deg, #fff, var(--bg-soft)); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent-d); background: var(--accent-bg);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-l); box-shadow: 0 0 0 0 rgba(19,160,106,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(19,160,106,.5)} 70%{box-shadow:0 0 0 9px rgba(19,160,106,0)} 100%{box-shadow:0 0 0 0 rgba(19,160,106,0)} }

.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 800; margin-bottom: 20px; }
.lede { font-size: 19px; color: var(--ink-2); max-width: 36ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-note { font-size: 13.5px; color: var(--ink-3); font-weight: 500; }

/* hero visual / device */
.hero-visual { position: relative; }
.hero-glow { position: absolute; inset: -8% -6% -10% -6%; z-index: 0;
  background: radial-gradient(60% 60% at 60% 40%, rgba(19,160,106,.22), transparent 70%); filter: blur(8px); }
.device-frame { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.device-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.device-bar span { width: 10px; height: 10px; border-radius: 50%; background: #d8e0db; }
.device-bar span:nth-child(1){background:#f0b6ad}.device-bar span:nth-child(2){background:#f3d79b}.device-bar span:nth-child(3){background:#a8dcc0}
.device-bar i { margin-left: auto; font-style: normal; font-size: 12px; color: var(--ink-3); }
.device-screen { padding: 18px; background: linear-gradient(180deg, #fff, #fbfdfc); }

.dash-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.dash-hello strong { display: block; font-size: 16px; }
.dash-hello span { font-size: 12.5px; color: var(--ink-3); }
.dash-bell { position: relative; color: var(--ink-2); }
.bell-badge { position: absolute; top: -6px; right: -7px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; }

.opp-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 10px; }

.opp-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 13px; margin-bottom: 10px; }
.opp-card--hero { border-color: rgba(14,138,90,.4); box-shadow: 0 10px 24px rgba(14,138,90,.14); background: linear-gradient(180deg,#fff,#f6fcf9); }
.opp-card--mini { padding: 10px 12px; }
.opp-avatar { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; background: var(--accent); color: #fff; font-weight: 700; font-size: 13px; display: grid; place-items: center; }
.opp-avatar--blue { background: var(--blue); } .opp-avatar--amber { background: var(--amber); }
.opp-body { flex: 1 1 auto; min-width: 0; }
.opp-body strong { display: block; font-size: 13.5px; line-height: 1.3; }
.opp-meta { display: block; font-size: 12px; color: var(--ink-2); }
.opp-meta b { color: var(--ink); }
.opp-sub { display: block; font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }
.opp-up { color: var(--accent); font-weight: 700; }
.opp-send { flex: 0 0 auto; background: var(--accent); color: #fff; border: 0; font-weight: 700; font-size: 12.5px; padding: 9px 14px; border-radius: 10px; cursor: pointer; box-shadow: 0 6px 14px rgba(14,138,90,.3); }
.opp-send--lg { padding: 10px 14px; font-size: 12px; max-width: 120px; line-height: 1.2; }
.opp-chip { flex: 0 0 auto; font-size: 12px; font-weight: 600; color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.opp-chip--green { color: var(--accent-d); background: var(--accent-bg); border-color: transparent; }

/* ---------- generic section heads ---------- */
.section, .band, .trust { padding: 84px 0; }
.section-head { max-width: 760px; margin: 0 0 44px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 14px; }
.kicker--light { color: var(--accent-l); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.section-body { font-size: 18px; color: var(--ink-2); }
.section-body--light { color: #b9cabf; }

/* ---------- why band ---------- */
.band--why { background: var(--bg-soft); }

/* TRREB / PropTX advantage callout */
.trreb { display: flex; gap: 22px; align-items: center; margin-top: 34px; padding: 26px 30px; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--accent-d), var(--accent)); color: #fff; box-shadow: var(--shadow-md); }
.trreb-badge { flex: 0 0 auto; align-self: flex-start; font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .06em; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); padding: 8px 14px; border-radius: 999px; white-space: nowrap; }
.trreb-copy h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 800; margin-bottom: 8px; color: #fff; }
.trreb-copy p { font-size: 15.5px; color: rgba(255,255,255,.92); line-height: 1.55; }
.trreb-copy em { font-style: italic; }
.flow { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 0 0 44px; }
.flow-step { display: flex; flex-direction: column; align-items: center; gap: 2px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 22px; box-shadow: var(--shadow-sm); min-width: 150px; }
.flow-step b { font-size: 14.5px; } .flow-step i { font-style: normal; font-size: 12px; color: var(--ink-3); }
.flow-icon { font-size: 18px; line-height: 1; margin-bottom: 4px; }
.flow-icon--data { color: var(--blue); } .flow-icon--opp { color: var(--gold); } .flow-icon--send { color: var(--accent); }
.flow-arrow { color: var(--ink-3); font-size: 22px; font-weight: 700; }

.pills { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pill-ico { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-bg); color: var(--accent-d); margin-bottom: 16px; }
.pill h3 { font-size: 17.5px; margin-bottom: 7px; }
.pill p { font-size: 15px; color: var(--ink-2); }

/* ---------- features (agents) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 40px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature--reverse .feature-copy { order: 2; }
.feature-tag { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .03em; color: var(--accent-d); background: var(--accent-bg); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.feature-tag--gold { color: var(--gold); background: var(--gold-bg); }
.feature-copy h3 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); font-weight: 700; margin-bottom: 14px; }
.feature-copy p { font-size: 17px; color: var(--ink-2); }

.feature--spotlight { background: linear-gradient(180deg,#fff,var(--bg-mint)); border-radius: var(--radius-lg); padding: 40px; margin: 8px 0; border-top: 0 !important; box-shadow: var(--shadow-sm); }

/* design studio / website */
.section--studio { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.feature--studio { border-top: 0; padding-top: 8px; }
.studio-list { list-style: none; display: grid; gap: 20px; margin-top: 4px; }
.studio-list li { display: flex; gap: 14px; align-items: flex-start; }
.studio-ico { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: var(--accent-bg); color: var(--accent-d); }
.studio-list strong { display: block; font-size: 16.5px; margin-bottom: 3px; color: var(--ink); }
.studio-list span { display: block; font-size: 15px; color: var(--ink-2); line-height: 1.5; }

.art-site { padding: 0; overflow: hidden; }
.site-hero { background: linear-gradient(135deg, var(--accent-d), var(--accent)); color: #fff; padding: 22px 20px; }
.site-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 17px; }
.site-brand em { font-style: normal; font-weight: 500; opacity: .8; font-size: 14px; }
.site-logo { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.18); font-size: 13px; font-weight: 800; }
.site-tagline { margin-top: 10px; font-size: 13px; opacity: .9; }
.site-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 18px; }
.site-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.site-photo { display: block; height: 60px; background: linear-gradient(135deg,#cfe7da,#a9d6c0); }
.site-photo--2 { background: linear-gradient(135deg,#d7e3f7,#aec6ee); }
.site-photo--3 { background: linear-gradient(135deg,#f2e6cf,#e6cfa0); }
.site-card b { display: block; font-size: 14px; padding: 8px 10px 2px; }
.site-card i { display: block; font-style: normal; font-size: 11.5px; color: var(--ink-3); padding: 0 10px 10px; }
.site-foot { display: flex; gap: 8px; padding: 0 18px 18px; flex-wrap: wrap; }
.site-pill { font-size: 12px; font-weight: 600; color: var(--accent-d); background: var(--accent-bg); padding: 5px 11px; border-radius: 999px; }

/* art cards */
.art-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-md); }
.opp-card--inset { margin-bottom: 10px; }
.art-spotlight { box-shadow: var(--shadow-lg); border-color: rgba(14,138,90,.25); }

/* speed-to-lead art */
.art-speed { position: relative; }
.email-pop { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.email-top { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-bottom: 7px; }
.email-from { font-weight: 600; color: var(--ink-2); }
.email-sub { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.email-line { height: 8px; border-radius: 6px; background: #e3eae6; margin-bottom: 7px; }
.email-line.short { width: 60%; }
.email-badge { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--accent-d); background: var(--accent-bg); padding: 5px 10px; border-radius: 999px; margin-top: 4px; }
.board-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.board-col { background: var(--bg-soft); border-radius: 10px; padding: 9px; }
.board-h { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); display: block; margin-bottom: 8px; }
.board-task { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 9px; }
.board-task--hot { border-color: rgba(14,138,90,.45); box-shadow: 0 4px 10px rgba(14,138,90,.12); }
.board-task b { display: block; font-size: 12px; } .board-task i { font-style: normal; font-size: 10.5px; color: var(--accent-d); }
.board-card-ghost { height: 34px; background: #fff; border: 1px dashed var(--line); border-radius: 8px; }

/* contact art */
.contact-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.contact-head strong { display: block; font-size: 14px; }
.contact-sub { font-size: 12px; color: var(--ink-3); }
.consent-chip { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--accent-d); background: var(--accent-bg); padding: 5px 10px; border-radius: 999px; }
.alert-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-2); background: var(--bg-soft); border-radius: 10px; padding: 11px 12px; margin-bottom: 12px; }
.cadence { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.cadence--on { color: #fff; background: var(--accent); }
.email-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.thumb-row { display: flex; gap: 8px; margin: 10px 0; }
.thumb { flex: 1; height: 44px; border-radius: 8px; background: linear-gradient(135deg,#d4e6dc,#bcd9c9); }

/* digest art */
.bell-panel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 8px; margin-bottom: 14px; }
.bell-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 10px; font-weight: 700; font-size: 13px; border-bottom: 1px solid var(--line); }
.bell-badge--static { position: static; }
.bell-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-2); padding: 10px 8px; }
.bell-item + .bell-item { border-top: 1px solid var(--line); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.dot--green{background:var(--accent)}.dot--amber{background:var(--amber)}.dot--blue{background:var(--blue)}
.digest-card { background: linear-gradient(135deg,var(--accent),var(--accent-d)); color: #fff; border-radius: 12px; padding: 16px; }
.digest-tag { display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: rgba(255,255,255,.2); padding: 4px 9px; border-radius: 999px; margin-bottom: 9px; }
.digest-card strong { display: block; font-size: 15px; }
.digest-sub { font-size: 12.5px; opacity: .85; }

.agents-footnote { margin-top: 36px; padding: 22px 24px; background: var(--bg-soft); border-radius: var(--radius); font-size: 15.5px; color: var(--ink-2); border: 1px solid var(--line); }

/* ---------- brokerages ---------- */
.band--brokerages { background: linear-gradient(165deg, #0c2a22, #0c1714); color: #eef4f1; }
.band--brokerages .section-head h2 { color: #fff; }
.bk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.bk-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(4px); }
.bk-card .feature-tag { background: rgba(19,160,106,.2); color: #5fd6a3; }
.bk-card h3 { font-size: 20px; color: #fff; margin-bottom: 12px; }
.bk-card p { font-size: 15px; color: #b9cabf; }

.bk-more { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 22px; }
.bk-item { padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-left: 3px solid var(--accent-l); }
.bk-item h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.bk-item p { font-size: 14px; color: #b9cabf; line-height: 1.5; }
.bk-art { margin-top: 20px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 14px; }

.heatmap { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 12px; }
.hx { aspect-ratio: 1.4; border-radius: 6px; background: rgba(255,255,255,.07); }
.hx--warm { background: rgba(19,160,106,.4); }
.hx--hot { background: rgba(19,160,106,.85); }
.hx--opp { background: rgba(224,135,31,.55); box-shadow: inset 0 0 0 1.5px rgba(245,180,90,.9); }
.opp-areas { display: flex; flex-direction: column; gap: 8px; }
.opp-area { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,.05); border-radius: 9px; padding: 9px 12px; font-size: 13px; }
.opp-area b { color: #fff; } .opp-area span { color: #b9cabf; } .opp-area i { font-style: normal; color: #f2b366; font-weight: 700; }

.bk-art-dir .dir-head { height: 26px; border-radius: 7px; background: rgba(19,160,106,.35); margin-bottom: 10px; }
.dir-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.dir-agent { aspect-ratio: 1; border-radius: 10px; background: rgba(255,255,255,.1); }
.dir-gov { font-size: 12.5px; color: #b9cabf; display: flex; align-items: center; gap: 7px; }
.lock { color: #5fd6a3; }

.recruit-board { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.recruit-col { background: rgba(255,255,255,.05); border-radius: 9px; padding: 8px; }
.recruit-col i { font-style: normal; display: block; font-size: 10.5px; color: #9fb3a8; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .04em; }
.recruit-col span { display: block; height: 18px; border-radius: 5px; background: rgba(255,255,255,.1); margin-bottom: 6px; }
.recruit-col span.filled { background: rgba(19,160,106,.6); }
.seat-bill { display: flex; justify-content: space-between; font-size: 13px; }
.seat-bill b { color: #fff; } .seat-bill span { color: #b9cabf; }

/* ---------- trust ---------- */
.trust { background: var(--bg-mint); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.trust-item { text-align: center; padding: 8px; }
.trust-ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: #fff; color: var(--accent-d); box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.trust-item h3 { font-size: 16.5px; margin-bottom: 7px; }
.trust-item p { font-size: 14px; color: var(--ink-2); }

/* ---------- closing cta ---------- */
.cta { padding: 92px 0; background:
  radial-gradient(800px 400px at 50% -20%, var(--accent-l), transparent 60%),
  linear-gradient(135deg, var(--accent), var(--accent-d)); color: #fff; text-align: center; }
.cta-inner { max-width: 720px; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.cta p { font-size: 19px; color: rgba(255,255,255,.9); margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: #0c1714; color: #b9cabf; padding: 56px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-tag { font-size: 14px; color: #8da89b; margin-top: 12px; max-width: 38ch; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-size: 14.5px; color: #c7d6ce; transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 22px; font-size: 13px; color: #7e988b; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .pulse-dot { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lede { max-width: 52ch; }
  .pills { grid-template-columns: 1fr; }
  .bk-grid { grid-template-columns: 1fr; }
  .bk-more { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 30px 18px; }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 28px; }
  .feature--reverse .feature-copy { order: 0; }
  .feature--spotlight { padding: 28px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open { box-shadow: var(--shadow-md); border-color: var(--line); }
  .section, .band, .trust { padding: 60px 0; }
  .hero { padding: 44px 0 56px; }
  .flow-arrow { transform: rotate(90deg); }
  .flow { gap: 4px; }
  .bk-more { grid-template-columns: 1fr; }
  .trreb { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cta { padding: 70px 0; }
  body { font-size: 16px; }
  .lede { font-size: 17.5px; }
}

@media (max-width: 460px) {
  .trust-grid { grid-template-columns: 1fr; }
  .opp-send--lg { max-width: 96px; font-size: 11px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; }
  .footer-inner { flex-direction: column; }
}
