:root {
  --bg: #071311;
  --bg-soft: #0d1f1c;
  --panel: rgba(13, 31, 28, 0.72);
  --panel-strong: rgba(17, 42, 38, 0.92);
  --line: rgba(164, 214, 198, 0.14);
  --text: #edf7f2;
  --muted: #a9beb6;
  --accent: #7af0bf;
  --accent-strong: #41d799;
  --accent-warm: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(65, 215, 153, 0.22), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(255, 209, 102, 0.15), transparent 22%),
    linear-gradient(180deg, #071311 0%, #071715 42%, #05100f 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 240, 191, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 240, 191, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 90%);
  pointer-events: none;
  opacity: 0.45;
  z-index: -2;
}

.aurora {
  position: fixed;
  inset: -10%;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.aurora span {
  position: absolute;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  animation: aurora-float 28s ease-in-out infinite;
}

.aurora span:nth-child(1) {
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  animation-duration: 26s;
}

.aurora span:nth-child(2) {
  top: 18%;
  right: -14%;
  background: radial-gradient(circle, var(--accent-warm), transparent 65%);
  animation-duration: 32s;
  animation-delay: -8s;
}

.aurora span:nth-child(3) {
  bottom: -20%;
  left: 28%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-strong), transparent 65%);
  animation-duration: 36s;
  animation-delay: -16s;
}

@keyframes aurora-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 5%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora span { animation: none; }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 19, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 17, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .header-bar {
  padding: 14px 0;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(122, 240, 191, 0.18), rgba(255, 209, 102, 0.16));
  border: 1px solid rgba(122, 240, 191, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #04100e;
  box-shadow: 0 14px 30px rgba(122, 240, 191, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .button-primary {
    animation: none;
  }
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.hero,
.page-hero {
  padding: 96px 0 72px;
}

.page-hero .container {
  max-width: 980px;
}

.hero-grid,
.contact-wrap,
.showcase-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122, 240, 191, 0.18);
  background: rgba(122, 240, 191, 0.08);
  color: #d9f8ec;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1,
h2,
h3,
.display {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  margin-bottom: 22px;
}

.page-hero h1 {
  max-width: 12ch;
}

.hero-copy h1 span,
.page-hero h1 span,
.accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-warm), var(--accent-strong), var(--accent));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 8s ease-in-out infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 span,
  .page-hero h1 span,
  .accent {
    animation: none;
  }
}

.hero-copy p,
.page-hero p,
.section-heading p,
.card p,
.body-copy {
  color: var(--muted);
  line-height: 1.8;
}

.page-hero p,
.body-copy {
  max-width: 70ch;
}

.hero-facts,
.cards-3,
.cards-4,
.stats-grid,
.faq-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.hero-facts,
.cards-3,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.hero-panel,
.hero-fact,
.contact-panel,
.footer-panel,
.stat-card,
.faq-item,
.testimonial {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 28px;
}

.card {
  position: relative;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--accent-warm));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 240, 191, 0.32);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(122, 240, 191, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-media {
  margin: -26px -26px 20px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 400ms ease;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
  background: linear-gradient(145deg, rgba(122, 240, 191, 0.18), rgba(255, 209, 102, 0.16));
  border: 1px solid rgba(122, 240, 191, 0.2);
  filter: grayscale(1) brightness(1.6);
  transition: transform 220ms ease;
}

.card:hover .feature-icon {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .card { transition: none; }
  .card:hover { transform: none; }
}

.card,
.hero-panel,
.contact-panel,
.footer-panel,
.stat-card,
.faq-item,
.testimonial {
  padding: 26px;
}

.card a,
.hero-panel a,
.contact-panel a,
.faq-answer a,
.footer-links a {
  color: var(--accent);
}

.card a:hover,
.hero-panel a:hover,
.contact-panel a:hover,
.faq-answer a:hover,
.footer-links a:hover {
  color: #c6ffe7;
}

.hero-fact {
  padding: 18px;
}

.hero-panel {
  background:
    radial-gradient(circle at top right, rgba(122, 240, 191, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(17, 42, 38, 0.92), rgba(8, 20, 18, 0.94));
}

.panel-kicker {
  color: var(--accent-warm);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(122, 240, 191, 0.08);
  color: #d7f9ea;
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(122, 240, 191, 0.12);
}

.hero-fact strong,
.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.hero-fact span,
.stat-card span {
  color: var(--muted);
}

.section {
  padding: 68px 0;
}

.compact-section {
  padding: 40px 0 24px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading > div:first-child {
  flex: 1 1 56%;
  max-width: 620px;
}

.section-heading > p {
  flex: 1 1 36%;
  max-width: 440px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
  line-height: 1.05;
  max-width: none;
}

.list,
.footer-links,
.contact-list {
  display: grid;
  gap: 12px;
}

.list-item,
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #dbede5;
  line-height: 1.7;
}

.list-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 9px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-grid,
.case-grid,
.resource-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.case-card,
.resource-card,
.cta-strip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 24px;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(122, 240, 191, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(17, 42, 38, 0.88), rgba(8, 20, 18, 0.92));
}

.cta-strip p {
  max-width: 68ch;
}

.meta-note {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.8;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8e9e2;
  font-size: 0.8rem;
}

.split-grid,
.contact-wrap,
.showcase-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: #dcebe5;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(122, 240, 191, 0.42);
  box-shadow: 0 0 0 4px rgba(122, 240, 191, 0.08);
}

.form-status {
  min-height: 24px;
  font-size: 0.92rem;
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: #ff9f80;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-question button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 220ms ease, margin-top 220ms ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  margin-top: 12px;
}

.testimonial small,
.footer small,
.muted {
  color: rgba(169, 190, 182, 0.78);
}

.footer {
  padding: 0 0 40px;
}

.footer-panel h3,
.card h3,
.hero-panel h2,
.contact-panel h2 {
  margin-bottom: 12px;
}

.footer small {
  display: block;
  margin-top: 24px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .hero-facts,
  .cards-3,
  .cards-4,
  .stats-grid,
  .faq-grid,
  .testimonial-grid,
  .split-grid,
  .contact-wrap,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .case-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-bar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 44px;
  }

  .hero-grid,
  .hero-facts,
  .cards-3,
  .cards-4,
  .stats-grid,
  .faq-grid,
  .testimonial-grid,
  .split-grid,
  .contact-wrap,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .case-grid,
  .resource-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .card,
  .hero-panel,
  .contact-panel,
  .footer-panel,
  .stat-card,
  .faq-item,
  .testimonial {
    padding: 22px;
  }
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee-track span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.highlight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 24px;
  padding: 24px;
  text-align: left;
  transition: transform 260ms ease, border-color 260ms ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 240, 191, 0.32);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(122, 240, 191, 0.18), rgba(255, 209, 102, 0.16));
  border: 1px solid rgba(122, 240, 191, 0.2);
  filter: grayscale(1) brightness(1.6);
}

@media (max-width: 1080px) {
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hex-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 48px 20px 30px;
  position: relative;
}

.hex-node {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  z-index: 2;
}

.hex-shape {
  width: 84px;
  height: 84px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: linear-gradient(160deg, rgba(122, 240, 191, 0.12), rgba(8, 20, 18, 0.9));
  border: 1px solid rgba(122, 240, 191, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  animation: hex-glow 4.8s ease-in-out infinite;
}

.hex-node:nth-child(1) .hex-shape { animation-delay: 0s; }
.hex-node:nth-child(2) .hex-shape { animation-delay: 0.6s; }
.hex-node:nth-child(3) .hex-shape { animation-delay: 1.2s; }
.hex-node:nth-child(4) .hex-shape { animation-delay: 1.8s; }
.hex-node:nth-child(5) .hex-shape { animation-delay: 2.4s; }

@keyframes hex-glow {
  0%, 100% {
    border-color: rgba(122, 240, 191, 0.3);
    background: linear-gradient(160deg, rgba(122, 240, 191, 0.12), rgba(8, 20, 18, 0.9));
    filter: grayscale(1) brightness(1.5) drop-shadow(0 0 0 rgba(122, 240, 191, 0));
  }
  35% {
    border-color: rgba(122, 240, 191, 0.85);
    background: linear-gradient(160deg, rgba(122, 240, 191, 0.4), rgba(8, 20, 18, 0.9));
    filter: grayscale(1) brightness(1.5) drop-shadow(0 0 14px rgba(122, 240, 191, 0.7));
  }
  65% {
    border-color: rgba(122, 240, 191, 0.3);
    background: linear-gradient(160deg, rgba(122, 240, 191, 0.12), rgba(8, 20, 18, 0.9));
    filter: grayscale(1) brightness(1.5) drop-shadow(0 0 0 rgba(122, 240, 191, 0));
  }
}

.hex-node span.hex-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  max-width: 12ch;
  line-height: 1.3;
}

.hex-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  position: relative;
  z-index: 1;
  background: repeating-linear-gradient(90deg, rgba(122, 240, 191, 0.35) 0 6px, transparent 6px 12px);
  align-self: center;
  margin: 0 -6px;
  overflow: visible;
}

.hex-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 3px rgba(122, 240, 191, 0.8);
  transform: translateY(-50%);
  animation: hex-pulse-travel 2.4s linear infinite;
}

.hex-connector:nth-of-type(2)::after { animation-delay: 0.6s; }
.hex-connector:nth-of-type(4)::after { animation-delay: 1.2s; }
.hex-connector:nth-of-type(6)::after { animation-delay: 1.8s; }

@keyframes hex-pulse-travel {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hex-shape, .hex-connector::after { animation: none; }
}

@media (max-width: 900px) {
  .hex-network {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hex-connector {
    display: none;
  }

  .hex-node {
    flex: 0 0 40%;
  }
}

@media (max-width: 760px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .marquee-track {
    animation-duration: 20s;
  }
}