/* ============================================================
   NOVA Digital — subpage components + animation system
   (loads after styles.css; uses its :root tokens)
   ============================================================ */

/* ---------- animation utilities ---------- */
.reveal[data-anim="left"]  { transform: translateX(-44px); }
.reveal[data-anim="right"] { transform: translateX(44px); }
.reveal[data-anim="zoom"]  { transform: scale(.86); }
.reveal.in[data-anim] { transform: none; }

/* rotating headline word */
.rotator { display: inline-grid; text-align: left; vertical-align: bottom; }
.rotator b { grid-area: 1 / 1; opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; white-space: nowrap; font-weight: inherit; }
.rotator b.on { opacity: 1; transform: none; }

/* scribble underline that draws itself */
.scribble { position: relative; display: inline-block; }
.scribble svg { position: absolute; left: 0; bottom: -.18em; width: 100%; height: .34em; overflow: visible; }
.scribble path { stroke: var(--coral); stroke-width: 7; fill: none; stroke-linecap: round; }
.scribble.draw path { transition: stroke-dashoffset 1.1s ease .35s; stroke-dashoffset: 0 !important; }

/* marker-highlight slab behind a word */
.hl-slab { position: relative; z-index: 0; display: inline-block; padding: 0 .18em; }
.hl-slab::before {
  content: ''; position: absolute; z-index: -1; left: 0; right: 0; top: 52%; bottom: -2%;
  background: var(--coral);
  transform: scaleX(0); transform-origin: left center; transition: transform .7s ease var(--d, 0s);
}
.in .hl-slab::before, .hl-slab.in::before { transform: scaleX(1); }

/* 3D flip card */
.flip { perspective: 1300px; }
.flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .7s cubic-bezier(.2, .7, .3, 1); }
.flip:hover .flip-inner, .flip.tapped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.flip-front { position: relative; }
.flip-back { position: absolute; inset: 0; transform: rotateY(180deg); }

/* pulsing video play button */
.play-btn {
  width: 86px; height: 86px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .18); border: 2px solid #fff;
  display: grid; place-items: center; position: relative;
}
.play-btn::before { content: ''; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.play-btn::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .7); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }

/* ---------- nav dropdowns + solid variant ---------- */
.has-menu { position: relative; }
.has-menu > a { display: inline-block; padding-bottom: 14px; margin-bottom: -14px; }
.menu {
  position: absolute; top: calc(100% + 2px); left: -18px; min-width: 230px; z-index: 120;
  background: #fff; color: var(--ink); border-radius: 12px; padding: 10px 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: none; }
.menu a { display: block; padding: 10px 22px; font: 600 12px var(--sans); letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: #2c2f2d; }
.menu a:hover { color: var(--coral); background: #F6F6F4; }
.nav--solid { background: #fff; color: var(--ink); box-shadow: 0 2px 24px rgba(0, 0, 0, .09); }

/* ---------- inner-page hero ---------- */
.page-hero { padding: 170px 24px 64px; background: #fff; }
.page-hero > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.two-tone .ol { color: transparent; -webkit-text-stroke: 2.5px #101210; }
.page-hero .sub { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.55rem); margin-top: 14px; }
.page-hero .bar { margin-top: 24px; }

/* full-bleed "photo" bands (placeholder gradients until real photography) */
.photo-band { height: 400px; position: relative; display: grid; place-items: center; overflow: hidden; }
.photo-band span { font: 600 12px var(--sans); letter-spacing: .5em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.pb-1 { background: linear-gradient(120deg, #3A3F44 0%, #23272B 45%, #101214 100%); }
.pb-2 { background: linear-gradient(120deg, #2E3833 0%, #1B211E 55%, #0F1311 100%); }
.pb-3 { background: linear-gradient(120deg, #40372F 0%, #241F1B 55%, #121110 100%); }
.duotone { position: relative; }
.duotone::after { content: ''; position: absolute; inset: 0; background: var(--green); mix-blend-mode: multiply; opacity: .75; }
.duotone > * { position: relative; z-index: 1; }

/* duotone photo collage wall */
.photo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.photo-wall div { aspect-ratio: 4 / 3; position: relative; }
.photo-wall div::after { content: ''; position: absolute; inset: 0; background: var(--green); mix-blend-mode: multiply; opacity: .8; }
.pw-a { background: linear-gradient(135deg, #7d8388, #3c4146); } .pw-b { background: linear-gradient(45deg, #9aa0a5, #565c61); }
.pw-c { background: linear-gradient(160deg, #6f757a, #2e3337); } .pw-d { background: linear-gradient(200deg, #8b9196, #484d52); }

/* ---------- inversion CTA band (their yellow + blue) ---------- */
.cta-band { background: var(--coral); text-align: center; padding: 110px 24px; position: relative; overflow: hidden; }
.cta-band .kicker { font: 700 clamp(1.8rem, 3vw, 2.6rem) var(--serif); color: var(--green-deep); }
.cta-band .k-rule { width: 44px; height: 4px; background: #fff; margin: 22px auto; }
.cta-band h2 { font: 400 clamp(1.6rem, 2.8vw, 2.3rem) var(--serif); color: var(--green-deep); max-width: 820px; margin: 0 auto 34px; line-height: 1.3; }
.cta-band .dots { position: absolute; right: 12%; top: 22%; width: 190px; opacity: .85; }

/* ---------- eyebrow kicker ---------- */
.kicker-caps { display: block; font: 700 12px var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }

/* ---------- case-study metric cards ---------- */
.m-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.m-card { background: #fff; box-shadow: var(--shadow-card); padding: 0 22px 30px; text-align: center; }
.m-head { height: 128px; margin: 0 -22px 22px; display: grid; place-items: center; color: #fff; font: 600 19px var(--serif); letter-spacing: .04em; }
.mh-a { background: linear-gradient(120deg, #0E6D6D, #063d3d); } .mh-b { background: linear-gradient(120deg, #16294A, #0B1526); }
.mh-c { background: linear-gradient(120deg, #A65340, #5e2d21); } .mh-d { background: linear-gradient(120deg, #4A4E9E, #23255c); }
.m-eyebrow { font: 700 10px var(--sans); letter-spacing: .22em; text-transform: uppercase; color: #8a8e8a; }
.m-stat { font: 600 clamp(2.2rem, 3vw, 2.8rem) var(--serif); margin: 8px 0 4px; }
.m-stat .sign { color: var(--coral); margin-right: 4px; }
.m-desc { font-size: 14px; color: var(--muted); min-height: 44px; }
.m-rule { width: 60px; height: 1px; background: #ddd; margin: 16px auto; }
.m-tags { font: 700 10px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 22px; }
.btn-outline { background: transparent; border: 1.5px solid var(--coral); color: var(--ink); }
.btn-outline:hover { background: var(--coral); }

/* ---------- bordered + expandable logo strips ---------- */
.logo-strip { border: 1px solid rgba(255, 255, 255, .3); display: flex; justify-content: space-around; align-items: center; padding: 30px 20px; flex-wrap: wrap; gap: 18px; }
.logo-strip .fake-logo { color: #7d817d; }

/* ---------- dark text-only quote cards ---------- */
.q-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.q-card { background: #161918; border-radius: 8px; padding: 46px 32px 40px; text-align: center; }
.q-card .qq { font: 700 70px var(--serif); color: var(--coral); line-height: .3; display: block; margin-bottom: 26px; }
.q-card p { color: rgba(255, 255, 255, .85); font-size: 15.5px; }
.q-card cite { display: block; margin-top: 18px; font: 700 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--coral); font-style: normal; }

/* ---------- founder pull-quote ---------- */
.founder-quote { text-align: center; }
.founder-quote .qq { font: 700 100px var(--serif); color: var(--coral); line-height: .2; display: block; margin-bottom: 40px; }
.founder-quote blockquote { font: 600 clamp(1.5rem, 3vw, 2.3rem) var(--serif); color: #fff; max-width: 900px; margin: 0 auto 30px; line-height: 1.35; }
.founder-quote cite { font: 700 12px var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--coral); font-style: normal; }

/* ---------- team members ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 64px; }
.member { text-align: center; height: 420px; }
.member .flip-inner { height: 100%; }
.member-photo {
  height: 300px; position: relative; display: grid; place-items: end center;
  -webkit-mask-image: linear-gradient(#000 72%, transparent 98%);
  mask-image: linear-gradient(#000 72%, transparent 98%);
}
.member-photo svg { width: 78%; }
.member h3 { font: 600 19px var(--serif); letter-spacing: .16em; text-transform: uppercase; margin-top: 18px; }
.member .role { font-size: 14px; color: var(--muted); margin-top: 4px; }
.member .m-arrow { display: inline-block; margin-top: 12px; color: var(--coral); font-size: 22px; transition: transform .25s; }
.member:hover .m-arrow { transform: translateX(8px); }
.member-back { background: var(--ink); color: #fff; border-radius: 14px; padding: 34px 28px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.member-back h3 { color: var(--coral); text-transform: none; letter-spacing: 0; }
.member-back p { font-size: 14.5px; color: rgba(255, 255, 255, .82); }
.member-back a { color: #fff; font: 700 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; }

/* photo hero with highlighter slabs */
.slab-hero { position: relative; min-height: 78vh; display: flex; align-items: center; padding: 160px 24px 90px; background: linear-gradient(115deg, #33383C 0%, #1D2124 50%, #0F1113 100%); overflow: hidden; }
.slab-hero .wrap { max-width: 1240px; margin: 0 auto; width: 100%; }
.slab-hero .hl-line { display: block; font: 600 clamp(2.6rem, 5.4vw, 4.4rem) var(--serif); color: #fff; line-height: 1.18; width: fit-content; }

/* ---------- giant-numeral value rows ---------- */
.num-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 72px 0; }
.num-row .giant { font: 600 clamp(7rem, 14vw, 12rem) var(--serif); color: var(--green); line-height: .8; }
.num-row.rev .n-visual { order: 2; }
.n-visual { display: flex; align-items: center; gap: 34px; }
.circle-vis { width: 250px; height: 250px; position: relative; flex: 0 0 auto; }
.circle-vis .blob { position: absolute; inset: 0; border-radius: 50%; background: var(--coral); }
.circle-vis .cv-icon { position: absolute; inset: 0; display: grid; place-items: center; }
.circle-vis .cv-icon svg { width: 54%; }
.dash-ring { position: absolute; inset: -22px; border: 2px dashed rgba(14, 159, 110, .55); border-radius: 50%; animation: spin 40s linear infinite; }

/* ---------- zig-zag numbered process (on green) ---------- */
.zig-row { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 66px 0; }
.zig-row.rev .zig-visual { order: 2; }
.zig-visual { display: grid; place-items: center; position: relative; }
.zig-circle { width: 290px; height: 290px; border: 2px dashed rgba(255, 255, 255, .55); border-radius: 50%; display: grid; place-items: center; position: relative; }
.zig-circle .zn { font: 600 150px var(--serif); color: var(--cream); line-height: 1; }
.zig-ghost { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font: 600 15px var(--serif); letter-spacing: .5em; text-transform: uppercase; color: rgba(255, 255, 255, .4); white-space: nowrap; }
.blob-card { background: #F3F4F2; color: var(--ink); border-radius: 56px 130px 56px 130px / 130px 56px 130px 56px; padding: 52px 56px; position: relative; }
.blob-card .step-eyebrow { font: 600 13px var(--serif); letter-spacing: .3em; text-transform: uppercase; color: var(--green-deep); display: block; margin-bottom: 10px; }
.blob-card h3 { font: 700 22px var(--sans); margin-bottom: 12px; }
.blob-card .read-more { font: 700 11px var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--ink); text-decoration: none; }
.blob-card .read-more span { color: var(--coral); }
.blob-chip { position: absolute; top: -34px; right: 36px; width: 84px; height: 84px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; box-shadow: 0 14px 30px rgba(0, 0, 0, .25); }
.blob-chip svg { width: 56%; }
.ribbon-tab { width: 46px; height: 92px; background: var(--coral); margin: -110px auto 40px; clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%); position: relative; z-index: 3; }

/* ---------- 01/02/03 trio (dark) ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; text-align: center; margin-top: 64px; }
.trio .tn { font: 600 54px var(--serif); color: var(--coral); }
.t-circle { width: 168px; height: 168px; margin: 18px auto; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .14); background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .07), transparent 70%); display: grid; place-items: center; }
.t-circle svg { width: 74px; height: 74px; fill: none; stroke: var(--coral); stroke-width: 1.5; stroke-linecap: round; }
.trio .vline { width: 1px; height: 38px; background: rgba(255, 255, 255, .3); margin: 0 auto 16px; }
.trio h3 { font: 700 19px var(--sans); color: #fff; }
.trio .t-rule { width: 34px; height: 3px; background: var(--coral); margin: 12px auto 14px; }
.trio p { font-size: 15px; color: rgba(255, 255, 255, .75); }

/* ---------- perks pictograms ---------- */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 60px; text-align: center; }
.perk .glyphs { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 20px; }
.perk .glyphs .up { color: var(--coral); font-size: 22px; font-weight: 700; }
.perk .glyphs .core { width: 64px; height: 64px; border-radius: 50%; background: var(--green-deep); display: grid; place-items: center; }
.perk .glyphs .core svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; }
.perk h3 { font: 600 22px var(--serif); margin-bottom: 8px; }
.perk p { font-size: 15px; color: var(--muted); }

/* ---------- rounded values panel (green) ---------- */
.values-panel { background: var(--green-deep); color: #fff; border-radius: 26px; padding: 64px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.vp-item { display: flex; gap: 20px; margin: 24px 0; }
.vp-icon { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; font-size: 22px; color: var(--ink); }
.vp-item h3 { font: 600 20px var(--serif); color: var(--cream); margin-bottom: 4px; }
.vp-item p { font-size: 15px; color: rgba(255, 255, 255, .85); }
.vp-visual { position: relative; display: grid; place-items: center; min-height: 320px; }
.vp-visual .blob { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(255, 255, 255, .1); }
.vp-visual .dash-ring { inset: auto; width: 320px; height: 320px; border-color: rgba(255, 255, 255, .4); }

/* ---------- job listing cards ---------- */
.job-card { background: #14171590; background: #141715; border: 1px solid #262B28; border-radius: 14px; padding: 38px 44px; margin: 18px auto; max-width: 980px; transition: border-color .25s, transform .25s; }
.job-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.job-card h3 { font: 600 24px var(--serif); color: var(--coral); }
.job-card .j-rule { width: 34px; height: 3px; background: var(--coral); margin: 12px 0 14px; }
.job-card p { color: rgba(255, 255, 255, .78); font-size: 15.5px; margin-bottom: 18px; }
.job-more { font: 700 11.5px var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--coral); text-decoration: none; }

/* ---------- blog ---------- */
.b-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 70px; }
.search-pill { flex: 0 1 320px; border: 1px solid #DBDDD8; border-radius: 999px; background: #F4F4F2; padding: 14px 24px; font: 600 11px var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.filter-row { display: flex; gap: 12px; align-items: center; overflow-x: auto; padding: 18px 0 6px; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-label { font: 700 10.5px var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); flex: 0 0 auto; }
.chip { flex: 0 0 auto; border: 1px solid #D8DAD5; border-radius: 999px; background: none; padding: 9px 18px; font: 600 11px var(--sans); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; color: var(--ink); }
.chip.active, .chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.b-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 34px; }
.b-card { background: #F4F4F2; position: relative; }
.b-thumb { height: 200px; display: grid; place-items: center; overflow: hidden; }
.bt-a { background: linear-gradient(135deg, var(--coral), #b23c12); } .bt-b { background: linear-gradient(135deg, var(--green), #06553a); }
.bt-c { background: linear-gradient(135deg, #17191C, #33383E); } .bt-d { background: linear-gradient(135deg, #DCEAE1, #a9c9b6); }
.b-thumb svg { width: 90px; height: 90px; fill: none; stroke: rgba(255, 255, 255, .9); stroke-width: 1.4; stroke-linecap: round; }
.bt-d svg { stroke: var(--ink); }
.date-badge { position: absolute; top: 140px; right: 20px; width: 116px; height: 116px; border-radius: 50%; background: #F4F4F2; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.db-day { font: 600 44px var(--serif); line-height: 1; }
.db-my { font: 700 9px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.b-body { padding: 26px 26px 30px; }
.b-meta { font-size: 13px; color: var(--muted); }
.b-title { font: 600 20px var(--serif); line-height: 1.35; margin: 10px 0 4px; }
.t-underline { box-shadow: inset 0 -3px 0 var(--coral); }
.b-body .excerpt { font-size: 14.5px; color: #4a4e4b; margin: 10px 0 16px; }
.b-more { font: 700 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink); text-decoration: none; }
.b-more span { color: var(--coral); }
.b-rule { height: 1px; background: #DFE1DC; margin: 18px 0 12px; }
.b-tags { font: 700 9.5px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #969A95; line-height: 2; }

/* newsletter card disguised as post card */
.newsletter-card { background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 40px 30px; text-align: center; gap: 16px; }
.newsletter-card h3 { font: 600 24px var(--serif); color: var(--cream); }
.newsletter-card input { border: 1px solid rgba(255, 255, 255, .35); background: transparent; border-radius: 999px; padding: 13px 20px; color: #fff; font: 500 14px var(--sans); }
.newsletter-card input::placeholder { color: rgba(255, 255, 255, .5); }

/* ---------- portfolio flip grid ---------- */
.filter-tabs { display: flex; gap: 30px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
.filter-tabs button { background: none; border: 0; cursor: pointer; font: 700 12px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding-bottom: 6px; }
.filter-tabs button.active { color: var(--ink); box-shadow: inset 0 -3px 0 var(--coral); }
.folio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.folio-tile { aspect-ratio: 4 / 3; }
.folio-tile .flip-inner { height: 100%; }
.folio-face { height: 100%; display: grid; place-items: center; overflow: hidden; }
.ft-rust { background: linear-gradient(140deg, #A65340, #6e3223); } .ft-navy { background: linear-gradient(140deg, #1D3557, #0e1c30); }
.ft-teal { background: linear-gradient(140deg, #0E6D6D, #063e3e); } .ft-olive { background: linear-gradient(140deg, #6B6B32, #3c3c1a); }
.f-browser { width: 68%; aspect-ratio: 16 / 10; background: #fff; border-radius: 10px; box-shadow: 0 30px 70px rgba(0, 0, 0, .35); overflow: hidden; }
.f-browser .fb-bar { height: 14%; background: #ECECEE; display: flex; align-items: center; gap: 5px; padding: 0 12px; }
.f-browser .fb-bar i { width: 8px; height: 8px; border-radius: 50%; background: #C9CACD; }
.f-browser .fb-body { height: 86%; padding: 12px; display: flex; gap: 10px; }
.f-browser .fb-col { flex: 1; border-radius: 6px; }
.folio-back { background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.folio-back h3 { font: 600 26px var(--serif); color: var(--cream); }
.folio-back span { font: 700 11px var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--coral); }

/* ---------- ruled two-column FAQ ---------- */
.faq2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 56px; }
.faq2 details { border-bottom: 1px solid rgba(0, 0, 0, .22); }
.faq2 summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 18px; padding: 21px 0; font: 600 16.5px var(--sans); }
.faq2 summary::-webkit-details-marker { display: none; }
.faq2 .chev { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: var(--ink); display: grid; place-items: center; font-size: 13px; font-weight: 800; transition: transform .3s; }
.faq2 details[open] .chev { transform: rotate(90deg); }
.faq2 details p { padding: 0 0 22px 52px; font-size: 15px; color: inherit; opacity: .85; }
.faq2.on-dark details { border-color: rgba(255, 255, 255, .28); }

/* ---------- stat interstitial ---------- */
.interstitial { background: var(--green); color: #fff; text-align: center; position: relative; overflow: hidden; padding: 120px 24px 130px; }
.interstitial h2 { font: 400 clamp(1.7rem, 3vw, 2.5rem) var(--serif); max-width: 940px; margin: 0 auto 20px; line-height: 1.35; position: relative; z-index: 2; }
.interstitial .big-num { font-weight: 600; color: var(--cream); font-size: 1.35em; }
.interstitial .challenge { font: 600 clamp(1.2rem, 2vw, 1.6rem) var(--serif); color: var(--cream); margin-bottom: 36px; position: relative; z-index: 2; }
.grid-floor { position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%); width: 1300px; opacity: .35; }

/* ---------- pill checklist ---------- */
.pill-checks { list-style: none; }
.pill-checks li { background: #fff; color: var(--ink); border-radius: 999px; padding: 16px 26px; margin: 16px 0; display: flex; align-items: center; gap: 16px; font-weight: 600; font-size: 15.5px; box-shadow: 0 14px 34px rgba(0, 0, 0, .3); }
.pill-checks .pc-dot { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--coral); color: var(--ink); display: grid; place-items: center; font-weight: 800; font-size: 14px; }

/* ---------- glowing dark cards ---------- */
.glow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.glow-card { background: #101312; border: 1px solid rgba(255, 107, 53, .4); border-radius: 14px; box-shadow: 0 0 44px rgba(255, 107, 53, .13); padding: 44px 30px; text-align: center; }
.glow-card .g-icon { width: 62px; height: 62px; border-radius: 50%; background: var(--coral); margin: 0 auto 20px; display: grid; place-items: center; font-size: 26px; }
.glow-card h3 { font: 700 19px var(--sans); color: #fff; margin-bottom: 10px; }
.glow-card p { font-size: 14.5px; color: rgba(255, 255, 255, .75); }

/* ---------- authority band ---------- */
.authority { background: var(--green-deep); padding: 100px 24px; }
.authority p { font: 400 clamp(1.4rem, 2.4vw, 2rem) var(--serif); color: rgba(255, 255, 255, .92); max-width: 1000px; margin: 0 auto; text-align: center; line-height: 1.5; }

/* ---------- contact page ---------- */
.contact-hero { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; max-width: 1280px; margin: 0 auto; padding: 150px 24px 90px; position: relative; z-index: 2; }
.contact-wrap { background: var(--ink); color: #fff; position: relative; }
.contact-wrap .streak { position: fixed; left: 50%; bottom: -240px; transform: translateX(-50%); width: 560px; height: 660px; background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255, 107, 53, .5), rgba(255, 107, 53, .08) 55%, transparent 75%); filter: blur(6px); pointer-events: none; z-index: 0; }
.contact-wrap .stars i { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: rgba(255, 255, 255, .7); }
.contact-copy h1 { font: 600 clamp(2.3rem, 4.4vw, 3.7rem) var(--serif); line-height: 1.12; }
.contact-copy .h-solid { color: #fff; }
.contact-copy .h-outline { color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, .9); }
.contact-copy .lead { font-weight: 700; font-size: 19px; margin: 26px 0 22px; }
.pull-quote { font: 600 19px var(--serif); color: var(--coral); line-height: 1.55; max-width: 480px; }
.pull-quote cite { display: block; margin-top: 10px; font: 700 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; font-style: normal; }
.form-card { background: #F4F4F2; color: var(--ink); border-radius: 18px; overflow: hidden; box-shadow: 0 40px 100px rgba(0, 0, 0, .5); }
.fc-photo { height: 150px; background: linear-gradient(110deg, #6a6f73, #3a3e42 55%, #24272a); display: grid; place-items: center; filter: grayscale(1); color: rgba(255, 255, 255, .55); font: 600 11px var(--sans); letter-spacing: .5em; text-transform: uppercase; }
.fc-body { padding: 28px 32px 34px; }
.fc-body .fc-lead { color: var(--green-deep); font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.input, .form-card select, .form-card textarea, .app-form input, .app-form textarea {
  width: 100%; border: 1px solid #D6D8D3; border-radius: 999px; background: #fff;
  padding: 13px 22px; margin: 7px 0; font: 500 15px var(--sans); color: var(--ink);
}
.form-card textarea, .app-form textarea { border-radius: 20px; min-height: 110px; resize: vertical; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.privacy-note { font-size: 12.5px; color: var(--muted); margin: 10px 0 14px; }
.privacy-note a { color: var(--green-deep); }
.form-card .btn { width: 100%; justify-content: center; }

/* application form (careers) */
.app-form { background: #F4F4F2; border-radius: 18px; padding: 46px 50px; max-width: 780px; margin: 56px auto 0; color: var(--ink); }
.app-form label { display: block; font: 600 13px var(--sans); margin-top: 14px; }
.app-form .file-note { font-size: 12.5px; color: var(--muted); }

/* ---------- service page heroes (rotating bg) ---------- */
.svc-hero { padding: 175px 24px 100px; position: relative; overflow: hidden; }
.svc-hero .wrap { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.svc-hero h1 { font: 600 clamp(2.5rem, 4.6vw, 3.9rem) var(--serif); line-height: 1.08; }
.svc-hero .hook { font: 600 clamp(1.2rem, 2vw, 1.55rem) var(--serif); margin-top: 22px; }
.svc-hero p.body { margin-top: 18px; max-width: 520px; }
.svc-hero .btn { margin-top: 28px; }
.svc-ink { background: radial-gradient(900px 600px at 80% 20%, rgba(14, 159, 110, .3), transparent 60%), var(--ink); color: #fff; }
.svc-ink .ol { -webkit-text-stroke-color: var(--coral); }
.svc-light { background: #F4F4F2; color: var(--ink); }
.svc-coral { background: var(--coral); color: var(--ink); }
.two-tone .ol-w { color: transparent; -webkit-text-stroke: 2.5px rgba(255, 255, 255, .95); }
.svc-visual { position: relative; display: grid; place-items: center; min-height: 340px; }

/* all-in-one floating card on green band */
.band-green { background: var(--green); padding: 90px 24px 110px; }
.aio { background: #F3F4F2; color: var(--ink); border-radius: 24px; padding: 60px 64px; max-width: 1240px; margin: 0 auto; box-shadow: 0 30px 80px rgba(0, 0, 0, .25); }
.aio-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 44px; text-align: center; }
.aio-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--coral); margin: 0 auto 16px; display: grid; place-items: center; font-size: 26px; }
.aio-cols h3 { font: 700 17px var(--sans); }
.aio-cols p { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* two-col content row */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col.rev > :first-child { order: 2; }

/* offset frame photo card */
.frame-card { position: relative; }
.frame-card::before { content: ''; position: absolute; inset: -22px auto auto -22px; width: 70%; height: 70%; background: var(--green); border-radius: 20px; z-index: 0; }
.frame-card .fc-img { position: relative; z-index: 1; border-radius: 20px; height: 320px; background: linear-gradient(120deg, #757a7e, #3f4347 60%, #26292c); display: grid; place-items: center; color: rgba(255, 255, 255, .5); font: 600 11px var(--sans); letter-spacing: .4em; text-transform: uppercase; }

/* ---------- timeline (center spine + bg shift) ---------- */
.timeline { position: relative; transition: background-color 1s ease; }
.timeline .spine { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: #D9DBD6; }
.t-chapter { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; position: relative; }
.t-chapter.rev .t-visual { order: 2; }
.t-era { font: 600 15px var(--serif); letter-spacing: .3em; text-transform: uppercase; color: var(--green-deep); display: block; margin-bottom: 12px; }
.t-chapter h3 { font: 600 clamp(1.6rem, 2.6vw, 2.2rem) var(--serif); color: var(--green-deep); margin-bottom: 16px; }
.t-visual { display: grid; place-items: center; position: relative; min-height: 260px; }
.t-photo { width: 230px; height: 230px; border-radius: 50%; background: linear-gradient(130deg, #83888c, #46494d 65%, #2b2e31); position: relative; filter: grayscale(1); }
.t-photo .badge { position: absolute; right: -12px; bottom: 6px; width: 74px; height: 74px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; color: var(--coral); }
.t-photo .badge svg { width: 40px; height: 40px; }

/* values collage vignettes */
.vignettes { position: relative; min-height: 480px; }
.vig { position: absolute; display: grid; place-items: center; text-align: center; }
.vig .v-blob { position: absolute; inset: 0; border-radius: 46% 54% 55% 45% / 52% 44% 56% 48%; }
.vig span { position: relative; font: 600 19px var(--serif); color: var(--green-deep); max-width: 82%; line-height: 1.3; }

/* ---------- misc ---------- */
.section-dark { background: var(--ink); color: #fff; }
.section-dark .checks li { color: rgba(255, 255, 255, .85); }
.section-grey { background: var(--grey); }
.section-sage { background: var(--sage); }
.center-max { max-width: 820px; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .m-grid, .glow-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .q-grid, .trio, .perk-grid, .aio-cols { grid-template-columns: 1fr; }
  .num-row, .zig-row, .two-col, .t-chapter, .contact-hero, .values-panel, .svc-hero .wrap { grid-template-columns: 1fr; }
  .num-row.rev .n-visual, .zig-row.rev .zig-visual, .t-chapter.rev .t-visual, .two-col.rev > :first-child { order: 0; }
  .timeline .spine { display: none; }
  .b-grid, .folio-grid { grid-template-columns: 1fr 1fr; }
  .faq2 { grid-template-columns: 1fr; }
  .photo-wall { grid-template-columns: 1fr 1fr; }
  .vignettes { min-height: 0; display: flex; flex-wrap: wrap; gap: 20px; }
  .vig { position: static; width: 46% !important; height: 190px !important; }
}
@media (max-width: 680px) {
  .m-grid, .team-grid, .b-grid, .folio-grid, .glow-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 130px; }
  .aio { padding: 40px 26px; }
  .values-panel { padding: 40px 28px; }
  .blob-card { padding: 38px 30px; }
  .row2 { grid-template-columns: 1fr; }
  .contact-hero { padding-top: 120px; }
}

/* ============================================================
   CRM landing page — platform switcher + automation flow
   ============================================================ */
.crm-stage { position: relative; width: min(560px, 100%); --crm: #FF7A59; margin-top: 30px; }
.crm-dash {
  background: #fff; border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 62px 1fr; height: 370px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
}
.crm-side { background: color-mix(in srgb, var(--crm) 14%, #fff); transition: background .7s; padding-top: 8px; }
.crm-side i { display: block; width: 28px; height: 28px; border-radius: 8px; margin: 12px auto; background: rgba(0, 0, 0, .08); transition: background .7s; }
.crm-side i.on { background: var(--crm); }
.crm-main { padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.crm-top { display: flex; gap: 10px; align-items: center; }
.crm-search { flex: 1; height: 26px; border-radius: 999px; background: #F1F2F0; }
.crm-avatar { width: 26px; height: 26px; border-radius: 50%; background: #DADBD7; }
.crm-btn { width: 88px; height: 26px; border-radius: 999px; background: var(--crm); transition: background .7s; }
.crm-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; flex: 1; }
.crm-col { background: #F6F6F4; border-radius: 10px; padding: 9px; display: flex; flex-direction: column; gap: 8px; min-height: 0; }
.crm-col-h { height: 8px; width: 62%; border-radius: 4px; background: var(--crm); opacity: .9; transition: background .7s; flex: 0 0 auto; }
.crm-card { background: #fff; border-radius: 8px; padding: 9px; box-shadow: 0 4px 10px rgba(0, 0, 0, .06); }
.crm-card b { display: block; height: 7px; width: 82%; background: #DADBD7; border-radius: 4px; margin-bottom: 6px; }
.crm-card u { display: block; height: 6px; width: 55%; background: #EBECE9; border-radius: 4px; }
.crm-card .tag { display: inline-block; margin-top: 7px; height: 10px; width: 40px; border-radius: 999px; background: color-mix(in srgb, var(--crm) 30%, #fff); transition: background .7s; }
.crm-chip {
  position: absolute; top: -30px; right: -12px; z-index: 3; min-width: 215px;
  background: #101312; color: #fff;
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 14px;
  padding: 13px 22px 13px 14px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .5);
}
.crm-glyph { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px; background: var(--crm); transition: background .7s; display: grid; place-items: center; }
.crm-glyph svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: none; }
.crm-glyph svg.on { display: block; }
.crm-chip strong { font: 700 16.5px var(--sans); display: block; line-height: 1.2; }
.crm-chip small { color: rgba(255, 255, 255, .6); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.crm-pop { animation: crmpop .55s cubic-bezier(.2, .9, .3, 1.2); }
@keyframes crmpop { 0% { transform: translateY(10px) scale(.9); opacity: 0; } 100% { transform: none; opacity: 1; } }
.crm-word { display: inline-grid; vertical-align: bottom; text-align: left; transition: color .7s; }
.crm-word b { grid-area: 1 / 1; font-weight: 700; white-space: nowrap; opacity: 0; transform: translateY(9px); transition: opacity .45s ease, transform .45s ease; }
.crm-word b.on { opacity: 1; transform: none; }

/* platform strip */
.platform-strip { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 54px; }
.p-chip {
  display: flex; align-items: center; gap: 12px;
  background: #141715; border: 1px solid #262B28; border-radius: 999px;
  padding: 12px 26px 12px 14px; color: #fff;
  transition: border-color .25s, transform .25s;
}
.p-chip:hover { border-color: var(--pc); transform: translateY(-3px); }
.p-chip .pc-glyph { width: 36px; height: 36px; border-radius: 50%; background: var(--pc); display: grid; place-items: center; }
.p-chip svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.p-chip b { font: 600 14.5px var(--sans); letter-spacing: .03em; }

/* automation flow */
.flow-list { position: relative; max-width: 430px; margin: 0 auto; }
.flow-list::before {
  content: ''; position: absolute; left: 27px; top: 26px; bottom: 26px; width: 2px;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .4) 0 6px, transparent 6px 14px);
  animation: flowdown .9s linear infinite;
}
@keyframes flowdown { to { background-position: 0 14px; } }
.flow-item { display: flex; gap: 16px; align-items: center; margin: 20px 0; position: relative; }
.flow-dot {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
  background: #141715; border: 1px solid #2A2F2C;
  display: grid; place-items: center; position: relative; z-index: 1;
}
.flow-dot::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--coral); opacity: 0; animation: pulse 5.2s ease-out infinite; }
.flow-item:nth-child(2) .flow-dot::after { animation-delay: 1.3s; }
.flow-item:nth-child(3) .flow-dot::after { animation-delay: 2.6s; }
.flow-item:nth-child(4) .flow-dot::after { animation-delay: 3.9s; }
.flow-dot svg { width: 24px; height: 24px; stroke: var(--coral); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fi-card { flex: 1; background: #141715; border: 1px solid #262B28; border-radius: 12px; padding: 14px 18px; }
.fi-card b { display: block; color: #fff; font: 600 15px var(--sans); }
.fi-card span { color: rgba(255, 255, 255, .65); font-size: 13.5px; }

@media (max-width: 1120px) {
  .crm-chip { right: 0; top: -24px; }
  .crm-stage { margin: 40px auto 0; }
}

/* ============================================================
   Featured Property rotator (homepage hero)
   ============================================================ */
.fp-stage { position: absolute; left: 27%; top: 11%; width: min(380px, 70%); z-index: 3; }
.fp-slides { position: relative; height: 480px; }
.fp-slide {
  position: absolute; inset: 0;
  background: #fff; color: var(--ink);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(22px) scale(.96);
  transition: opacity .65s ease, transform .65s ease;
  pointer-events: none;
}
.fp-slide.on { opacity: 1; transform: none; pointer-events: auto; }
.fp-img { height: 45%; position: relative; display: grid; place-items: center; flex: 0 0 auto; }
.fpg-a { background: linear-gradient(140deg, #0E6D6D, #0A3F3F); }
.fpg-b { background: linear-gradient(140deg, #1D3557, #0E1C30); }
.fpg-c { background: linear-gradient(140deg, #A65340, #5E2D21); }
.fp-img svg { width: 118px; stroke: rgba(255, 255, 255, .9); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.fp-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--coral); color: #131010;
  font: 700 10px var(--sans); letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.fp-body { padding: 18px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.fp-eyebrow { font: 700 10px var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--green-deep); }
.fp-addr { font: 600 21px var(--serif); line-height: 1.25; margin: 7px 0 12px; }
.fp-specs { display: flex; gap: 16px; flex-wrap: wrap; color: #4A4E4B; font-size: 13.5px; border-bottom: 1px solid #E7E8E4; padding-bottom: 13px; margin-bottom: 13px; }
.fp-specs span { display: inline-flex; align-items: center; gap: 6px; }
.fp-specs svg { width: 17px; height: 17px; stroke: var(--coral); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fp-price { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.fp-price strong { font: 600 23px var(--serif); }
.fp-price span { font: 600 12px var(--sans); color: var(--green-deep); letter-spacing: .04em; }
.fp-link { margin-top: auto; padding-top: 12px; font: 700 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--ink); text-decoration: none; }
.fp-link b { color: var(--coral); }
.fp-dots { display: flex; gap: 9px; justify-content: center; margin-top: 18px; }
.fp-dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .75); background: transparent; padding: 0; cursor: pointer; transition: background .25s; }
.fp-dot.active { background: #fff; }
@media (max-width: 1120px) {
  .fp-stage { position: relative; left: auto; top: auto; margin: 0 auto; }
}
