*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --off:    #ffffff;
  --blue:   #0055FF;
  --blue2:  #003FCC;
  --orange: #FF5500;
  --red:    #FF1744;
  --gray:   #888888;
  --border: #e8e8e8;
  --accent: var(--blue);
  --gold:   var(--blue);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-head: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px 0 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: none;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: none; }

nav > a { display: block; line-height: 0; flex-shrink: 0; }

.nav-logo {
  width: 52px; height: 64px;
  border-radius: 0 0 8px 0;
  object-fit: cover; object-position: center top;
  display: block;
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .88; }

.nav-logo-large {
  width: 270px; height: 240px;
  border-radius: 0 0 12px 0;
}

.nav-wordmark {
  font-family: 'Bebas Neue', var(--font-head);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: .06em;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  padding: 16px 0 16px 32px;
  display: block;
  flex-shrink: 0;
  transition: color .2s;
}
.nav-wordmark span { color: var(--blue); }
.nav-wordmark:hover { color: var(--blue); }

.nav-admin-link {
  font-size: 12px !important;
  color: #fff !important;
  letter-spacing: .04em !important;
  font-weight: 700 !important;
  padding: 7px 18px !important;
  border: 1.5px solid var(--blue) !important;
  border-radius: 100px !important;
  background: var(--blue) !important;
  transition: background .2s, box-shadow .2s !important;
}
.nav-admin-link::after { display: none !important; }
.nav-admin-link:hover { background: var(--blue2) !important; box-shadow: 0 4px 16px rgba(0,85,255,.35) !important; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(18,19,58,.45);
  font-family: var(--font-head);
  text-decoration: none; letter-spacing: .03em;
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--blue);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-links a.active::after { width: 100%; }

/* Portal pill */
.nav-links a.nav-portal-link {
  border: 1.5px solid var(--blue); border-radius: 100px;
  padding: 7px 18px; color: #fff; font-weight: 700;
  background: var(--blue);
  display: flex; align-items: center; gap: 5px;
  transition: background .2s, box-shadow .2s;
}
.nav-links a.nav-portal-link::after { display: none; }
.nav-links a.nav-portal-link:hover  { background: var(--blue2); box-shadow: 0 4px 16px rgba(0,85,255,.35); color: var(--white); }
.nav-links a.nav-portal-link.active { background: var(--blue2); color: var(--white); }
.nav-links li:last-child { margin-left: -24px; }
.nav-portal-caret { font-size: 9px; opacity: .5; transition: transform .2s; display: inline-block; }

/* Nav dropdown */
.nav-has-dropdown { position: relative; }
/* Transparent bridge fills the gap so mouse movement doesn't lose hover */
.nav-has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 20px;
}
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: 300px;
  background: var(--white);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .15s, transform .15s;
  overflow: hidden; z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open  .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); transition: opacity .15s, transform .15s; }
.nav-has-dropdown:hover .nav-portal-caret,
.nav-has-dropdown.open  .nav-portal-caret { transform: rotate(180deg); }

.nav-dd-label { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(0,0,0,.3); padding: 16px 20px 8px; font-weight: 700; }
.nav-dd-item  { display: flex; align-items: flex-start; padding: 12px 20px; text-decoration: none; transition: background .15s; border-left: 2px solid transparent; transition: background .15s, border-color .15s; }
.nav-dd-item:hover { background: #f7f8ff; border-left-color: var(--blue); }
.nav-dd-text  { display: flex; flex-direction: column; gap: 3px; }
.nav-dd-title { font-size: 13px; font-weight: 700; color: var(--black); letter-spacing: -.01em; }
.nav-dd-desc  { font-size: 11px; color: rgba(0,0,0,.4); line-height: 1.4; }
.nav-dd-tier  { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-top: 2px; }
.nav-dd-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-top: 1.5px solid var(--border); margin-top: 4px; }
.nav-dd-footer a { font-size: 12px; text-decoration: none; transition: color .15s; }
.nav-dd-footer a:first-child { color: rgba(0,0,0,.4); }
.nav-dd-footer a:first-child:hover { color: var(--black); }
.nav-dd-footer a:last-child { color: var(--white); font-weight: 600; background: var(--blue); border: none; border-radius: 100px; padding: 5px 14px; }
.nav-dd-footer a:last-child:hover { background: var(--blue2); }

/* ── HERO ──────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px 60px;
  text-align: left;
}

/* two-column split layout */
.hero-split {
  display: flex;
  align-items: center;
  gap: 52px;
  width: 100%;
  max-width: 1320px;
}
.hero-left  { flex: 0 0 380px; }
.hero-right { flex: 1; min-width: 0; }

/* keep old .hero-inner for any other pages that use it */
.hero-inner { max-width: 900px; width: 100%; }

.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  font-family: var(--font-head);
  margin-bottom: 24px; display: block;
}

.hero-h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  font-family: var(--font-display);
  font-weight: 700; line-height: .9; letter-spacing: -.02em;
  color: var(--black); margin-bottom: 18px;
  cursor: default;
}
.hero-h1 .gold    { color: var(--blue); }
.hero-h1 .outline { -webkit-text-stroke: 3px var(--black); color: transparent; }

.hero-services {
  display: flex; flex-wrap: wrap; gap: 0;
  list-style: none; margin-bottom: 18px;
  justify-content: flex-start; align-items: center;
}
.hero-services li {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(0,0,0,.4);
  font-family: var(--font-head); line-height: 1;
}
.hero-services li:not(:last-child)::after {
  content: '·'; color: var(--blue);
  padding: 0 12px; font-size: 14px; font-weight: 400;
  vertical-align: middle;
}

.hero-statement {
  font-size: clamp(15px, 1.4vw, 18px);
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(0,0,0,.5);
  line-height: 1.65; margin: 0 0 36px;
}
.hero-statement span { color: var(--blue); font-weight: 600; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }

.btn-fill {
  background: var(--blue); color: var(--white);
  padding: 14px 32px; border-radius: 100px;
  font-size: 13px; font-weight: 700; text-decoration: none; letter-spacing: .03em;
  font-family: var(--font-head);
  transition: background .25s, transform .2s; display: inline-block;
}
.btn-fill:hover { background: var(--blue2); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--blue); color: var(--blue);
  padding: 14px 32px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  font-family: var(--font-head);
  transition: background .25s, color .25s, transform .2s; display: inline-block;
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ── CLIENT SCROLL STRIP ───────────────────────────────────── */
.client-strip { background: var(--blue); overflow: hidden; white-space: nowrap; padding: 18px 0; }
.client-track { display: inline-flex; align-items: center; animation: csroll 40s linear infinite; }
.client-item  { display: inline-block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; padding: 0 32px; }
.client-dot   { display: inline-block; color: rgba(255,255,255,.4); font-size: 8px; }
@keyframes csroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── TICKER ────────────────────────────────────────────────── */
.ticker-bar   { background: var(--orange); overflow: hidden; white-space: nowrap; padding: 12px 0; }
.ticker-track { display: inline-flex; animation: tick 55s linear infinite; }
.ticker-item  { display: inline-block; font-size: 11px; color: rgba(255,255,255,.8); padding: 0 44px; letter-spacing: .06em; }
.ticker-item strong { color: var(--white); font-weight: 700; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SHARED ────────────────────────────────────────────────── */
section { padding: 108px 24px; }
.wrap { max-width: 1000px; margin: 0 auto; }
.lbl  { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 16px; display: block; }
.h2   { font-size: clamp(38px, 5vw, 64px); font-weight: 700; letter-spacing: -.02em; line-height: 1.0; margin-bottom: 24px; color: var(--blue); font-family: var(--font-display); cursor: default; }
.h2 .gold { color: var(--gold); }
.lead { font-size: 17px; line-height: 1.8; color: #666; max-width: 620px; }

/* ── ABOUT ─────────────────────────────────────────────────── */
#about { background: var(--off); }
.about-statement { font-size: clamp(28px, 4.5vw, 56px); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--blue); max-width: 820px; margin-top: 44px; margin-bottom: 44px; font-family: var(--font-display); cursor: default; }
.about-statement em { color: var(--gold); font-style: normal; }
.about-sub { font-size: 15px; line-height: 1.9; color: rgba(0,0,0,.5); max-width: 620px; }
.about-quick { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1.5px solid var(--border); }
.aq { padding: 32px 0 32px 28px; border-right: 1.5px solid var(--border); }
.aq:last-child { border-right: none; }
.aq-lbl { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 700; }
.aq-val { font-size: 36px; font-weight: 700; color: var(--black); letter-spacing: -.02em; font-family: var(--font-display); }
.aq-sub { font-size: 11px; color: #aaa; margin-top: 6px; line-height: 1.55; }
.about-roster { margin-top: 56px; padding-top: 32px; border-top: 1.5px solid var(--border); }
.ar-lbl  { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(0,0,0,.3); margin-bottom: 14px; font-weight: 700; }
.ar-names { font-size: clamp(22px, 3.5vw, 38px); font-weight: 600; color: var(--black); letter-spacing: -.01em; font-family: var(--font-display); }
.an   { padding-left: 14px; border-left: 3px solid var(--orange); margin-bottom: 8px; }
.an-n { font-size: 22px; font-weight: 700; letter-spacing: -.02em; font-family: var(--font-head); }
.an-l { font-size: 12px; color: var(--gray); margin-top: 3px; }

/* ── WORK ──────────────────────────────────────────────────── */
#work { background: var(--white); }
.featured { background: var(--off); border-left: 5px solid var(--orange); padding: 48px 52px; margin-top: 60px; display: flex; justify-content: space-between; align-items: flex-end; gap: 36px; flex-wrap: wrap; }
.fc-lbl  { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 14px; }
.fc-name { font-size: 40px; font-weight: 700; color: var(--black); letter-spacing: -.02em; margin-bottom: 10px; font-family: var(--font-display); }
.fc-svcs { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,.35); margin-bottom: 18px; }
.fc-desc { font-size: 14px; line-height: 1.75; color: rgba(0,0,0,.5); max-width: 540px; }
.fc-badge { text-align: right; flex-shrink: 0; }
.fc-bl   { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,.3); margin-bottom: 6px; }
.fc-bv   { font-size: 28px; font-weight: 900; color: var(--blue); font-family: var(--font-head); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 2px; }
.wc { background: var(--off); padding: 38px 32px; border-left: 3px solid transparent; transition: background .2s, border-color .25s, transform .2s; }
.wc:hover { background: var(--white); border-left-color: var(--gold); transform: translateX(4px); }
.wc-name { font-size: 18px; font-weight: 800; margin-bottom: 5px; color: var(--black); font-family: var(--font-head); }
.wc-role { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.wc-desc { font-size: 13px; line-height: 1.7; color: #777; }

/* ── TIMELINE ──────────────────────────────────────────────── */
#timeline { background: var(--off); }
.tl { position: relative; max-width: 700px; margin-top: 52px; }
.tl::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--orange), rgba(255,85,0,0)); }
.tl-item { padding: 0 0 44px 36px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: -5px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); }
.tl-year  { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: 7px; }
.tl-title { font-size: 22px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 7px; color: var(--black); font-family: var(--font-display); }
.tl-text  { font-size: 14px; line-height: 1.75; color: #666; max-width: 580px; }

/* ── SERVICES ──────────────────────────────────────────────── */
#services { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.svc { background: var(--off); padding: 46px 36px; border: 1.5px solid transparent; transition: border-color .3s, transform .25s, box-shadow .25s, background .25s; }
.svc:hover { background: var(--white); border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,85,255,.1); }
.svc-num   { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(0,0,0,.2); font-weight: 600; margin-bottom: 26px; }
.svc-title { font-size: 22px; font-weight: 600; color: var(--black); margin-bottom: 12px; letter-spacing: -.01em; font-family: var(--font-display); }
.svc-desc  { font-size: 13px; line-height: 1.8; color: rgba(0,0,0,.5); margin-bottom: 20px; }
.svc-rate  { display: inline-block; font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .06em; border: 1.5px solid rgba(0,85,255,.35); padding: 5px 14px; border-radius: 100px; margin-bottom: 22px; font-family: var(--font-head); }
.svc-list  { padding-top: 22px; border-top: 1.5px solid var(--border); list-style: none; }
.svc-list li { font-size: 12px; color: rgba(0,0,0,.4); line-height: 2.2; padding-left: 18px; position: relative; }
.svc-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── INDUSTRY ──────────────────────────────────────────────── */
#industry { background: var(--off); }
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }
.sc { padding: 44px 40px; background: var(--white); transition: background .25s; }
.sc:hover { background: var(--off); }
.sc-stat { font-size: 64px; font-weight: 700; letter-spacing: -.02em; line-height: 1; margin-bottom: 16px; color: var(--black); font-family: var(--font-display); }
.sc-stat span { color: var(--red); }
.sc-text { font-size: 14px; line-height: 1.75; color: #666; }
.sc-src  { font-size: 10px; color: #bbb; margin-top: 16px; text-transform: uppercase; letter-spacing: .08em; }

/* ── INQUIRY ───────────────────────────────────────────────── */
#inquiry { background: var(--white); }
.inq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; margin-top: 60px; }
.inq-left p { font-size: 15px; line-height: 1.85; color: #555; margin-bottom: 18px; }
.inq-left strong { color: var(--black); font-weight: 700; }
.inq-form { display: flex; flex-direction: column; gap: 12px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, select, textarea {
  font-family: var(--font); font-size: 13px;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 13px 16px; background: var(--off); color: var(--black);
  outline: none; width: 100%;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: #bbb; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); }
select { color: #bbb; }
select.filled { color: var(--black); }
textarea { resize: vertical; min-height: 130px; }
.inq-note { font-size: 11px; color: var(--gray); letter-spacing: .02em; }
.btn-sub { background: var(--blue); color: var(--white); border: none; border-radius: 100px; padding: 14px 36px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .25s, transform .2s; align-self: flex-start; font-family: var(--font-head); letter-spacing: .03em; }
.btn-sub:hover { background: var(--blue2); transform: translateY(-2px); }
.thanks { display: none; padding: 48px 40px; background: var(--off); border-radius: 12px; text-align: center; }
.thanks-check { font-size: 32px; margin-bottom: 14px; }
.thanks h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; font-family: var(--font-head); }
.thanks p { font-size: 15px; line-height: 1.7; color: #555; max-width: 340px; margin: 0 auto; }
.thanks-sig { margin-top: 18px; font-size: 13px; color: var(--gray); }

/* ── PRICING ───────────────────────────────────────────────── */
#pricing-hero { background: var(--white); padding: 130px 24px 80px; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1000px; margin: 64px auto 0; }
.pricing-card { background: var(--off); border: 1.5px solid var(--border); padding: 40px 32px; position: relative; transition: border-color .25s, background .25s; }
.pricing-card:hover { border-color: rgba(0,85,255,.2); background: var(--white); }
.pricing-card.pricing-featured { border-color: var(--blue); background: var(--white); }
.pricing-card.pricing-featured::before { content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 8px 8px; }
.pc-tier  { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.pc-name  { font-size: 22px; font-weight: 600; color: var(--black); margin-bottom: 14px; letter-spacing: -.01em; font-family: var(--font-display); }
.pc-price { font-size: 44px; font-weight: 700; color: var(--black); letter-spacing: -.02em; margin-bottom: 6px; font-family: var(--font-display); }
.pc-price span { font-size: 16px; font-weight: 400; color: var(--gray); }
.pc-note  { font-size: 12px; color: var(--gray); margin-bottom: 28px; }
.pc-features { list-style: none; margin-bottom: 32px; }
.pc-features li { font-size: 13px; color: rgba(0,0,0,.3); line-height: 2.2; padding-left: 22px; position: relative; }
.pc-features li::before { content: '—'; position: absolute; left: 0; color: var(--border); }
.pc-features li.on { color: var(--black); }
.pc-features li.on::before { content: '✓'; color: var(--gold); }
.pc-cta { display: block; text-align: center; border-radius: 100px; padding: 13px 24px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .25s, color .25s, transform .2s; letter-spacing: .02em; }
.pc-cta-fill { background: var(--blue); color: var(--white); }
.pc-cta-fill:hover { background: var(--blue2); transform: translateY(-2px); }
.pc-cta-outline { border: 1.5px solid var(--blue); color: var(--blue); }
.pc-cta-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
#pricing-faq { background: var(--off); padding: 100px 24px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 52px; }
.faq-item { background: var(--white); padding: 32px; border: 1.5px solid transparent; transition: border-color .2s; }
.faq-item:hover { border-color: var(--border); }
.faq-q { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 10px; letter-spacing: 0; font-family: var(--font-display); }
.faq-a { font-size: 13px; line-height: 1.8; color: rgba(0,0,0,.5); }

/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: var(--white); border-top: 1.5px solid var(--border); padding: 60px 24px; text-align: center; }
.foot-name { font-size: 18px; font-weight: 800; letter-spacing: .1em; color: var(--black); margin-bottom: 8px; font-family: var(--font-head); }
.foot-tag  { font-size: 12px; color: rgba(0,0,0,.35); margin-bottom: 32px; max-width: 360px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.foot-nav  { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; list-style: none; margin-bottom: 40px; }
.foot-nav a { font-size: 12px; color: rgba(0,0,0,.35); text-decoration: none; transition: color .2s; letter-spacing: .04em; }
.foot-nav a:hover { color: var(--blue); }
.foot-copy { font-size: 10px; color: rgba(0,0,0,.2); letter-spacing: .04em; }
.foot-email { margin-bottom: 32px; }
.foot-email a { font-size: 12px; color: rgba(0,0,0,.45); text-decoration: none; border-bottom: 1px solid rgba(0,85,255,.4); padding-bottom: 2px; transition: color .2s; }
.foot-email a:hover { color: var(--blue); }

/* ── VIDEO ─────────────────────────────────────────────────── */
.yt-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(18,19,58,.15); border: none; cursor: pointer; transition: background .2s, transform .2s; padding: 0; }
.yt-dot:hover { background: rgba(18,19,58,.4); }
.yt-dot.active { background: var(--gold); transform: scale(1.3); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease-in-out; }
.hero-slide.active { opacity: 1; }

/* ── FADE-UP ───────────────────────────────────────────────── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fu.on { opacity: 1; transform: translateY(0); }

/* ── LETTER BOUNCE ─────────────────────────────────────────── */
@keyframes letterBounce {
  0%   { transform: translateY(0) rotate(0deg); }
  20%  { transform: translateY(-14px) rotate(-6deg); color: var(--orange); }
  50%  { transform: translateY(-6px) rotate(4deg); color: var(--red); }
  80%  { transform: translateY(-2px) rotate(-1deg); color: var(--blue); }
  100% { transform: translateY(0) rotate(0deg); }
}
.split-text .lb { display: inline-block; }
.split-text .lb.bouncing { animation: letterBounce .55s cubic-bezier(.36,.07,.19,.97) both; }

/* ── HAMBURGER BUTTON ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 12px 20px 12px 0;
  background: none; border: none; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  #home { padding: 160px 36px 80px; }
  .about-quick { grid-template-columns: 1fr; }
  .aq { border-right: none; border-bottom: 1.5px solid var(--border); padding: 24px 0 24px 20px; }
  .work-grid, .svc-grid { grid-template-columns: 1fr 1fr; }
  .inq-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(60px, 10vw, 120px); }
}
@media (max-width: 768px) {
  /* NAV — hamburger */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 28px; z-index: 150;
    padding: 80px 32px 40px;
  }
  nav.menu-open .nav-links { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a { font-size: 18px !important; padding: 0 !important; border: none !important; background: none !important; color: var(--black) !important; }
  .nav-links a:hover { color: var(--blue) !important; background: none !important; box-shadow: none !important; }
  .nav-links a.nav-portal-link,
  .nav-links a.nav-admin-link {
    font-size: 16px !important;
    padding: 10px 28px !important;
    display: inline-flex !important;
  }
  .nav-has-dropdown .nav-dropdown { display: none !important; }
  .nav-portal-caret { display: none; }
  .nav-wordmark { font-size: 26px; z-index: 200; position: relative; }

  /* LAYOUT */
  #home { padding: 120px 24px 60px; }
  .hero-h1 { font-size: clamp(52px, 14vw, 90px); }
  .hero-statement { font-size: 16px; }
  section { padding: 60px 20px; }
  .wrap { padding: 0 20px; }
  .work-grid, .svc-grid { grid-template-columns: 1fr; }
  .wc[style*="span 2"] { grid-column: span 1 !important; }
  .featured { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .fc-badge { align-self: flex-start; }
  .fr2 { grid-template-columns: 1fr; }
  .about-quick { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: center; }
  .btn-fill, .btn-outline { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .hero-services { gap: 4px; flex-direction: column; }
  .hero-services li:not(:last-child)::after { display: none; }
  .hero-services li { font-size: 10px; }
  .foot-nav { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .client-strip { font-size: 13px; }
}
@media (max-width: 480px) {
  #home { padding: 100px 20px 48px; }
  .hero-h1 { font-size: clamp(44px, 16vw, 72px); }
  .nav-wordmark { font-size: 22px; padding-left: 20px; }
  .about-statement { font-size: clamp(22px, 6vw, 36px); }
  .h2 { font-size: clamp(28px, 7vw, 44px); }
  .pricing-card { padding: 32px 24px; }
  section { padding: 48px 16px; }
}
