/* ============================================================
   D3 Digital Media — Who We Serve page
   Self-contained — design tokens match the homepage.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --sky: #10dde0; --sky-bright: #14e8eb; --sky-deep: #0a8a8c;
  --sky-soft: rgba(16, 221, 224, 0.12); --sky-glow: rgba(16, 221, 224, 0.35);
  --bg: #050608; --bg-card: #0c0e12; --bg-elevated: #11141a; --bg-soft: #161922;
  --border: #1c2029; --border-strong: #2a2f3a;
  --text: #f4f6f8; --text-muted: #dde3ea; --text-dim: #b8c0c8;
  --p-w: #10dde0; --p-a: #f5b942; --p-v: #4ade80; --p-e: #fb7185; --p-s: #a78bfa;
  --r-btn: 4px; --r-card: 14px; --r-pill: 999px;
  --t-fast: .18s; --t-medium: .32s; --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1280px; --gutter: clamp(20px, 4vw, 56px);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Override Divi inline h1-h6 { color:#333 } — see home-d3v0290.css for full notes */
#top h1, #top h2, #top h3, #top h4, #top h5, #top h6 { color: var(--text); }

#top, #top * { box-sizing: border-box; }
#top {
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
#top img, #top svg { display: block; max-width: 100%; }
#top a { color: inherit; text-decoration: none; }
#top ::selection { background: var(--sky); color: #000; }

#top .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
#top .section { position: relative; padding: clamp(80px, 12vw, 140px) 0; }

#top .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sky);
}
#top .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--sky); }
#top .eyebrow-num {
  font-family: var(--body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--text-dim);
}
#top .h-section {
  font-family: var(--display); font-weight: 700;
  font-variation-settings: 'opsz' 96;
  letter-spacing: -0.018em; line-height: 1.05;
  font-size: clamp(36px, 5vw, 64px);
  text-wrap: balance; color: #ffffff;
}
#top .accent { color: var(--sky); }
#top .italic { font-style: italic; }
#top .lede {
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55;
  color: var(--text-muted); max-width: 60ch; text-wrap: pretty;
}

#top .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; font: inherit; font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--r-btn); border: 1px solid transparent;
  transition: all var(--t-fast) var(--ease); cursor: pointer;
}
#top .btn--primary { background: var(--sky); color: #000; }
#top .btn--primary:hover {
  background: var(--sky-bright); transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--sky-glow);
}
#top .btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
#top .btn--ghost:hover { border-color: var(--sky); color: var(--sky); }
#top .fade-in { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
#top .wws-hero {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0 clamp(48px, 8vh, 96px);
  overflow: hidden; background: var(--bg);
}
#top .wws-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 25%, var(--sky-glow), transparent 70%),
    radial-gradient(ellipse 70% 50% at 10% 95%, rgba(16, 221, 224, 0.08), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
#top .wws-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(28,32,41,0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(28,32,41,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.5; pointer-events: none;
}
#top .wws-hero .container { position: relative; z-index: 1; }
#top .wws-hero__chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky); background: var(--sky-soft);
  margin-bottom: 24px;
}
#top .wws-hero__chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sky); box-shadow: 0 0 12px var(--sky);
}
#top .wws-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.025em; line-height: 1.02;
  font-size: clamp(48px, 7vw, 96px);
  text-wrap: balance; color: #ffffff;
  margin-bottom: 24px;
  max-width: 16ch;
}
#top .wws-hero h1 .accent { font-style: italic; font-weight: 600; color: var(--sky); }
#top .wws-hero__sub {
  font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55;
  color: var(--text-muted); max-width: 64ch;
  margin-bottom: 20px; text-wrap: pretty;
}
#top .wws-hero__sub strong { color: #ffffff; font-weight: 600; }

/* ============================================================
   ICP CARD — the core definition
   ============================================================ */
#top .icp { background: var(--bg); border-top: 1px solid var(--border); }
#top .icp__head { max-width: 800px; margin-bottom: 48px; }
#top .icp__head .h-section { margin-top: 18px; margin-bottom: 18px; }
#top .icp__card {
  background:
    linear-gradient(180deg, rgba(16,221,224,0.06), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--sky);
  border-radius: var(--r-card);
  padding: clamp(36px, 5vw, 64px);
  box-shadow: 0 30px 80px -30px var(--sky-glow);
}
#top .icp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
}
#top .icp__row {
  display: flex; flex-direction: column; gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
#top .icp__row:last-child,
#top .icp__row:nth-last-child(2):nth-child(odd) { border-bottom: none; padding-bottom: 0; }
#top .icp__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sky);
}
#top .icp__value {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2;
  letter-spacing: -0.01em; color: #ffffff;
}
#top .icp__detail {
  font-size: 14px; line-height: 1.55;
  color: var(--text-muted);
}

/* ============================================================
   INDUSTRIES — 5 pillar cards
   ============================================================ */
#top .industries { background: var(--bg-card); }
#top .industries__head { max-width: 800px; margin-bottom: 56px; }
#top .industries__head .h-section { margin-top: 18px; margin-bottom: 18px; }
#top .industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#top .industry-card {
  --ic: var(--sky);
  padding: 36px 24px 32px;
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--t-medium) var(--ease);
}
#top .industry-card:nth-child(3n+1) { border-left: none; }
#top .industry-card:nth-child(n+4) { border-top: 1px solid var(--border); }
#top .industry-card:hover { background: var(--bg); }
#top .industry-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--ic);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-medium) var(--ease);
}
#top .industry-card:hover::before { transform: scaleX(1); }
#top .industry-card__icon {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px; line-height: 1;
  color: var(--ic); margin-bottom: 16px;
}
#top .industry-card__name {
  font-family: var(--display); font-weight: 600;
  font-size: 20px; letter-spacing: -0.005em;
  margin-bottom: 4px; color: #ffffff;
}
#top .industry-card__sub {
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px;
}
#top .industry-card__desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
}

/* ============================================================
   WHY — Why founder-led + Why this size band
   ============================================================ */
#top .why { background: var(--bg); }
#top .why__head { max-width: 800px; margin-bottom: 48px; }
#top .why__head .h-section { margin-top: 18px; margin-bottom: 18px; }
#top .why__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
#top .why__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 44px);
}
#top .why__card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em; line-height: 1.15;
  margin-bottom: 14px; color: #ffffff;
}
#top .why__card h3 .accent { color: var(--sky); font-style: italic; }
#top .why__card p {
  font-size: 15px; line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-wrap: pretty;
}
#top .why__card p:last-child { margin-bottom: 0; }
#top .why__card p strong { color: #ffffff; font-weight: 600; }
#top .why__card em { font-style: italic; color: var(--sky); font-weight: 500; }

/* ============================================================
   NOT — Who we DON'T serve
   ============================================================ */
#top .wws-not { background: var(--bg-card); }
#top .wws-not__head { max-width: 700px; margin-bottom: 48px; }
#top .wws-not__head .h-section {
  margin-top: 18px; margin-bottom: 18px;
  text-decoration: line-through;
  text-decoration-color: rgba(251, 113, 133, 0.4);
  text-decoration-thickness: 1px;
}
#top .wws-not__head .h-section .accent { text-decoration: none; }
#top .wws-not__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
#top .wws-not__item {
  background: var(--bg-card);
  padding: 28px 32px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px; align-items: start;
}
#top .wws-not__x {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid #fb7185;
  color: #fb7185;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
}
#top .wws-not__item h4 {
  font-family: var(--display); font-weight: 600;
  font-size: 18px; margin-bottom: 6px;
  letter-spacing: -0.005em; color: #ffffff;
}
#top .wws-not__item p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   CLIENTS strip
   ============================================================ */
#top .wws-clients { background: var(--bg); }
#top .wws-clients__head { margin-bottom: 36px; }
#top .wws-clients__head .h-section { margin-top: 18px; margin-bottom: 18px; }
#top .wws-clients__list {
  display: flex; flex-wrap: wrap;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
#top .wws-clients__list li {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
  padding: 22px 28px 22px 22px;
  letter-spacing: -0.015em;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex: 1 0 calc(33.333% - 1px);
  display: flex; align-items: center;
  transition: color var(--t-fast), background var(--t-fast);
  color: #ffffff;
}
#top .wws-clients__list li:hover { color: var(--sky); background: var(--bg-card); }
#top .wws-clients__list li em {
  font-style: italic; color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#top .wws-final {
  background: var(--bg);
  position: relative; overflow: hidden;
  text-align: center;
}
#top .wws-final::before {
  content: ''; position: absolute;
  inset: -50% -10% auto auto;
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, var(--sky-glow), transparent 60%);
  filter: blur(80px); pointer-events: none; z-index: 0;
}
#top .wws-final .container { position: relative; z-index: 1; }
#top .wws-final__inner { max-width: 800px; margin: 0 auto; }
#top .wws-final h2 { margin: 16px 0 22px; }
#top .wws-final .lede { margin: 0 auto 32px; }
#top .wws-final__buttons {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #top .icp__grid { grid-template-columns: 1fr; }
  #top .industries__grid { grid-template-columns: repeat(2, 1fr); }
  #top .industry-card { border-left: none; border-top: 1px solid var(--border); }
  #top .industry-card:nth-child(odd) { border-right: 1px solid var(--border); }
  #top .why__cols { grid-template-columns: 1fr; gap: 22px; }
  #top .wws-not__list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  #top .industries__grid { grid-template-columns: 1fr; }
  #top .wws-clients__list li { flex: 1 0 calc(50% - 1px); font-size: 18px; padding: 16px 12px; }
}
