/* ── TOKENS ───────────────────────────────────────── */
:root {
  --ink:        #080E1A;
  --ink-2:      #0F1929;
  --ink-3:      #162034;
  --navy:       #1B3A5C;
  --gold:       #3B6AF0;
  --gold-lt:    #6088FF;
  --blue-text:  #2C56CF;
  --gold-dim:   rgba(59,106,240,0.14);
  --gold-glow:  rgba(59,106,240,0.28);
  --green:      #4DF79A;
  --green-dim:  rgba(77,247,154,0.12);
  --green-glow: rgba(77,247,154,0.28);
  --white:      #FFFFFF;
  --offwhite:   #F7F5F1;
  --smoke:      #F0EDE8;
  --text:       #0D1825;
  --muted:      #5B6B7C;
  --border:     #E2DAD0;
  --border-dk:  rgba(255,255,255,0.09);
  --font:       'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-accent: 'Fraunces', Georgia, 'Times New Roman', serif;
  --r:          8px;
  --r-lg:       16px;
  --r-xl:       24px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          0.2s;
  --sh:         0 4px 24px rgba(8,14,26,.1);
  --sh-lg:      0 12px 48px rgba(8,14,26,.16);
  --sh-xl:      0 24px 72px rgba(8,14,26,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed; top: 14px; left: 16px; right: 16px; z-index: 200;
  background: rgba(8,14,26,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  /* inner top highlight = the "glass edge" catching light */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  height: 62px;
  display: flex; align-items: center;
  padding: 0 1.25rem;
  justify-content: space-between;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
nav.scrolled {
  background: rgba(8,14,26,0.72);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 40px rgba(0,0,0,.45);
}

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-icon {
  width: 34px; height: 34px; border-radius: 9px;
  overflow: hidden;
  display: grid; place-items: center; flex-shrink: 0;
}
.nav-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-wordmark { font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: -0.4px; }
.nav-wordmark span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500; color: rgba(255,255,255,0.55);
  text-decoration: none; padding: 0.4rem 0.85rem; border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 8px; }
.nav-cta {
  background: var(--gold) !important; color: var(--ink) !important;
  font-weight: 700 !important; border-radius: 9px !important;
  padding: 0.45rem 1.1rem !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); box-shadow: 0 4px 16px var(--gold-glow) !important; }

.nav-toggle { display: none; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; cursor: pointer; padding: 6px 14px; align-items: center; gap: 6px; color: var(--white); font-size: 0.8rem; font-weight: 600; font-family: var(--font); white-space: nowrap; }
.nav-toggle::before { content: 'Menu'; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--ink);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 130px 2rem 100px;
}
.hero-mesh {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%;
}
.hero-glow-1 {
  width: 700px; height: 500px; top: -100px; right: -100px;
  background: radial-gradient(ellipse, rgba(59,106,240,0.09) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 600px; bottom: -150px; left: -50px;
  background: radial-gradient(ellipse, rgba(77,247,154,0.06) 0%, transparent 65%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 480px; gap: 3rem; align-items: center;
  position: relative; z-index: 2;
}

.hero-logo { max-width: 260px; width: 100%; margin-bottom: 1.75rem; opacity: 0; animation: up .55s .04s forwards; display: block; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(59,106,240,0.3);
  background: rgba(59,106,240,0.08);
  color: var(--gold-lt);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
  margin-bottom: 1.5rem;
  opacity: 0; animation: up .55s .08s forwards;
}
.hero-eyebrow-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -0.035em;
  margin-bottom: 1.375rem;
  opacity: 0; animation: up .55s .18s forwards;
}
.hero-h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(100deg, var(--gold) 0%, #4DF79A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h1 .line-muted { color: rgba(255,255,255,0.45); }

/* Editorial italic accent — reusable on any heading via <em> or .accent */
.h2 em, .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.58);
  line-height: 1.78; max-width: 480px; margin-bottom: 2.25rem;
  opacity: 0; animation: up .55s .28s forwards;
}

.hero-btns {
  display: flex; gap: 0.875rem; flex-wrap: wrap;
  opacity: 0; animation: up .55s .4s forwards;
}

/* hero right — device mockup image */
.hero-mockup-wrap {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: up .65s .32s forwards;
}
.hero-mockup-img {
  width: 100%; max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.45));
}
.float-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.float-card {
  position: relative;
  background: #1a2540;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  min-height: 145px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.float-card:hover {
  transform: translateY(-4px);
  background: #1f2d4e;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(77,247,154,0.35);
}
.float-card:last-child { grid-column: 1 / -1; min-height: 110px; }
.float-card:last-child .fc-front {
  flex-direction: row; align-items: center; gap: 2rem;
}
.float-card:last-child .fc-front .fc-icon { flex-shrink: 0; }
.float-card:last-child .fc-front .fc-stat { font-size: 2.2rem; flex-shrink: 0; }
.float-card:last-child .fc-front .fc-label { margin: 0; font-size: 0.88rem; }

/* front */
.fc-front {
  position: absolute; inset: 0;
  padding: 1rem 1.1rem 1rem;
  display: flex; flex-direction: column; gap: 0.15rem;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.float-card:hover .fc-front {
  opacity: 0; transform: translateY(-8px); pointer-events: none;
}

.fc-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(77,247,154,0.1);
  border: 1px solid rgba(77,247,154,0.2);
  display: grid; place-items: center;
  color: var(--green); margin-bottom: 0.15rem; flex-shrink: 0;
}

.fc-stat {
  font-size: 1.55rem; font-weight: 800;
  line-height: 1.15; letter-spacing: -0.04em;
  padding-bottom: 0.15em;
  background: linear-gradient(100deg, var(--gold) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex; align-items: baseline; gap: 0.4em; flex-wrap: wrap;
}
.fc-strike {
  font-size: 0.5em; font-weight: 600;
  text-decoration: line-through; opacity: 0.45;
  -webkit-text-fill-color: rgba(255,255,255,0.4);
}
.fc-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500;
}
.fc-tag {
  display: inline-block; margin-top: 0; align-self: flex-start;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  background: var(--green-dim); color: var(--green);
  border: 1px solid rgba(77,247,154,0.25);
  border-radius: 20px; padding: 2px 8px;
}

/* hover hint */
.fc-hint {
  font-size: 0.68rem; font-weight: 500;
  color: rgba(255,255,255,0.28); white-space: nowrap;
  transition: opacity 0.2s;
}
.float-card:hover .fc-hint { opacity: 0; }

/* back */
.fc-back {
  position: absolute; inset: 0;
  padding: 1.25rem;
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.float-card:hover .fc-back {
  opacity: 1; transform: translateY(0);
}
.fc-back-title {
  font-size: 0.85rem; font-weight: 700; color: var(--green);
}
.fc-back-desc {
  font-size: 0.76rem; color: rgba(255,255,255,0.6); line-height: 1.6;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font); font-weight: 700; font-size: 0.88rem;
  border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  letter-spacing: -0.01em;
  padding: 0.825rem 1.75rem;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: scale(0.97) !important; }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 20px var(--gold-glow); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,106,240,0.38); }

.btn-ghost { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); transform: translateY(-1px); }

.btn-dk { background: var(--ink); color: var(--white); }
.btn-dk:hover { background: var(--ink-3); transform: translateY(-1px); box-shadow: var(--sh-lg); }

.btn-outline-dk { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline-dk:hover { border-color: var(--navy); background: rgba(27,58,92,0.04); }

/* ── TRUST BAR ────────────────────────────────────── */
.trust {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500;
  padding: 1rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* ── SECTION BASICS ───────────────────────────────── */
section { padding: 5.5rem 2rem; }
.wrap { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 1px; flex-shrink: 0; }
.eyebrow-gold { color: var(--blue-text); }
.eyebrow-gold::before { background: var(--gold); }
.eyebrow-white { color: rgba(255,255,255,0.5); }
.eyebrow-white::before { background: rgba(255,255,255,0.3); }

.h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 1rem;
}
.h2-dk { color: var(--ink); }
.h2-lt { color: var(--white); }
.sub { font-size: 1rem; line-height: 1.78; max-width: 540px; }
.sub-dk { color: var(--muted); }
.sub-lt { color: rgba(255,255,255,0.5); }

/* ── ABOUT / TEAM ─────────────────────────────────── */
.about-sec { background: var(--offwhite); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.about-left .h2 { margin-bottom: 1rem; }
.about-left .sub { margin-bottom: 2.25rem; }
.about-left .sub { max-width: 480px; }

.value-list { display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--t), transform var(--t);
  cursor: default;
}
.value-item:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.v-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--ink); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
}
.v-icon svg { width: 18px; height: 18px; }
.v-text h3 { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.v-text p { font-size: 0.845rem; color: var(--muted); line-height: 1.6; }

/* Team cards */
.team-grid { display: flex; flex-direction: column; gap: 1rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
  cursor: default;
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.team-card-inner { display: flex; align-items: center; gap: 1.25rem; padding: 1.375rem 1.5rem; }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; flex-shrink: 0;
  border: 3px solid transparent;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ta-f { background: #fff; color: var(--ink); border-color: rgba(59,106,240,0.3); }
.ta-d { background: linear-gradient(135deg, #2563EB, #60A5FA); color: var(--white); border-color: rgba(37,99,235,0.25); }
.ta-d img { object-fit: contain !important; padding: 6px; }
.ta-j { background: linear-gradient(135deg, #059669, #34D399); color: var(--white); border-color: rgba(5,150,105,0.25); }
.ta-headshot { background: var(--white); border-color: var(--border); }
.ta-headshot img { object-fit: cover; object-position: center top; transform: scale(1.35); }
.team-info { flex: 1; min-width: 0; }
.team-right { display: flex; flex-direction: row; align-items: center; gap: 8px; flex-shrink: 0; }
.team-school-logo { width: 52px; height: 52px; object-fit: contain; }
.team-college { font-size: 0.68rem; color: var(--muted); white-space: nowrap; }
.team-name { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.team-role { font-size: 0.8rem; color: var(--muted); margin-bottom: 4px; }
.team-email {
  font-size: 0.78rem; color: var(--blue-text);
  text-decoration: none; font-weight: 500;
  transition: color var(--t);
}
.team-email:hover { color: var(--gold-lt); text-decoration: underline; }
.team-college {
  font-size: 0.74rem; color: var(--muted);
  padding: 2px 8px; border-radius: 4px;
  background: var(--smoke); border: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
}

/* ── SERVICES ─────────────────────────────────────── */
.services-sec { background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; margin: 0 auto; }

.svc-card {
  border-radius: var(--r-xl);
  padding: 2.25rem;
  position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
  cursor: default;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-dk { background: var(--ink); border: 1px solid rgba(255,255,255,0.07); }
.svc-dk:hover { box-shadow: var(--sh-xl); }
.svc-lt { background: var(--offwhite); border: 1px solid var(--border); }
.svc-lt:hover { box-shadow: var(--sh-lg); }

.svc-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--green) 80%, transparent); }

.svc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 1.25rem;
}
.svc-dk .svc-icon { background: var(--gold-dim); color: var(--gold-lt); }
.svc-lt .svc-icon { background: rgba(27,58,92,0.08); color: var(--navy); }
.svc-icon svg { width: 24px; height: 24px; }

.svc-tag {
  display: inline-block; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 5px; margin-bottom: 0.875rem;
}
.svc-dk .svc-tag { background: var(--gold-dim); color: var(--gold-lt); }
.svc-lt .svc-tag { background: rgba(27,58,92,0.08); color: var(--navy); }

.svc-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 0.5rem; line-height: 1.2; }
.svc-dk .svc-title { color: var(--white); }
.svc-lt .svc-title { color: var(--ink); }

.svc-desc { font-size: 0.855rem; line-height: 1.7; margin-bottom: 1.5rem; }
.svc-dk .svc-desc { color: rgba(255,255,255,0.52); }
.svc-lt .svc-desc { color: var(--muted); }

.svc-price { font-size: 2.2rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin-bottom: 2px; }
.svc-dk .svc-price { color: var(--white); }
.svc-lt .svc-price { color: var(--ink); }
.svc-price sub { font-size: 1rem; font-weight: 500; letter-spacing: 0; opacity: 0.6; }
.svc-plabel { font-size: 0.77rem; margin-bottom: 1.5rem; }
.svc-dk .svc-plabel { color: rgba(255,255,255,0.35); }
.svc-lt .svc-plabel { color: var(--muted); }

.svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.75rem; }
.svc-list li {
  font-size: 0.845rem; display: flex; align-items: flex-start; gap: 0.6rem;
  padding-bottom: 0.45rem;
}
.svc-dk .svc-list li { color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.06); }
.svc-lt .svc-list li { color: var(--muted); border-bottom: 1px solid var(--border); }
.svc-list li:last-child { border-bottom: none; padding-bottom: 0; }
.svc-list li svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 3px; }
.svc-dk .svc-list li svg { color: var(--green); }
.svc-lt .svc-list li svg { color: var(--navy); }

.svc-note {
  margin-top: 1.75rem; padding: 1.125rem 1.25rem;
  background: var(--smoke); border: 1px solid var(--border); border-radius: var(--r-lg);
  font-size: 0.82rem; color: var(--muted); line-height: 1.65; text-align: center;
  max-width: 820px; margin-left: auto; margin-right: auto;
}

/* ── PROCESS ──────────────────────────────────────── */
.process-sec { background: var(--ink); position: relative; overflow: hidden; }
.process-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(59,106,240,0.06) 0%, transparent 70%);
}
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-line {
  position: absolute; top: 27px; height: 1px;
  left: calc(12.5% + 27px); right: calc(12.5% + 27px);
  background: linear-gradient(90deg, var(--gold), var(--green));
  pointer-events: none;
}
.p-step { text-align: center; padding: 0 1rem; }
.p-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink-3); border: 1.5px solid rgba(59,106,240,0.28);
  display: grid; place-items: center;
  font-size: 1.15rem; font-weight: 800; color: var(--gold-lt);
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.p-step:hover .p-num { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: scale(1.1); }
.p-title { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.p-desc { font-size: 0.81rem; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── SOCIAL PROOF ─────────────────────────────────── */
.proof-sec {
  background: var(--ink-2);
  padding: 3rem 0;
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
}
.proof-bar {
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.proof-item {
  flex: 1; min-width: 260px;
}
.proof-stars {
  color: #F6C745; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.75rem;
}
.proof-quote {
  font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.65;
  font-style: italic; margin-bottom: 0.9rem;
}
.proof-author strong {
  display: block; font-size: 0.85rem; font-weight: 700; color: var(--white);
}
.proof-author span {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
.proof-author a { color: var(--gold-lt); text-decoration: none; }
.proof-author a:hover { text-decoration: underline; }
.proof-divider {
  width: 1px; height: 80px; background: var(--border-dk); flex-shrink: 0;
}
.proof-stats {
  display: flex; gap: 2.5rem;
}
.proof-stat-item { text-align: center; }
.proof-stat-num {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.7rem;
  color: var(--gold-lt); letter-spacing: -0.03em; line-height: 1;
}
.proof-stat-label {
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .proof-divider { display: none; }
  .proof-stats { justify-content: space-between; width: 100%; }
}

/* ── FOUNDING ─────────────────────────────────────── */
.founding-sec { background: var(--offwhite); }
.founding-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 900px; margin: 0 auto 2.5rem; }
.f-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: box-shadow var(--t), transform var(--t);
  cursor: default;
}
.f-card:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.f-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--ink); color: var(--green);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.f-icon svg { width: 20px; height: 20px; }
.f-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.f-card p { font-size: 0.855rem; color: var(--muted); line-height: 1.65; }

/* ── PRICING CALC ─────────────────────────────────── */
.calc-sec { background: var(--ink); }
.calc-sec .h2-dk { color: var(--white); }
.calc-sec .sub-dk { color: rgba(255,255,255,0.5); }
.calc-sec .eyebrow-gold { color: var(--green); }
.calc-sec .eyebrow-gold::before { background: var(--green); }
.calc-box {
  max-width: 660px; margin: 0 auto;
  background: #1a2540; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 2.25rem;
}
.calc-box h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.calc-box > p { font-size: 0.855rem; color: rgba(255,255,255,0.5); margin-bottom: 1.75rem; }
.calc-opt {
  display: flex; align-items: center; gap: 1rem; flex-wrap: nowrap;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--r-lg);
  margin-bottom: 0.75rem; cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  user-select: none;
}
.calc-opt > div:nth-child(2) { flex: 1; min-width: 0; }
.calc-opt > div:last-child { flex-shrink: 0; text-align: right; }
.calc-opt:hover { border-color: rgba(77,247,154,0.35); background: rgba(255,255,255,0.07); }
.calc-opt.on { border-color: var(--green); box-shadow: 0 0 0 3px rgba(77,247,154,0.12); background: rgba(77,247,154,0.06); }
.calc-chk {
  width: 20px; height: 20px; border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.2); background: transparent;
  display: grid; place-items: center; flex-shrink: 0;
  transition: border-color var(--t), background var(--t);
}
.calc-opt.on .calc-chk { background: var(--green); border-color: var(--green); }
.calc-chk svg { display: none; width: 12px; height: 12px; color: var(--ink); }
.calc-opt.on .calc-chk svg { display: block; }
.calc-label { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.calc-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.calc-price { font-size: 1rem; font-weight: 800; color: var(--green); white-space: nowrap; }
.calc-hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1.5rem 0; }
.calc-result { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.calc-total-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.calc-total-num { font-size: 2.25rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.calc-mo { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-sec { background: var(--offwhite); }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; gap: 1rem;
  font-family: var(--font); font-size: 0.93rem; font-weight: 700; color: var(--ink);
  text-align: left; transition: color var(--t);
}
.faq-btn:hover { color: var(--navy); }
.faq-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(27,58,92,0.07); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--navy);
  transition: background var(--t), border-color var(--t);
}
.faq-icon svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-icon { background: var(--ink); border-color: var(--ink); color: var(--white); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-body {
  font-size: 0.89rem; color: var(--muted); line-height: 1.78;
  max-height: 0; overflow: hidden; padding-bottom: 0;
  transition: max-height 0.35s var(--ease), padding 0.25s;
}
.faq-item.open .faq-body { max-height: 320px; padding-bottom: 1.375rem; }

/* ── CTA BANNER ───────────────────────────────────── */
.cta-sec {
  background: linear-gradient(135deg, var(--gold) 0%, #2dd4a0 100%);
  padding: 5.5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image:
    linear-gradient(rgba(0,0,0,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-sec .h2 { color: var(--ink); margin-left: auto; margin-right: auto; max-width: 560px; }
.cta-sec p { color: rgba(8,14,26,0.65); font-size: 1rem; max-width: 440px; margin: 0 auto 2.25rem; line-height: 1.75; }

/* ── CONTACT ──────────────────────────────────────── */
.contact-sec { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-intro { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.25rem; }
.c-detail {
  display: flex; gap: 0.875rem; align-items: flex-start;
  padding: 1.125rem 1.25rem;
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--t), transform var(--t);
  cursor: default;
}
.c-detail:hover { box-shadow: var(--sh); transform: translateY(-1px); }
.c-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--ink); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
}
.c-icon svg { width: 16px; height: 16px; }
.c-detail h3 { font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.c-detail p, .c-detail a { font-size: 0.845rem; color: var(--muted); text-decoration: none; }
.c-detail a { color: var(--gold); transition: color var(--t); }
.c-detail a:hover { color: var(--gold-lt); text-decoration: underline; }

.form-wrap {
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.25rem;
}
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-bottom: 0.375rem; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 0.78rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--font); font-size: 0.88rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--ink); box-shadow: 0 0 0 3px rgba(8,14,26,0.07);
}
.fg textarea { min-height: 160px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.92rem;
  background: var(--gold); color: var(--white);
  border: none; border-radius: 10px;
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background var(--t), transform var(--t), box-shadow var(--t);
  letter-spacing: -0.01em;
  box-shadow: 0 4px 18px rgba(59,106,240,0.35);
}
.form-submit:hover { background: #2d5cd6; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(59,106,240,0.5); }
.form-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }
.form-submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.form-ok {
  display: none; text-align: center; padding: 2rem 1.5rem;
  background: #ECFDF5; border-radius: var(--r-lg);
  font-size: 0.92rem; color: #065F46; line-height: 1.65;
}

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--ink); padding: 3.5rem 2rem 2rem; }
.foot-inner { max-width: 1180px; margin: 0 auto; }
.foot-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2.25rem; border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.75rem;
}
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.foot-icon { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; display: grid; place-items: center; }
.foot-icon img { width: 100%; height: 100%; object-fit: contain; display: block; mix-blend-mode: screen; }
.foot-name { font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
.foot-name span { color: var(--gold-lt); }
.foot-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.foot-links { display: flex; gap: 0.15rem; flex-wrap: wrap; }
.foot-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  text-decoration: none; padding: 0.35rem 0.75rem; border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.foot-links a:hover { color: var(--gold-lt); background: rgba(255,255,255,0.05); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.foot-copy { font-size: 0.76rem; color: rgba(255,255,255,0.6); }
.foot-team { display: flex; align-items: center; gap: 0.5rem; }
.foot-avatars { display: flex; }
.foot-av {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--ink); margin-left: -5px;
  display: grid; place-items: center; font-size: 0.52rem; font-weight: 800;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}
.foot-av:first-child { margin-left: 0; }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.35; }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── LIVE NOTIFICATION TOAST ──────────────────────── */
#liveToast {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  background: rgba(8,14,26,0.96);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  min-width: 280px; max-width: 320px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(20px); opacity: 0;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
#liveToast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 800;
}
.toast-body { flex: 1; min-width: 0; }
.toast-name { font-size: 0.84rem; font-weight: 700; color: var(--white); }
.toast-name span { color: rgba(255,255,255,0.45); font-weight: 400; }
.toast-msg { font-size: 0.77rem; color: rgba(255,255,255,0.5); margin-top: 1px; }
.toast-time { font-size: 0.7rem; color: var(--gold); font-weight: 600; white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
  html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 980px) {
  nav { top: 10px; left: 10px; right: 10px; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 110px 1.5rem 4rem; }
  .cta-sec { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem 1.75rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-mockup-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .process-line { display: none; }
  .founding-grid { grid-template-columns: 1fr; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(8,14,26,0.97); backdrop-filter: blur(16px);
    border: 1px solid var(--border-dk); border-radius: 14px;
    padding: 1rem 1.25rem; gap: 0.2rem; box-shadow: var(--sh-xl);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .trust { flex-wrap: wrap; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 50%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  section { padding: 3rem 1.125rem; }
  .hero { padding: 90px 1.125rem 3rem; min-height: unset; }
  .cta-sec { padding: 3rem 1.125rem; }
  footer { padding: 2.5rem 1.125rem 1.5rem; }
  .hero-h1 { font-size: 2rem; line-height: 1.15; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 1.5rem; }
  .h2 { font-size: 1.7rem; }
  .process-steps { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .foot-top { flex-direction: column; }
  nav { height: 56px; }
  .trust-item { width: 100%; padding: 0.75rem 1rem; }
  .calc-box { padding: 1.375rem; }
  .form-wrap { padding: 1.375rem; }
  .svc-card { padding: 1.5rem; }
  .team-college { display: none; }
  .founding-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  #liveToast { left: 12px; right: 12px; min-width: unset; max-width: unset; }
}

/* ── ANNOUNCEMENT BAR (CMS-toggled promo) ─────────── */
#announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 250;
  background: linear-gradient(90deg, var(--gold), #2dd4a0); color: var(--ink);
  font-size: 0.82rem; font-weight: 700; letter-spacing: -0.01em;
  text-align: center; padding: 8px 44px 8px 16px;
  line-height: 1.4;
}
#announcement-bar .ann-close {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--ink);
  font-size: 1.1rem; line-height: 1; padding: 4px; opacity: 0.6;
}
#announcement-bar .ann-close:hover { opacity: 1; }
body.has-announcement nav { top: 50px; }

/* ── FOOTER SOCIAL ────────────────────────────────── */
.foot-social { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dk);
  transition: color var(--t), background var(--t), transform var(--t), border-color var(--t);
}
.foot-social a:hover { color: var(--ink); background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.foot-social svg { width: 17px; height: 17px; }

/* ── OUR WORK SECTION ─────────────────────────────── */
.work-sec { background: var(--offwhite); }

.work-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem;
}
.wf-btn {
  font-family: var(--font); font-size: 0.82rem; font-weight: 700;
  padding: 0.45rem 1.1rem; border-radius: 50px; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--white); color: var(--muted);
  transition: all var(--t) var(--ease); letter-spacing: -0.01em;
}
.wf-btn:hover { border-color: var(--navy); color: var(--navy); }
.wf-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

.work-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--sh-xl); }

/* Browser mockup */
.work-mockup-wrap {
  background: var(--ink-2); padding: 1.75rem 1.5rem 0; overflow: hidden;
}
.work-mockup {
  border-radius: 10px 10px 0 0; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  transform: perspective(900px) rotateX(4deg);
  transform-origin: center bottom;
  transition: transform 0.4s var(--ease);
}
.work-card:hover .work-mockup { transform: perspective(900px) rotateX(0deg); }

.wm-chrome {
  background: #1e2533; padding: 9px 12px;
  display: flex; align-items: center; gap: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wm-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.wm-bar {
  flex: 1; background: rgba(255,255,255,0.07); border-radius: 4px;
  height: 18px; margin-left: 8px; font-size: 0.63rem;
  color: rgba(255,255,255,0.32); display: flex; align-items: center;
  padding: 0 9px; font-family: monospace; overflow: hidden; white-space: nowrap;
}
.wm-screen {
  aspect-ratio: 16 / 10; overflow: hidden;
  background: #f0ede8; position: relative;
}
.wm-screen img {
  width: 100%; height: auto; display: block;
  animation: wm-scroll 16s ease-in-out infinite;
}
.work-card:hover .wm-screen img,
.work-mockup-wrap:hover .wm-screen img {
  animation-play-state: paused;
}
@keyframes wm-scroll {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-92%); }
  60%  { transform: translateY(-92%); }
  95%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.wm-screen.wm-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ink-2), var(--navy));
}
.wm-screen.wm-placeholder::after {
  content: 'Coming soon';
  font-family: var(--font); font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase;
}

/* Card body */
.work-card-body { padding: 1.375rem; }
.work-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px;
  border-radius: 50px; background: var(--green-dim); color: var(--green);
  border: 1px solid rgba(77,247,154,0.25); margin-bottom: 0.65rem;
}
.work-name {
  font-size: 1.1rem; font-weight: 800; color: var(--ink);
  letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 0.25rem;
}
.work-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.76rem; color: var(--muted); margin-bottom: 0.6rem;
}
.work-desc {
  font-size: 0.835rem; color: var(--muted); line-height: 1.68; margin-bottom: 1rem;
}
.work-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1rem; }
.work-chip {
  font-size: 0.68rem; font-weight: 600; padding: 2px 7px; border-radius: 4px;
  background: var(--smoke); color: var(--muted); border: 1px solid var(--border);
}
.work-cta {
  font-size: 0.8rem; padding: 0.5rem 1rem; width: 100%; justify-content: center;
  display: inline-flex; align-items: center; gap: 5px;
}
.work-empty {
  text-align: center; padding: 3rem; font-size: 0.92rem; color: var(--muted);
}
.card-testimonial {
  margin: 0.9rem 0 1rem;
  padding: 0.85rem 1rem;
  background: var(--offwhite);
  border-left: 3px solid var(--gold-lt);
  border-radius: 0 var(--r) var(--r) 0;
}
.card-testimonial-stars {
  color: #F6C745; font-size: 0.8rem; letter-spacing: 1.5px; margin-bottom: 0.4rem;
}
.card-testimonial-quote {
  font-size: 0.82rem; line-height: 1.55; font-style: italic;
  color: var(--ink); margin-bottom: 0.4rem;
}
.card-testimonial-author {
  font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }

/* mockup wrap as a link */
a.work-mockup-wrap { display: block; text-decoration: none; cursor: pointer; }
a.work-mockup-wrap:hover .wm-bar { color: rgba(255,255,255,0.6); }

/* ── FOUNDING CLIENT SALE POPUP ───────────────────────── */
.fb-popup {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1100;
  width: 300px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #2a1200 0%, #3d1a00 60%, #2a0d00 100%);
  border: 1px solid rgba(255,120,30,0.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,120,30,0.2), 0 0 60px rgba(255,120,30,0.15);
  padding: 1.4rem 1.25rem 1.25rem;
  animation: fb-pop-in 0.6s cubic-bezier(0.22,1,0.36,1) 1.5s both;
}
@keyframes fb-pop-in {
  from { transform: translateY(30px) scale(0.92); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}
.fb-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,120,30,0.25) 0%, transparent 70%);
}
.fb-close {
  position: absolute; top: 0.6rem; right: 0.75rem;
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 4px;
  transition: color 0.15s;
}
.fb-close:hover { color: rgba(255,255,255,0.8); }
.fb-top {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.85rem;
}
.fb-fire { font-size: 1.1rem; animation: fb-shake 1.2s ease-in-out infinite; }
@keyframes fb-shake {
  0%,100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}
.fb-badge {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: #fff; padding: 3px 10px; border-radius: 50px;
  animation: fb-pulse 2s ease-in-out infinite;
}
@keyframes fb-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,120,30,0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(255,120,30,0); }
}
.fb-headline {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.fb-pricing {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.fb-was {
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.fb-now {
  font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -0.03em;
  animation: fb-glow 1.8s ease-in-out infinite alternate;
}
@keyframes fb-glow {
  from { text-shadow: 0 0 6px rgba(255,120,30,0.4); }
  to   { text-shadow: 0 0 20px rgba(255,120,30,1), 0 0 40px rgba(255,120,30,0.4); }
}
.fb-tag {
  font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600;
}
.fb-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55;
  margin-bottom: 1rem;
}
.fb-cta {
  display: block; text-align: center; text-decoration: none;
  background: var(--gold); color: #fff;
  font-size: 0.85rem; font-weight: 700; padding: 0.7rem 1rem;
  border-radius: 8px; margin-bottom: 0.75rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(255,120,30,0.4);
}
.fb-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,120,30,0.6); }
.fb-urgency {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; font-size: 0.71rem; color: rgba(255,255,255,0.4); font-weight: 600;
}
.fb-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10b981; flex-shrink: 0;
  animation: fb-blink 1.4s ease-in-out infinite;
}
@keyframes fb-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
@media (max-width: 480px) {
  .fb-popup { right: 1rem; left: 1rem; width: auto; bottom: 1rem; }
}
