/* Network26 v2 — polished MSP design system */
:root {
  --navy: #0b1220;
  --navy-2: #111827;
  --slate: #1e293b;
  --muted: #64748b;
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --teal-soft: #ccfbf1;
  --border: #e2e8f0;
  --surface: #f8fafc;
  --white: #ffffff;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 24px 48px -20px rgba(15, 23, 42, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--navy-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.logo-font {
  font-family: 'Orbitron', 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Typography */
.display {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.eyebrow::before {
  content: '';
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

.eyebrow.eyebrow-light {
  color: #5eead4;
}

.eyebrow.eyebrow-light::before {
  background: #2dd4bf;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.875rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.875rem 1.35rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 20px -12px rgba(20, 184, 166, 0.8);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  background: white;
  color: var(--navy-2);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: #99f6e4;
  background: #f0fdfa;
  color: var(--teal-dark);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

/* Legacy aliases used in chrome */
.teal-btn {
  background-color: var(--teal);
  color: white;
  transition: all 0.15s ease;
}
.teal-btn:hover {
  background-color: var(--teal-dark);
  transform: translateY(-1px);
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-link {
  color: #475569;
  transition: color 0.12s ease;
  font-weight: 500;
}
.nav-link:hover {
  color: #0f172a;
}
.nav-link.nav-link-active {
  color: var(--teal-dark);
  font-weight: 700;
}
.mobile-link.nav-link-active {
  color: var(--teal-dark);
  background: #f0fdfa;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(20, 184, 166, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, rgba(14, 165, 233, 0.14) 0%, transparent 50%),
    linear-gradient(145deg, #070b14 0%, #0f172a 48%, #132033 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.28), transparent 70%);
  filter: blur(10px);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #99f6e4;
}

.badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Cards & surfaces */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #99f6e4;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #5eead4;
}

/* Service / content tiles with photography */
.service-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.4s ease;
}

a.service-card:hover .service-card-thumb img,
.service-card:hover .service-card-thumb img {
  transform: scale(1.05);
}

.service-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent 55%);
  pointer-events: none;
}

.service-card.has-thumb {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card.has-thumb .service-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.icon-tile {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0fdfa, #ccfbf1);
  color: var(--teal-dark);
  border: 1px solid #99f6e4;
}

.stat-block {
  text-align: center;
  padding: 1.25rem 1rem;
}

.stat-value {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
}

.stat-label {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Trust strip */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
}

/* Process */
.step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: white;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  box-shadow: 0 8px 16px -8px rgba(20, 184, 166, 0.7);
}

/* Keep titles and body copy on one line across a row of step cards */
.step-cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .step-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .step-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step-card .step-number {
  margin-bottom: 1rem;
}
.step-card-title {
  min-height: 3.5rem;
  margin-bottom: 0.375rem;
}
@supports (grid-template-rows: subgrid) {
  .step-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    height: auto;
  }
  .step-card .step-number,
  .step-card-title {
    margin-bottom: 0;
  }
  .step-card-title {
    min-height: 0;
  }
}

/* Testimonial — sits on dark-band (footer navy) */
.testimonial-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.5rem;
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.04);
  backdrop-filter: blur(8px);
}

/*
 * Network texture on footer navy (#0b1220 / --navy).
 * Soft teal glows only — no 1px dot grid (reads as "speckles" on CTAs).
 */
.network-pattern {
  background-image:
    radial-gradient(ellipse 80% 60% at 18% 22%, rgba(20, 184, 166, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 82% 78%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 55% 45%, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Shared dark surface base (footer navy + soft teal glows) */
.dark-band,
.cta-panel,
.texture-box {
  position: relative;
  overflow: hidden;
  color: white;
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 18% 22%, rgba(20, 184, 166, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 82% 78%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 55% 45%, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
}

.dark-band::before,
.cta-panel::before,
.texture-box::before {
  content: none;
}

.dark-band > *,
.cta-panel > *,
.texture-box > * {
  position: relative;
  z-index: 1;
}

/* CTA panel — rounded final CTAs */
.cta-panel {
  border-radius: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.55);
}

/* Forms — explicit color so inputs stay readable inside .cta-panel (color: white) */
.form-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.875rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  outline: none;
  background: white;
  color: var(--navy-2);
  caret-color: var(--navy-2);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-input::placeholder {
  color: #94a3b8;
  opacity: 1;
}
.form-input:focus {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

/* Footer — solid navy (CTAs/bands use same base + soft network texture) */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.site-footer a {
  color: #cbd5e1;
  transition: color 0.12s ease;
}
.site-footer a:hover {
  color: #5eead4;
}

/* Page hero (inner pages) — same navy as footer / dark bands */
.page-hero,
.hero-bg {
  position: relative;
  overflow: hidden;
  color: white;
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 18% 22%, rgba(20, 184, 166, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 82% 78%, rgba(45, 212, 191, 0.07) 0%, transparent 50%);
}

.page-hero .hero-grid {
  opacity: 0.7;
}

/* Rounded dark textured box (reviews strip, final CTAs, etc.) */
.texture-box {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.5);
}

/* Photo heroes — same visual language as home */
.hero-photo {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: clamp(28rem, 62vh, 38rem);
  display: flex;
  align-items: center;
  background-color: #070b14;
}

.hero-photo--page {
  min-height: clamp(26rem, 56vh, 34rem);
}

.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.04);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 11, 20, 0.9) 0%, rgba(7, 11, 20, 0.72) 38%, rgba(7, 11, 20, 0.38) 68%, rgba(7, 11, 20, 0.5) 100%),
    linear-gradient(to top, rgba(7, 11, 20, 0.55) 0%, transparent 42%),
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(20, 184, 166, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.hero-photo-overlay--strong {
  background:
    linear-gradient(105deg, rgba(7, 11, 20, 0.92) 0%, rgba(7, 11, 20, 0.78) 42%, rgba(7, 11, 20, 0.45) 72%, rgba(7, 11, 20, 0.55) 100%),
    linear-gradient(to top, rgba(7, 11, 20, 0.5), transparent 45%);
}

.hero-photo-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-photo-content .display {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-photo-content .badge-pill {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Proof tile (home-style glass card in heroes) */
.hero-proof-tile {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.45);
}

.hero-proof-tile .icon-tile {
  background: rgba(20, 184, 166, 0.12) !important;
  border-color: rgba(45, 212, 191, 0.3) !important;
  color: #5eead4 !important;
}

.hero-proof-tile .border-t.flex {
  flex-wrap: wrap;
  row-gap: 0.75rem;
}

@media (max-width: 1023px) {
  .hero-proof-tile {
    margin-top: 1.25rem;
  }
}

/* Industry page layout */
.cs-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.cs-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #e2e8f0;
}

.cs-stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  text-align: center;
}

.cs-stat-value {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--navy-2);
  line-height: 1.1;
}

.cs-stat-label {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

.cs-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.cs-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.cs-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .cs-card-thumb img,
.card-hover:hover .cs-card-thumb img {
  transform: scale(1.04);
}

.cs-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.cs-approach-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.cs-approach-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cs-approach-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* network-pattern defined above with original soft teal texture */

/* Location maps */
/* In-article coverage map — compact figure, not a hero */
.location-map {
  background: var(--navy);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 22rem; /* ~352px — reads as supporting visual */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .location-map {
    margin-left: 0;
    margin-right: 0;
    max-width: 20rem; /* ~320px beside copy */
  }
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.location-map-caption {
  padding: 0.65rem 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(11, 18, 32, 0.98);
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Hub / card maps — full-bleed thumbs (not the compact in-article figure) */
.location-card-map {
  max-width: none;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.location-card-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .location-card-map img {
  transform: scale(1.04);
}

/* FAQ (location pages) */
.faq-item summary {
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-chevron {
  transition: transform 0.15s ease;
}

/* Utilities */
.container-wide {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Long-form legal / policy content */
.prose-n26 {
  color: #475569;
  font-size: 0.975rem;
  line-height: 1.7;
}

.prose-n26 > *:first-child {
  margin-top: 0;
}

.prose-n26 > *:last-child {
  margin-bottom: 0;
}

.prose-n26 p {
  margin: 0 0 1.1rem;
}

.prose-n26 h2 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #0f172a;
  margin: 2rem 0 0.75rem;
  padding-top: 0.35rem;
  border-top: 1px solid #e2e8f0;
}

.prose-n26 h2:first-of-type {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.prose-n26 ul {
  margin: 0 0 1.15rem;
  padding-left: 0;
  list-style: none;
}

.prose-n26 ul li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
  color: #475569;
}

.prose-n26 ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--teal);
}

.prose-n26 strong {
  color: #1e293b;
  font-weight: 600;
}

.prose-n26 a {
  color: var(--teal-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(15, 118, 110, 0.35);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.prose-n26 a:hover {
  color: #0d9488;
  text-decoration-color: rgba(13, 148, 136, 0.7);
}

.link-arrow {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.15s ease, color 0.15s ease;
}
.link-arrow:hover {
  color: #0d9488;
  gap: 0.45rem;
}

.divider-dot::before {
  content: '·';
  margin: 0 0.5rem;
  color: #cbd5e1;
}

/* Responsive section rhythm */
.section-pad {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-pad {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

/* First block after a trust strip — keep a breath, not a full section gap */
.section-pad--after-trust {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .section-pad--after-trust {
    padding-top: 2.5rem;
  }
}

/* Photo hero readability */
.hero-photo-content .text-slate-300 {
  color: #e2e8f0;
}
.hero-photo-content .section-title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
