:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #03070d;
  --bg-soft: #07111b;
  --surface: rgba(12, 24, 36, 0.72);
  --surface-strong: rgba(14, 29, 43, 0.92);
  --surface-muted: rgba(144, 224, 239, 0.06);
  --border: rgba(144, 224, 239, 0.16);
  --border-strong: rgba(144, 224, 239, 0.35);
  --text: #eef9ff;
  --text-muted: #9db4c7;
  --heading: #ffffff;
  --primary: #0096d6;
  --primary-dark: #006ba6;
  --accent: #90e0ef;
  --accent-strong: #28d7ff;
  --danger: #ff6b8a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.26);
  --glow: rgba(0, 150, 214, 0.45);
  --grid-line: rgba(144, 224, 239, 0.07);
  --input: rgba(2, 8, 14, 0.72);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Orbitron", system-ui, sans-serif;
  --max: 1180px;
  --radius: 22px;
  --radius-lg: 34px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f5fbff;
  --bg-soft: #e9f6fc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-muted: rgba(0, 150, 214, 0.07);
  --border: rgba(0, 119, 182, 0.16);
  --border-strong: rgba(0, 119, 182, 0.28);
  --text: #092033;
  --text-muted: #52677a;
  --heading: #04111f;
  --primary: #0077b6;
  --primary-dark: #005f91;
  --accent: #009ac2;
  --accent-strong: #0077b6;
  --danger: #c2355a;
  --shadow: 0 28px 90px rgba(14, 55, 86, 0.16);
  --shadow-soft: 0 18px 54px rgba(14, 55, 86, 0.12);
  --glow: rgba(0, 150, 214, 0.24);
  --grid-line: rgba(0, 119, 182, 0.08);
  --input: rgba(255, 255, 255, 0.86);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 150, 214, 0.22), transparent 30rem),
    radial-gradient(circle at 90% 6%, rgba(144, 224, 239, 0.14), transparent 30rem),
    var(--bg);
  line-height: 1.6;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 7, 13, 0) 0%, var(--bg) 78%);
  z-index: -1;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 150, 214, 0.22));
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--heading);
  background: var(--surface-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.theme-toggle,
.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
}

.theme-icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-sun {
  display: none;
}

:root[data-theme="light"] .theme-icon-moon {
  display: none;
}

:root[data-theme="light"] .theme-icon-sun {
  display: block;
}

.nav-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 150, 214, 0.28);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  width: min(100% - 2rem, var(--max));
  margin: 0.75rem auto 0;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
}

.mobile-menu a:hover {
  color: var(--heading);
  background: var(--surface-muted);
}

@media (min-width: 880px) {
  .desktop-nav,
  .nav-button {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(4rem, 8vw, 7rem) 0 3.75rem;
}

.aurora {
  position: absolute;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.7;
  pointer-events: none;
}

.aurora-one {
  top: -15rem;
  left: -10rem;
  background: radial-gradient(circle, var(--glow), transparent 65%);
}

.aurora-two {
  right: -13rem;
  bottom: -12rem;
  background: radial-gradient(circle, rgba(144, 224, 239, 0.22), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
    gap: 4rem;
  }
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}

.hero-text {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 50px rgba(0, 150, 214, 0.34);
}

.button-secondary {
  color: var(--heading);
  border-color: var(--border-strong);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
  padding: 2rem;
  isolation: isolate;
}

.hero-fx {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}

.hero-fx-glow,
.hero-fx-streak {
  position: absolute;
}

.hero-fx-glow {
  width: min(90%, 31rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 38%),
    radial-gradient(circle, var(--glow), transparent 68%);
  filter: blur(24px);
  opacity: 0.5;
  animation: hero-fx-breathe 7s ease-in-out infinite;
}

.hero-fx-streak {
  width: min(52%, 18rem);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent) 48%, transparent),
    transparent
  );
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 30%, transparent);
  opacity: 0;
  transform: rotate(-28deg) translateX(-60%);
  animation: hero-fx-streak 6.5s ease-in-out infinite;
}

.streak-1 {
  top: 34%;
  left: 22%;
}

.streak-2 {
  top: 61%;
  left: 35%;
  width: min(42%, 14rem);
  animation-delay: 2.9s;
  animation-duration: 7.8s;
}

.hero-logo {
  position: relative;
  z-index: 3;
  width: min(86%, 22rem);
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(0, 150, 214, 0.32));
  transform: translateZ(0);
}

@keyframes hero-fx-breathe {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes hero-fx-streak {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: rotate(-28deg) translateX(-60%);
  }
  78% {
    opacity: 0.6;
  }
  90% {
    opacity: 0;
    transform: rotate(-28deg) translateX(70%);
  }
}

.hero-tech-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-tech-word {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  white-space: nowrap;
  text-shadow:
    0 0 14px color-mix(in srgb, var(--accent) 55%, transparent),
    0 0 2px color-mix(in srgb, var(--accent) 30%, transparent);
  animation: hero-tech-word-pop 13.2s ease-in-out infinite;
}

.hero-tech-word:nth-child(1) { top: 13%; left: 5%; animation-delay: 0s; }
.hero-tech-word:nth-child(2) { top: 17%; right: 5%; animation-delay: 1.2s; }
.hero-tech-word:nth-child(3) { top: 4%; left: 3%; animation-delay: 2.4s; }
.hero-tech-word:nth-child(4) { top: 50%; right: 12%; animation-delay: 3.6s; }
.hero-tech-word:nth-child(5) { bottom: 12%; left: 6%; animation-delay: 4.8s; }
.hero-tech-word:nth-child(6) { bottom: 8%; right: 6%; animation-delay: 6s; }
.hero-tech-word:nth-child(7) { top: 76%; left: 4%; animation-delay: 7.2s; }
.hero-tech-word:nth-child(8) { bottom: 36%; right: 7%; animation-delay: 8.4s; }
.hero-tech-word:nth-child(9) { top: 22%; left: 4%; animation-delay: 9.6s; }
.hero-tech-word:nth-child(10) { bottom: 18%; right: 5%; animation-delay: 10.8s; }
.hero-tech-word:nth-child(11) { top: 26%; right: 6%; animation-delay: 12s; }

@keyframes hero-tech-word-pop {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(4px);
    filter: blur(2px);
  }
  3% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  7% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  9.09% {
    opacity: 0;
    transform: scale(0.95) translateY(-2px);
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    transform: scale(0.85) translateY(4px);
    filter: blur(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tech-word {
    animation: none;
    opacity: 0;
  }
}

.service-strip {
  border-block: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.strip-grid {
  display: grid;
  gap: 0;
}

.strip-grid span {
  padding: 1rem;
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.strip-grid span:last-child {
  border-bottom: 0;
}

@media (min-width: 760px) {
  .strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .strip-grid span {
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }

  .strip-grid span:last-child {
    border-right: 0;
  }
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-muted {
  background: linear-gradient(180deg, transparent, var(--surface-muted), transparent);
  border-block: 1px solid var(--border);
}

.section-heading {
  max-width: 46rem;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p,
.contact-copy p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  transform-origin: center;
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateY(18px) scale(0.94);
}

.reveal-right {
  transform: translateY(18px) scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 820px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  min-height: 22rem;
  padding: 1.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% 25%;
  height: 12rem;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  opacity: 0.55;
}

.feature-card {
  background:
    linear-gradient(135deg, var(--surface-strong), var(--surface)),
    radial-gradient(circle at 80% 10%, var(--glow), transparent 45%);
}

.feature-card.alt {
  background:
    linear-gradient(135deg, var(--surface), var(--surface-strong)),
    radial-gradient(circle at 20% 10%, rgba(144, 224, 239, 0.16), transparent 45%);
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 2.4rem;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  color: var(--accent);
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--primary) 14%, transparent);
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 14px;
  background: radial-gradient(circle, var(--surface-muted), transparent 70%);
}

.service-icon svg {
  position: relative;
  z-index: 1;
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.timeline h3,
.trust-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.2rem;
}

.service-card p,
.timeline p,
.trust-card p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.service-card ul {
  position: relative;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.service-card li {
  color: var(--text);
  font-weight: 700;
}

.service-card li::before {
  content: "";
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.method-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .method-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 4rem;
  }
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.timeline article > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 32%, transparent);
}

.timeline article > span svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-section {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-section {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, var(--surface-muted), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow);
}

@media (min-width: 920px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 1.5rem;
  }
}

.contact-copy {
  padding: clamp(1rem, 3vw, 2rem);
}

.contact-note {
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text-muted);
  background: var(--surface-muted);
}

.contact-note strong {
  color: var(--heading);
}

.contact-privacy {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-privacy a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.contact-privacy a:hover {
  text-decoration: underline;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface-strong);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: var(--input);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

.form-button {
  width: 100%;
}

.form-error {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid color-mix(in srgb, var(--danger) 50%, transparent);
  border-radius: 14px;
  color: var(--danger);
  background: color-mix(in srgb, var(--danger) 10%, transparent);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}

.form-success {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 2.6rem 1.4rem;
  animation: form-success-in 0.45s ease-out both;
}

.form-success-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 36px color-mix(in srgb, var(--primary) 38%, transparent);
}

.form-success-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.form-success p {
  margin: 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

@keyframes form-success-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid img {
  width: 120px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
}

@media (min-width: 760px) {
  .footer-meta {
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
  }
}

.legal-page {
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  max-width: 40rem;
}

.legal-page h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.1;
}

.legal-meta {
  margin: 0 0 1.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.legal-page h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.legal-page p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.legal-page ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.legal-page li {
  margin-bottom: 0.45rem;
}

.legal-page a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-back {
  margin-top: 2.25rem !important;
}

@media (max-width: 560px) {
  .hero {
    padding-top: 3.25rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-panel {
    min-height: 22rem;
    padding: 1.25rem;
  }

  .hero-logo {
    width: 88%;
  }

  .hero-tech-words {
    inset: 10% 3% 8% 3%;
  }

  .hero-tech-word {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
