/* ── Fonts ── */
@font-face {
  font-family: 'GeosansLight';
  src: url('/assets/fonts/GeosansLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeosansLight';
  src: url('/assets/fonts/GeosansLight-Oblique.ttf') format('truetype');
  font-weight: normal;
  font-style: oblique;
  font-display: swap;
}

@font-face {
  font-family: 'Opal';
  src: url('/assets/fonts/Opal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --bp-primary: #3EA5BE;
  --bp-primary-dark: #2d8a9e;
  --bp-primary-deeper: #1d6e82;
  --bp-light-blue: #DDEEF7;
  --bp-accent-warm: #5DBCD4;
  --bp-accent-cool: #2888A0;
  --bp-black: #000000;
  --bp-white: #FFFFFF;
  --bp-dark: #1a1a2e;
  --bp-dark-gray: #333333;
  --bp-mid-gray: #666666;
  --bp-light-gray: #F5F7F9;
  --bp-section-pad: 100px 0;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'GeosansLight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--bp-dark-gray);
  line-height: 1.7;
  background: var(--bp-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--bp-primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--bp-primary-dark); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 80px;
  transition: height 0.4s;
}
.navbar.scrolled .nav-logo {
  height: 60px;
}
.nav-logo.white { display: block; }
.nav-logo.color { display: none; }
.navbar.scrolled .nav-logo.white { display: none; }
.navbar.scrolled .nav-logo.color { display: block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bp-primary);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--bp-dark-gray); }
.navbar.scrolled .nav-links a:hover { color: var(--bp-primary); }

.nav-cta {
  background: var(--bp-white);
  color: var(--bp-primary) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(62, 165, 190, 0.3);
}
.nav-cta::after { display: none !important; }
.navbar.scrolled .nav-cta {
  background: var(--bp-primary);
  color: var(--bp-white) !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: background 0.3s, transform 0.3s;
  display: block;
}
.navbar.scrolled .nav-toggle span { background: var(--bp-dark-gray); }

/* ══════════════════════════════════════
   HERO — Gradient Mesh + Floating Blobs
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--bp-dark);
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Gradient mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-mesh .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: blobFloat 20s ease-in-out infinite;
}
.hero-mesh .blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #3EA5BE 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation-duration: 18s;
}
.hero-mesh .blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2888A0 0%, transparent 70%);
  top: 30%;
  right: -10%;
  animation-duration: 22s;
  animation-delay: -5s;
}
.hero-mesh .blob-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #1d6e82 0%, transparent 70%);
  bottom: -20%;
  left: 30%;
  animation-duration: 25s;
  animation-delay: -10s;
}
.hero-mesh .blob-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #5DBCD4 0%, transparent 70%);
  top: 10%;
  right: 25%;
  animation-duration: 20s;
  animation-delay: -8s;
}
.hero-mesh .blob-5 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(221, 238, 247, 0.4) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-duration: 16s;
  animation-delay: -3s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 40px) scale(1.08); }
}

/* Subtle grid overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  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: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-logo {
  width: 140px;
  margin-bottom: 40px;
  animation: heroFadeIn 1s ease-out;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.2));
}
.hero h1 {
  font-family: 'Opal', 'GeosansLight', sans-serif;
  font-size: 52px;
  font-weight: normal;
  color: white;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: heroFadeIn 1s ease-out 0.2s both;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: heroFadeIn 1s ease-out 0.4s both;
}
.hero-cta {
  display: inline-block;
  background: var(--bp-white);
  color: var(--bp-primary);
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: heroFadeIn 1s ease-out 0.6s both;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: var(--bp-primary-dark);
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}
.scroll-indicator svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.5); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════
   WAVE DIVIDERS
   ══════════════════════════════════════ */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.wave-divider.flip {
  transform: scaleY(-1);
}

/* ── Section Base ── */
.section {
  padding: var(--bp-section-pad);
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bp-primary);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Opal', 'GeosansLight', sans-serif;
  font-size: 40px;
  font-weight: normal;
  color: var(--bp-dark-gray);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--bp-mid-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   SERVICES — with gradient accent
   ══════════════════════════════════════ */
.services-section {
  background: var(--bp-white);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--bp-white);
  border: 1px solid #E8ECF0;
  border-radius: 16px;
  padding: 48px 36px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bp-primary), var(--bp-accent-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(62, 165, 190, 0.12);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bp-light-blue), rgba(62, 165, 190, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--bp-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: 'Opal', sans-serif;
  font-size: 22px;
  font-weight: normal;
  color: var(--bp-dark-gray);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 15px;
  color: var(--bp-mid-gray);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   AUDIENCE SECTIONS — with mesh accents
   ══════════════════════════════════════ */
.audience-section {
  padding: var(--bp-section-pad);
  position: relative;
  overflow: hidden;
}
/* Subtle floating gradient accent for nonprofit section */
.audience-section.nonprofit-bg {
  background: var(--bp-white);
}
.audience-section.nonprofit-bg::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 165, 190, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.audience-section.nonprofit-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(221, 238, 247, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.audience-section.business-bg {
  background: var(--bp-light-gray);
}
.audience-section.business-bg::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 165, 190, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -60px;
  pointer-events: none;
}

.audience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.audience-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-icon-wrap {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, var(--bp-light-blue) 0%, rgba(62, 165, 190, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.audience-icon-wrap svg {
  width: 120px;
  height: 120px;
  stroke: var(--bp-primary);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audience-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(62, 165, 190, 0.2);
  animation: spinSlow 40s linear infinite;
}
.audience-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px dashed rgba(62, 165, 190, 0.1);
  animation: spinSlow 60s linear infinite reverse;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.audience-content h2 {
  font-family: 'Opal', 'GeosansLight', sans-serif;
  font-size: 36px;
  font-weight: normal;
  color: var(--bp-dark-gray);
  margin-bottom: 20px;
}
.audience-content > p {
  font-size: 17px;
  color: var(--bp-mid-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}
.audience-points {
  list-style: none;
  margin-bottom: 36px;
}
.audience-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--bp-dark-gray);
  line-height: 1.6;
}
.point-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--bp-light-blue), rgba(62, 165, 190, 0.2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--bp-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audience-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--bp-primary), var(--bp-primary-dark));
  color: var(--bp-white);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.audience-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62, 165, 190, 0.35);
  color: var(--bp-white);
}

/* ══════════════════════════════════════
   VALUE STRIP — gradient background
   ══════════════════════════════════════ */
.value-strip {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.value-strip::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 165, 190, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.value-strip::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(93, 188, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -50px;
  pointer-events: none;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.value-item {
  padding: 24px;
}
.value-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--bp-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 16px;
}
.value-item h4 {
  font-family: 'Opal', sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: var(--bp-white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.value-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   CONTACT — gradient mesh accent
   ══════════════════════════════════════ */
.contact-section {
  padding: var(--bp-section-pad);
  background: var(--bp-light-gray);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 165, 190, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: -150px;
  pointer-events: none;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info h2 {
  font-family: 'Opal', 'GeosansLight', sans-serif;
  font-size: 40px;
  font-weight: normal;
  color: var(--bp-dark-gray);
  margin-bottom: 20px;
  line-height: 1.3;
}
.contact-info > p {
  font-size: 17px;
  color: var(--bp-mid-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--bp-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail span {
  font-size: 16px;
  color: var(--bp-dark-gray);
}
.contact-detail a {
  color: var(--bp-dark-gray);
}
.contact-detail a:hover { color: var(--bp-primary); }

.contact-form {
  background: var(--bp-white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bp-mid-gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #E0E4E8;
  border-radius: 10px;
  font-family: 'GeosansLight', sans-serif;
  font-size: 16px;
  color: var(--bp-dark-gray);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--bp-light-gray);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bp-primary);
  box-shadow: 0 0 0 3px rgba(62, 165, 190, 0.15);
  background: var(--bp-white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--bp-primary), var(--bp-primary-dark));
  color: var(--bp-white);
  border: none;
  border-radius: 40px;
  font-family: 'GeosansLight', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(62, 165, 190, 0.3);
}

/* ── Footer ── */
footer {
  background: var(--bp-dark);
  padding: 48px 0;
  text-align: center;
  position: relative;
}
.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}
footer p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
footer a {
  color: rgba(255,255,255,0.6);
}
footer a:hover { color: var(--bp-primary); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .audience-row { grid-template-columns: 1fr; gap: 40px; }
  .audience-row.reverse { direction: ltr; }
  .audience-visual { order: -1; }
  .audience-icon-wrap { width: 240px; height: 240px; }
  .audience-icon-wrap svg { width: 80px; height: 80px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 17px; }
  .section-header h2 { font-size: 32px; }
  .audience-content h2 { font-size: 30px; }
}

@media (max-width: 640px) {
  :root { --bp-section-pad: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .nav-links.open a {
    color: var(--bp-dark-gray);
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links.open .nav-cta {
    background: var(--bp-primary);
    color: var(--bp-white) !important;
    text-align: center;
    margin-top: 12px;
  }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 28px; }
  .hero-logo { width: 100px; }
  .hero-mesh .blob { filter: blur(60px); }
  .value-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-form { padding: 32px 24px; }
  .contact-info h2 { font-size: 32px; }
  .audience-icon-wrap { width: 180px; height: 180px; }
  .audience-icon-wrap svg { width: 64px; height: 64px; }
}
