/* 4utonomy — 4utonomy.com
   Environmental Intelligence for Autonomous Logistics */

:root {
  --bg: #05080d;
  --bg-2: #070c14;
  --surface: #0c131d;
  --surface-elevated: #111a26;
  --text: #eaf2fb;
  --text-muted: #93a4b8;
  --border: rgba(148, 197, 236, 0.1);
  --border-strong: rgba(148, 197, 236, 0.22);

  --accent: #22d3ee;         /* cyan — intelligence */
  --accent-2: #34d399;       /* emerald — safety */
  --accent-warn: #fbbf24;    /* amber — risk */
  --accent-soft: rgba(34, 211, 238, 0.12);
  --accent-glow: rgba(34, 211, 238, 0.4);

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 22px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(34, 211, 238, 0.14);

  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-h: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg);
  min-height: 100vh;
  padding-top: var(--header-h);
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- 3D canvas background ---- */
#scene-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

body.reduced-motion #scene-canvas {
  opacity: 0.4;
}

/* ---- Ambient glow + grid overlay ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 197, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 197, 236, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 15%, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  width: 60rem;
  height: 40rem;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.1), transparent 70%);
  filter: blur(20px);
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #04121a;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2.25rem);
  background: rgba(5, 8, 13, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.brand-text span {
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .brand-text {
    display: flex;
  }
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: var(--accent-soft);
}

.site-nav a.nav-cta {
  background: var(--accent);
  color: #04121a;
  font-weight: 600;
}

.site-nav a.nav-cta:hover {
  background: #4de3f4;
  color: #04121a;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(5, 8, 13, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
  }

  .site-header.nav-open .site-nav {
    max-height: 24rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.25rem;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ---- Layout ---- */
.wrap {
  width: min(75rem, 100% - 2rem);
  margin-inline: auto;
}

.wrap-narrow {
  width: min(58rem, 100% - 2rem);
  margin-inline: auto;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.lead-narrow {
  max-width: 44rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-inner {
  max-width: 52rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--accent-soft);
  margin: 0 0 1.5rem;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
  animation: pulse 2.4s var(--ease-out) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  margin: 0 0 1.4rem;
}

.hero .lead {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ---- Buttons ---- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.btn:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: var(--surface-elevated);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #04121a;
}

.btn-primary:hover {
  color: #04121a;
  box-shadow: 0 0 30px var(--accent-glow);
}

/* ---- Sections ---- */
.block {
  position: relative;
  padding: 5.5rem 0;
}

.block--surface {
  background: linear-gradient(180deg, rgba(12, 19, 29, 0.55), rgba(7, 12, 20, 0.85));
  border-block: 1px solid var(--border);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2.75rem;
}

.section-head {
  margin-bottom: 3rem;
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid--two { grid-template-columns: 1fr; }
.card-grid--three { grid-template-columns: 1fr; }
.card-grid--four { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 720px) {
  .card-grid--two { grid-template-columns: repeat(2, 1fr); }
  .card-grid--three { grid-template-columns: repeat(3, 1fr); }
  .card-grid--four { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  padding: 1.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--accent-soft);
  font-size: 1.5rem;
}

.card p:last-child {
  margin-bottom: 0;
}

/* ---- Hazard grid (What makes us different) ---- */
.hazard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.9rem;
}

.hazard {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.hazard:hover {
  border-color: rgba(251, 191, 36, 0.3);
  background: var(--surface-elevated);
}

.hazard .emoji {
  font-size: 1.4rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.hazard span:last-child {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
}

/* ---- Factor chips ---- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.chip {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---- Physical AI contrast panel ---- */
.contrast {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (min-width: 760px) {
  .contrast {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
  }
}

.contrast-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contrast-card .q-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contrast-card.old {
  opacity: 0.75;
}

.contrast-card.old .q-label { color: var(--text-muted); }

.contrast-card.new {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: var(--shadow-lift);
}

.contrast-card.new .q-label { color: var(--accent); }

.contrast-card .q-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}

.contrast-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
}

.result-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.result-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* ---- Industries grid ---- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
}

.industry {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.industry:hover {
  border-color: rgba(34, 211, 238, 0.28);
  transform: translateY(-3px);
}

.industry .emoji {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 0.75rem;
}

.industry h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.industry p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---- Capabilities checklist ---- */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 0.65rem 1.5rem;
}

.capability {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
}

.capability .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---- Product / Integrations ---- */
.product-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.integration-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.integration-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
}

.integration-list .badge {
  margin-left: auto;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.integration-list .ico {
  font-size: 1.3rem;
}

/* ---- Code snippet card ---- */
.code-card {
  background: #060b12;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.code-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.code-card-head .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2a3644;
}

.code-card-head .file {
  margin-left: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.code-card pre {
  margin: 0;
  padding: 1.35rem 1.4rem;
  overflow-x: auto;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #c6d4e4;
}

.code-card .tok-key { color: #7dd3fc; }
.code-card .tok-str { color: #6ee7b7; }
.code-card .tok-com { color: #5b6b7c; font-style: italic; }
.code-card .tok-fn  { color: #fbbf24; }

/* ---- Users list ---- */
.user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.6rem;
}

.user-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(12, 19, 29, 0.6);
  color: var(--text);
  font-size: 0.95rem;
}

.user-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---- Value contrast ---- */
.value-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-item {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.value-item .before {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.value-item .after {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
}

/* ---- CTA / Contact ---- */
.cta-panel {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 211, 238, 0.25);
  background:
    radial-gradient(ellipse at top left, rgba(34, 211, 238, 0.12), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(52, 211, 153, 0.1), transparent 55%),
    var(--surface);
  overflow: hidden;
  text-align: center;
}

.cta-panel h2 {
  margin-bottom: 1rem;
}

.cta-panel .lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.cta-email {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 1.75rem;
  word-break: break-all;
}

/* ---- Footer ---- */
.site-footer {
  padding: 3rem 0 3.5rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand-block img {
  height: 32px;
  margin-bottom: 1rem;
}

.footer-brand-block p {
  font-size: 0.9rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Toast ---- */
.toast-region {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 200;
  padding: 0.65rem 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.toast-region.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Scroll reveal ---- */
html.reveal-on .motion-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

html.reveal-on .motion-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.reveal-on .motion-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card:hover,
  .industry:hover {
    transform: none;
  }

  .hero-eyebrow .dot {
    animation: none;
  }
}
