:root {
  --bg: #061428;
  --bg-soft: #0b1e3c;
  --panel: #0d2446;
  --panel-soft: #102b52;
  --text: #f5f8ff;
  --muted: #b9c6dc;
  --line: rgba(245, 248, 255, 0.14);
  --line-strong: rgba(245, 248, 255, 0.22);
  --teal: #7bdff2;
  --amber: #ffd700;
  --violet: #6c5dd3;
  --magenta: #ff4d8d;
  --indigo: #4c6fff;
  --orange: #ff7a45;
  --ink: #07101f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1160px;
  --gutter: clamp(18px, 4vw, 40px);
  --hero-scale: 1.04;
  --hero-offset: 0px;
  --hero-aura-opacity: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(123, 223, 242, 0.1), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 215, 0, 0.09), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 11, 0.62);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.88);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(calc(100% - var(--gutter)), var(--max));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(132px, 15vw, 178px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.18);
}

.site-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(255, 215, 0, 0.28);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(255, 215, 0, 0.18);
}

.button-primary:hover {
  box-shadow: 0 20px 54px rgba(255, 215, 0, 0.28);
}

.button-secondary {
  background: rgba(244, 240, 232, 0.06);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(85, 214, 194, 0.44);
  background: rgba(85, 214, 194, 0.08);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 82vh;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(var(--hero-scale)) translateY(var(--hero-offset));
  filter: saturate(1.08) contrast(1.06);
  will-change: transform;
}

.hero-aura {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--hero-aura-opacity);
}

.hero-aura::before,
.hero-aura::after {
  content: "";
  position: absolute;
  top: 47%;
  right: clamp(20px, 10vw, 150px);
  width: clamp(250px, 35vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 232, 0.2);
  box-shadow: 0 0 90px rgba(85, 214, 194, 0.12), inset 0 0 48px rgba(246, 185, 107, 0.08);
  transform: translateY(-50%);
  animation: ringBreathe 7s ease-in-out infinite;
}

.hero-aura::after {
  right: clamp(70px, 14vw, 210px);
  width: clamp(160px, 22vw, 340px);
  border-color: rgba(85, 214, 194, 0.24);
  animation: ringDrift 9s ease-in-out infinite;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 48%, rgba(85, 214, 194, 0.16), rgba(85, 214, 194, 0) 29%),
    radial-gradient(circle at 58% 42%, rgba(246, 185, 107, 0.14), rgba(246, 185, 107, 0) 24%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.82) 34%, rgba(5, 6, 8, 0.34) 74%),
    linear-gradient(0deg, rgba(8, 9, 11, 1) 0%, rgba(8, 9, 11, 0) 30%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 74%);
}

.hero-content,
.page-hero .section-inner {
  position: relative;
  z-index: 4;
}

.hero-content {
  width: min(calc(100% - var(--gutter)), var(--max));
  margin: 0 auto;
  padding: 92px 0 66px;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5.6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.54);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.54);
}

.hero-copy,
.page-copy {
  max-width: 560px;
  color: rgba(244, 240, 232, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 650px);
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(245, 248, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 20, 40, 0.68);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-meta div {
  min-width: 0;
  padding: 14px 16px;
}

.hero-meta div + div {
  border-left: 1px solid rgba(245, 248, 255, 0.12);
}

.hero-meta span,
.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-meta strong {
  display: block;
  color: rgba(244, 240, 232, 0.9);
  font-size: 0.8rem;
  line-height: 1.25;
}

.section {
  padding: clamp(76px, 10vw, 124px) 0;
}

.section-tight {
  padding-top: clamp(56px, 8vw, 88px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(22px, 5vw, 52px);
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2,
.cta-panel h2,
.page-hero h1 {
  margin-bottom: 0;
}

.section-heading h2,
.split-content h2,
.cta-panel h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.product-card,
.value-card,
.team-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 36, 70, 0.68);
  box-shadow: 0 1px 0 rgba(244, 240, 232, 0.04) inset;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.card:hover,
.product-card:hover,
.value-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 214, 194, 0.34);
  background: rgba(16, 43, 82, 0.9);
  box-shadow: var(--shadow);
}

.card,
.value-card,
.info-card {
  padding: 28px;
}

.card h3,
.product-card h3,
.value-card h3,
.team-card h3,
.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(85, 214, 194, 0.28);
  border-radius: var(--radius);
  background: rgba(85, 214, 194, 0.08);
  color: var(--teal);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(98px, 13vw, 154px) 0 clamp(70px, 9vw, 108px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 30%, rgba(85, 214, 194, 0.12), transparent 31%),
    radial-gradient(circle at 22% 14%, rgba(246, 185, 107, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(16, 19, 23, 0.88), rgba(8, 9, 11, 0));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85, 214, 194, 0.54), transparent);
}

.split-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.story-panel,
.mission-panel,
.map-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(85, 214, 194, 0.08), rgba(246, 185, 107, 0.06)), var(--panel);
  box-shadow: var(--shadow);
}

.story-panel,
.mission-panel {
  padding: clamp(28px, 5vw, 48px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.story-panel .stats-row + p {
  margin-top: 24px;
}

.stat-card {
  padding: 20px;
  background: rgba(8, 9, 11, 0.86);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.team-card {
  overflow: hidden;
}

.team-photo {
  height: 230px;
  background:
    radial-gradient(circle at 50% 32%, rgba(85, 214, 194, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(244, 240, 232, 0.12), rgba(85, 214, 194, 0.05)),
    var(--panel-soft);
}

.team-card div:last-child {
  padding: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 354px;
  overflow: hidden;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 128px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(85, 214, 194, 0.2), transparent 52%),
    radial-gradient(circle at 72% 34%, rgba(246, 185, 107, 0.22), transparent 24%),
    var(--panel-soft);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 248, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(6, 20, 40, 0.38);
  backdrop-filter: blur(10px);
}

.product-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: min(76%, 180px);
  max-height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
}

.product-visual-ai {
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 215, 0, 0.26), transparent 25%),
    linear-gradient(135deg, rgba(123, 223, 242, 0.24), transparent 56%),
    var(--panel-soft);
}

.product-visual-speed {
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 122, 69, 0.26), transparent 24%),
    linear-gradient(135deg, rgba(76, 111, 255, 0.24), transparent 56%),
    var(--panel-soft);
}

.product-visual-workflow {
  background:
    radial-gradient(circle at 72% 34%, rgba(108, 93, 211, 0.3), transparent 24%),
    linear-gradient(135deg, rgba(123, 223, 242, 0.2), transparent 56%),
    var(--panel-soft);
}

.product-visual-tracker {
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 77, 141, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(255, 215, 0, 0.18), transparent 56%),
    var(--panel-soft);
}

.product-visual-tracker img {
  max-width: min(84%, 210px);
  max-height: 50px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-body p {
  flex: 1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: 999px;
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-link {
  width: 100%;
  min-height: 40px;
  margin-top: 18px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 20%, rgba(85, 214, 194, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(244, 240, 232, 0.08), rgba(85, 214, 194, 0.06)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.form-panel,
.map-panel {
  padding: clamp(24px, 4vw, 34px);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(244, 240, 232, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.72);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(85, 214, 194, 0.62);
  background: rgba(8, 9, 11, 0.92);
  box-shadow: 0 0 0 4px rgba(85, 214, 194, 0.1);
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.42);
}

.contact-list span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-frame {
  display: grid;
  place-items: center;
  min-height: 300px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(244, 240, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 52% 45%, rgba(85, 214, 194, 0.22), transparent 18%),
    var(--bg);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.map-pin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 12px rgba(85, 214, 194, 0.12), 0 0 60px rgba(85, 214, 194, 0.6);
  animation: statusPulse 2.5s ease-out infinite;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.66);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand img {
  width: 142px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

[data-reveal]:nth-child(2) {
  animation-delay: 110ms;
}

[data-reveal]:nth-child(3) {
  animation-delay: 210ms;
}

[data-reveal]:nth-child(4) {
  animation-delay: 310ms;
}

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px var(--gutter) 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 11, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    padding: 12px 14px;
    text-align: center;
  }

  .site-nav a::after {
    left: 0;
    right: auto;
    width: 42px;
  }

  .section-heading,
  .split-content,
  .grid-3,
  .grid-4,
  .grid-2,
  .contact-layout,
  .cta-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 72% 32%, rgba(85, 214, 194, 0.16), rgba(85, 214, 194, 0) 34%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.5)),
      linear-gradient(0deg, rgba(8, 9, 11, 1) 0%, rgba(8, 9, 11, 0.18) 62%);
  }

  .hero-aura::before {
    top: 34%;
    right: -72px;
    width: clamp(220px, 64vw, 390px);
  }

  .hero-aura::after {
    top: 34%;
    right: -24px;
    width: clamp(150px, 43vw, 280px);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 96px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.6rem);
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-meta,
  .stats-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta div + div {
    border-left: 0;
    border-top: 1px solid rgba(244, 240, 232, 0.12);
  }

  .card,
  .value-card,
  .info-card,
  .product-body {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-image {
    transform: scale(1.02);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ringBreathe {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.74;
  }

  50% {
    transform: translateY(-50%) scale(1.045);
    opacity: 1;
  }
}

@keyframes ringDrift {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 0.72;
  }

  50% {
    transform: translateY(-50%) translateX(-14px);
    opacity: 1;
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(85, 214, 194, 0.46);
  }

  72%,
  100% {
    box-shadow: 0 0 0 12px rgba(85, 214, 194, 0);
  }
}
