/* SAC Design System v5.1 — extracted from sac-revamp reference (single source of truth) */
/* HOMEPAGE sections only */

.dpill { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .55rem; border: 1px solid var(--bdr); color: var(--muted); border-radius: 3px; }

.hero { position: relative; height: calc(100vh - var(--hdr-h, 112px)); min-height: 480px; max-height: 920px; overflow: hidden; background: var(--navy); }

.slides { position: absolute; inset: 0; }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 9s ease;
}

.slide.active .slide-bg { transform: scale(1.07); }

.slide-ov {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(14,23,48,.88) 0%, rgba(14,23,48,.55) 52%, rgba(14,23,48,.18) 100%);
}

.slide-ov-bot {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(14,23,48,.85), transparent);
}

.bg1 { background-image: url('../assets/img/hero-1.jpg'), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=85'); }

.bg2 { background-image: url('../assets/img/hero-2.jpg'), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1800&q=85'); }

.bg3 { background-image: url('../assets/img/hero-3.jpg'), url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?w=1800&q=85'); }

.hero-left {
  position: absolute; left: 0; top: 0; bottom: 0; width: 68px; z-index: 20;
  display: none; flex-direction: column; align-items: center;
  justify-content: flex-end; padding-bottom: 3.5rem; gap: 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}

@media(min-width:768px) {
.hero-left { display: flex; }
}

.hero-counter {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: .6rem; letter-spacing: .08em;
}

.hero-counter strong { color: var(--gold); font-weight: 400; font-size: 14px; }

.dot-track { display: flex; flex-direction: column; gap: .55rem; }

.dot-track span {
  display: block; width: 3px; height: 22px; border-radius: 2px;
  background: rgba(255,255,255,.22); cursor: pointer; transition: all .35s;
}

.dot-track span.on { background: var(--gold); height: 36px; }

.hero-right {
  position: absolute; right: 0; top: 0; bottom: 0; width: 62px; z-index: 20;
  display: none; flex-direction: column; align-items: center;
  justify-content: flex-end; padding-bottom: 3.5rem; gap: 1.75rem;
  border-left: 1px solid rgba(255,255,255,.08);
}

@media(min-width:768px) {
.hero-right { display: flex; }
}

.hero-soc {
  writing-mode: vertical-rl;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.32); transition: color .2s;
}

.hero-soc:hover { color: var(--gold); }

.scroll-txt {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.22); display: flex; align-items: center; gap: .5rem;
}

.scroll-txt::before { content: ''; display: block; width: 1px; height: 2.5rem; background: rgba(255,255,255,.18); }

.hero-body {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: flex-end; padding-bottom: clamp(3.5rem, 10vh, 5.5rem);
  padding-left: 80px; padding-right: 74px;
}

@media(max-width:767px) {
.hero-body { padding: 0 1.5rem 6rem; }
}

.hero-texts { position: relative; }

.hero-txt { display: none; animation: up .75s cubic-bezier(.25,1,.5,1) both; }

.hero-txt.on { display: block; }

@keyframes up { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.15rem;
}

.hero-eyebrow-line { width: 2.5rem; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-eyebrow-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,.16);
  padding: .5rem 1rem; border-radius: 999px;
}

.hero-h1 {
  font-family: var(--serif); font-size: clamp(2rem, min(5.2vw, 7.5vh), 4.25rem);
  font-weight: 600; line-height: 1.16; letter-spacing: -.02em; color: #fff;
  margin-bottom: clamp(1rem, 3vh, 1.5rem); max-width: 760px; word-wrap: break-word;
}

.hero-h1 em { font-style: italic; font-weight: 400; color: var(--gold2); }

.hero-h1 strong { font-weight: 700; font-style: normal; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-bar {
  position: absolute; bottom: 0; left: 68px; right: 62px; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08); padding: .9rem 2.5rem;
}

@media(max-width:767px) {
.hero-bar { left: 0; right: 0; padding: .9rem 1.5rem; }
}

.bar-arrows { display: flex; gap: .7rem; }

.bar-arr {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7);
  transition: all .4s var(--ease);
}

.bar-arr:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: scale(1.08); }

.bar-creds { display: none; gap: .6rem; align-items: center; }

@media(min-width:860px) {
.bar-creds { display: flex; }
}

.bar-cred {
  font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  padding: .4rem .8rem; border-radius: 999px;
}

.bar-prog { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.4); }

.bar-prog em { color: var(--gold); font-style: normal; }

.stats { background: var(--navy2); border-bottom: 1px solid rgba(79,142,247,.12); }

.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid rgba(255,255,255,.06);
}

@media(max-width:639px) {
.stats-row { grid-template-columns: repeat(2,1fr); }
}

.stat {
  padding: 2.75rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .4s var(--ease);
}

.stat:hover { background: rgba(255,255,255,.03); }

@media(min-width:640px) {
.stat { border-bottom: none; }
}

.stat-n {
  font-family: var(--serif); font-size: clamp(2.8rem,5vw,4rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: .1em;
}

.stat-n sup { font-size: .4em; font-family: var(--sans); font-weight: 400; }

.stat-l { font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .65rem; }

.about { display: grid; grid-template-columns: 1fr; }

@media(min-width:900px) {
.about { grid-template-columns: 1fr 1fr; min-height: 580px; }
}

.about-img { position: relative; overflow: hidden; min-height: 420px; }

.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-img-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,23,48,.5) 0%, transparent 60%); }

.about-badge {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  background: rgba(14,23,48,.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; border-radius: 8px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}

.about-img:hover .about-badge { transform: translateY(-4px); background: rgba(14,23,48,.7); }

.ab-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(79,142,247,.75); margin-bottom: .45rem; }

.ab-txt { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: #fff; line-height: 1.45; }

.about-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3rem; background: var(--white);
}

@media(min-width:1100px) {
.about-copy { padding: 5.5rem 5rem; }
}

.about-eyebrow { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.25rem; }

.about-eyebrow-line { width: 2rem; height: 1px; background: var(--gold); }

.about-eyebrow-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--goldd); }

.about-h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 600; line-height: 1.1; letter-spacing: -.02em; color: var(--navy); margin-bottom: 1.1rem; }

.about-h2 em { font-style: italic; font-weight: 400; }

.about-lead { font-size: 16px; font-weight: 600; color: var(--ink2); margin-bottom: .85rem; line-height: 1.6; }

.about-body { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.9; margin-bottom: 2.25rem; }

.about-ctas { display: flex; flex-wrap: wrap; gap: .85rem; }

.focus { padding: 6rem 0; background: var(--navy); }

.sec-head-center { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }

.sec-eyebrow-light { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(79,142,247,.85); margin-bottom: 1rem; }

.sec-eyebrow-light::before, .sec-eyebrow-light::after { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold); }

.sec-h2-light { font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; color: #fff; }

.sec-h2-light em { font-style: italic; font-weight: 400; color: var(--gold2); }

.sec-desc-light { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.85; margin-top: .85rem; }

.focus-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  background: transparent; overflow: visible;
}

@media(min-width:640px) {
.focus-grid { grid-template-columns: repeat(2,1fr); }
}

@media(min-width:960px) {
.focus-grid { grid-template-columns: repeat(3,1fr); }
}

.fc {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.fc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.07) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .8s var(--ease);
  pointer-events: none;
}

.fc:hover::before { transform: translateX(100%); }

.fc:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(79,142,247,.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(79,142,247,.08);
}

.fc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}

.fc:hover::after { transform: scaleX(1); }

.fc-icon { width: 46px; height: 46px; border-radius: 5px; background: rgba(79,142,247,.1); border: 1px solid rgba(79,142,247,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.35rem; transition: background .35s var(--ease), transform .35s var(--ease); }

.fc:hover .fc-icon { background: rgba(79,142,247,.2); transform: scale(1.08) rotate(-4deg); }

.fc-icon svg { width: 22px; height: 22px; fill: var(--gold); }

.fc-num { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(79,142,247,.4); margin-bottom: .5rem; }

.fc-title { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: #fff; margin-bottom: .7rem; line-height: 1.22; }

.fc-body { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.75; }

.services { padding: 6rem 0; background: var(--off); }

.sec-head { max-width: 620px; margin-bottom: 3.5rem; }

.sec-eyebrow { display: flex; align-items: center; gap: .7rem; font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--goldd); margin-bottom: 1rem; }

.sec-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }

.sec-h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 600; line-height: 1.1; letter-spacing: -.022em; color: var(--navy); }

.sec-h2 em { font-style: italic; font-weight: 400; }

.sec-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.85; margin-top: .85rem; }

.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

@media(min-width:640px) {
.svc-grid { grid-template-columns: repeat(2,1fr); }
}

@media(min-width:960px) {
.svc-grid { grid-template-columns: repeat(3,1fr); }
}

.sc {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--bdr); border-radius: 10px;
  padding: 2.1rem; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}

.sc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); z-index: 2; }

.sc::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .9s var(--ease); pointer-events: none;
}

.sc:hover::after { transform: translateX(120%); }

.sc:nth-child(1)::before { background: linear-gradient(90deg, var(--navy), #3A5FA0); }

.sc:nth-child(2)::before { background: linear-gradient(90deg, var(--goldd), var(--gold2)); }

.sc:nth-child(3)::before { background: linear-gradient(90deg, #0F6E56, #3DD68C); }

.sc:nth-child(4)::before { background: linear-gradient(90deg, #1A5070, #5CA3E6); }

.sc:nth-child(5)::before { background: linear-gradient(90deg, #6B1A80, #B06ACC); }

.sc:nth-child(6)::before { background: linear-gradient(90deg, #7A3010, #C86020); }

.sc:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 48px rgba(14,23,48,.14), 0 0 0 1px rgba(14,23,48,.04);
  border-color: rgba(14,23,48,.1);
  background: rgba(255,255,255,.92);
}

.sc:hover::before { transform: scaleX(1); }

.sc-icon { width: 46px; height: 46px; border-radius: 5px; background: var(--off2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; flex-shrink: 0; transition: background .4s var(--ease), transform .4s var(--ease); }

.sc:hover .sc-icon { background: var(--navy); transform: scale(1.08) rotate(-4deg); }

.sc:hover .sc-icon svg { fill: var(--gold); }

.sc-icon svg { width: 22px; height: 22px; fill: var(--navy); transition: fill .25s; }

.sc-cred { font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .85rem; }

.sc-title { font-family: var(--serif); font-size: 1.2rem; font-style: italic; font-weight: 600; color: var(--navy); margin-bottom: .75rem; line-height: 1.28; }

.sc-problem { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.65; padding: .65rem 0; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); margin: .75rem 0; }

.sc-problem strong { font-weight: 600; color: var(--ink2); }

.sc-body { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; flex: 1; }

.sc-lnk { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy2); margin-top: 1.25rem; transition: gap .15s, color .15s; }

.sc-lnk:hover { gap: .7rem; color: var(--goldd); }

.sc-lnk svg { width: 12px; height: 12px; fill: currentColor; transition: transform .2s; }

.sc-lnk:hover svg { transform: translateX(3px); }

.mission {
  position: relative; overflow: hidden;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
}

.mission-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: url('../assets/img/trust-bg.jpg'), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=85');
  transform: scale(1.02);
}

.mission-ov {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,23,48,.88) 0%, rgba(14,23,48,.78) 45%, rgba(14,23,48,.92) 100%);
}

.mission-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; mix-blend-mode: overlay;
}

.mission-inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; margin: 0 auto; padding: 6rem 2rem;
}

.mission-panel {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: clamp(2.5rem,5vw,4rem);
}

.mission-tag {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(127,178,255,.9); margin-bottom: 1.5rem;
}

.mission-tag::before, .mission-tag::after { content: ''; display: block; width: 1.75rem; height: 1px; background: var(--gold); }

.mission-h2 {
  font-family: var(--serif); font-size: clamp(2.1rem,4.5vw,3.6rem);
  font-weight: 600; line-height: 1.15; letter-spacing: -.022em; color: #fff;
  margin-bottom: 1.5rem;
}

.mission-h2 em { font-style: italic; font-weight: 400; color: var(--gold2); }

.mission-body {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: 1.95; max-width: 640px; margin: 0 auto 2.25rem;
}

.mission-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

@media(max-width:600px) {
.mission-inner { padding: 4rem 1.25rem; }
.mission-panel { padding: 2rem 1.5rem; border-radius: 14px; }
}

.outcomes { padding: 6rem 0; background: #fff; }

.oc-grid {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--bdr); border-radius: 12px; overflow: hidden; margin-top: 3.5rem;
}

@media(min-width:700px) {
.oc-grid { grid-template-columns: repeat(2,1fr); }
}

.oi {
  padding: 2.25rem 2.5rem; border-right: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr); transition: background .35s var(--ease), transform .35s var(--ease);
  position: relative;
}

.oi:nth-child(even) { border-right: none; }

.oi:nth-last-child(-n+2) { border-bottom: none; }

@media(max-width:699px) {
.oi { border-right: none; }
.oi:last-child { border-bottom: none; }
}

.oi:hover { background: var(--off); transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(14,23,48,.04); }

.oi-num { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--goldd); margin-bottom: .65rem; }

.oi-title { font-family: var(--serif); font-size: 1.2rem; font-style: italic; font-weight: 600; color: var(--navy); margin-bottom: .75rem; line-height: 1.25; }

.oi-body { font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.75; }

.oi-lnk { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy2); margin-top: 1rem; transition: gap .15s, color .15s; }

.oi-lnk:hover { gap: .7rem; color: var(--goldd); }

.oi-lnk svg { width: 12px; height: 12px; fill: currentColor; }

.inds { padding: 5.5rem 0; background: var(--off); overflow: hidden; }

.testi {
  position: relative; padding: 6rem 0;
  background: url('../assets/img/trust-bg.jpg'), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=85') center/cover no-repeat;
}

.testi::before { content: ''; position: absolute; inset: 0; background: rgba(14,23,48,.88); }

.testi-inner { position: relative; z-index: 2; }

.testi-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }

.testi-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(79,142,247,.85); margin-bottom: .6rem; display: flex; align-items: center; gap: .6rem; }

.testi-tag::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold); }

.testi-meta { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.4); font-weight: 300; }

.testi-meta strong { color: var(--gold); font-weight: 600; font-size: 1.1rem; }

.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

@media(min-width:700px) {
.testi-grid { grid-template-columns: repeat(3,1fr); }
}

.tcard {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 2rem; transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}

.tcard::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.08) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .9s var(--ease); pointer-events: none;
}

.tcard:hover::before { transform: translateX(120%); }

.tcard:hover { background: rgba(255,255,255,.1); border-color: rgba(79,142,247,.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }

.tcard-quote { font-family: var(--serif); font-size: 3rem; line-height: .8; color: var(--gold); margin-bottom: .75rem; }

.tcard-body { font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 1.5rem; }

.tcard-author { display: flex; align-items: center; gap: .85rem; }

.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy);
}

.tcard-name { font-size: 14px; font-weight: 600; color: #fff; }

.tcard-role { font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .15rem; }

.trust { padding: 6rem 0; background: var(--navy); }

.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3.5rem; }

@media(min-width:640px) {
.trust-grid { grid-template-columns: repeat(2,1fr); }
}

@media(min-width:960px) {
.trust-grid { grid-template-columns: repeat(3,1fr); }
}

.trc {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: 10px; padding: 1.75rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}

.trc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.06) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .9s var(--ease); pointer-events: none;
}

.trc:hover::before { transform: translateX(120%); }

.trc:hover { border-color: rgba(79,142,247,.32); background: rgba(255,255,255,.075); transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,.3); }

.trc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .3rem; box-shadow: 0 0 0 3px rgba(79,142,247,.14); animation: pip 3s ease-in-out infinite; }

@keyframes pip { 0%,100%{box-shadow:0 0 0 3px rgba(79,142,247,.14)} 50%{box-shadow:0 0 0 7px rgba(79,142,247,.06)} }

.trc-auth { font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(79,142,247,.65); margin-bottom: .4rem; }

.trc-label { font-size: 14.5px; font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: .3rem; }

.trc-ref { font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,.32); margin-bottom: .5rem; }

.trc-desc { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.62); line-height: 1.68; }

.lead { padding: 6rem 0; background: var(--off); }

.lead-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }

@media(min-width:960px) {
.lead-inner { grid-template-columns: 1fr 460px; }
}

.lead-asset {
  margin-top: 1.75rem; padding: 2rem;
  border: 1px solid var(--bdr); border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 12px; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.lead-asset:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,23,48,.1); }

.la-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--goldd); margin-bottom: .7rem; }

.la-title { font-family: var(--serif); font-size: 1.3rem; font-style: italic; font-weight: 600; color: var(--navy); margin-bottom: .65rem; line-height: 1.3; }

.la-body { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; }

.la-meta { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; color: var(--goldd); margin-top: .7rem; }

.form-box {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6); border-radius: 14px; padding: 2.5rem;
  box-shadow: 0 12px 48px rgba(14,23,48,.08); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.form-box:hover { transform: translateY(-3px); box-shadow: 0 20px 56px rgba(14,23,48,.12); }

.form-ttl { font-family: var(--serif); font-size: 1.5rem; font-style: italic; font-weight: 600; color: var(--navy); margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 1rem; }

@media(max-width:480px) {
.form-row { grid-template-columns: minmax(0,1fr); }
}

.fg { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; min-width: 0; }

.fl { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.fi { width: 100%; max-width: 100%; box-sizing: border-box; padding: .78rem 1rem; border: 1px solid var(--bdr); background: var(--off); font-family: var(--sans); font-size: 14px; color: var(--ink); border-radius: 4px; outline: none; transition: border-color .18s, box-shadow .18s, background .18s; }

.fi:focus { border-color: var(--navy2); background: #fff; box-shadow: 0 0 0 3px rgba(21,34,64,.1); }

.fi::placeholder { color: var(--muted); }

.fsub { width: 100%; padding: 1rem; background: var(--navy); color: #fff; font-size: 14px; font-weight: 600; letter-spacing: .02em; border-radius: 4px; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; gap: .6rem; transition: background .2s, transform .2s; margin-top: .25rem; }

.fsub:hover { background: var(--navy3); transform: translateY(-1px); }

.fsub svg { width: 16px; height: 16px; fill: #fff; }

.fprivacy { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; color: var(--muted); margin-top: .85rem; line-height: 1.65; text-align: center; }

.fprivacy a { color: var(--goldd); }

.gallery { padding: 5.5rem 0; background: #fff; }

.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.gall-lnk { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 2px; transition: color .15s, border-color .15s; }

.gall-lnk:hover { color: var(--goldd); border-color: var(--goldd); }

.gall-lnk svg { width: 12px; height: 12px; fill: currentColor; }

.gallery-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; }

@media(max-width:767px) {
.gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media(min-width:768px) and (max-width:959px) {
.gallery-grid { grid-template-columns: repeat(3,1fr); }
}

.gi { overflow: hidden; border-radius: 10px; aspect-ratio: 1; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }

.gi:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(14,23,48,.18); }

.gi:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.gi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }

.gi:hover img { transform: scale(1.05); }

.cta-band { padding: 7rem 0; background: var(--navy2); position: relative; overflow: hidden; }

.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(79,142,247,.06) 1px, transparent 1px); background-size: 28px 28px; }

.cta-band::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(79,142,247,.07), transparent 65%); pointer-events: none; }

.cta-in { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }

.cta-tag { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(79,142,247,.85); margin-bottom: 1.5rem; }

.cta-tag::before, .cta-tag::after { content: ''; display: block; width: 2rem; height: 1px; background: rgba(79,142,247,.3); }

.cta-h2 { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.9rem); font-weight: 600; line-height: 1.06; letter-spacing: -.025em; color: #fff; margin-bottom: 1.25rem; }

.cta-h2 em { font-style: italic; font-weight: 400; color: var(--gold2); }

.cta-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.9; margin-bottom: 2rem; }

.cta-commits { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }

.cta-c { display: flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: 10.5px; letter-spacing: .07em; color: rgba(255,255,255,.62); }

.cta-c::before { content: '◈'; color: rgba(79,142,247,.45); }

.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.cta-creds { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }

.cta-cr { font-family: var(--mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.18); }

.d1 {transition-delay:.1s}

.d2 {transition-delay:.2s}

.d3 {transition-delay:.3s}

.d4 {transition-delay:.4s}

@media(max-width:900px) {
.about-copy { padding: 3rem 2rem; }
.focus, .services, .outcomes, .trust, .lead, .testi, .gallery, .cta-band, .inds { padding: 4rem 0; }
}

@media(max-width:700px) {
.testi-head { align-items: flex-start; }
.testi-meta { font-size: 12px; }
}

@media(max-width:480px) {
.hero-h1 { font-size: 2.5rem; }
.stats-row { grid-template-columns: repeat(2,1fr); }
.gallery-grid { grid-template-columns: repeat(2,1fr); }
.gi:first-child { grid-column: span 2; }
.cta-btns { flex-direction: column; align-items: center; }
.cta-btns .btn-gold, .cta-btns .btn-wh { justify-content: center; min-width: 260px; }
.oc-grid { grid-template-columns: 1fr; }
.oi:nth-child(even) { border-right: none; }
.testi { padding: 3.5rem 0; }
.testi-head { flex-direction: column; align-items: flex-start; gap: .75rem; margin-bottom: 2rem; }
.testi-grid { gap: 1rem; }
.tcard { padding: 1.5rem; border-radius: 12px; }
.tcard-quote { font-size: 2.25rem; margin-bottom: .5rem; }
.tcard-body { font-size: 14px; line-height: 1.75; margin-bottom: 1.25rem; }
.tcard-avatar { width: 38px; height: 38px; font-size: 1rem; }
.tcard-name { font-size: 13.5px; }
.tcard-role { font-size: 9px; }
.form-box { padding: 1.5rem; }
.form-ttl { font-size: 1.3rem; }
}

.marquee-wrap {
  margin-top: 3rem; position: relative; overflow: hidden;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marq-card {
  flex-shrink: 0; width: 280px;
  background: var(--white); border: 1px solid var(--bdr); border-radius: 12px;
  padding: 1.5rem 1.6rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.marq-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(14,23,48,.1); border-color: var(--g300); }

.marq-icon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: var(--off2); display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), transform .35s var(--ease);
}

.marq-card:hover .marq-icon { background: var(--navy); transform: scale(1.08) rotate(-4deg); }

.marq-icon svg { width: 22px; height: 22px; fill: var(--navy); transition: fill .35s var(--ease); }

.marq-card:hover .marq-icon svg { fill: var(--gold); }

.marq-name { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.3; }

.marq-reg { font-family: var(--mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

@media(max-width:480px) {
.marq-card { width: 240px; padding: 1.25rem; }
}

@media(prefers-reduced-motion:reduce) {
*, ::before, ::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}