:root {
  --bg: #080c14;
  --bg-elevated: #0f141f;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f1f5f9;
  --muted: #8b9cb3;
  --accent: #0d9488;
  --accent-hover: #14b8a6;
  --accent-dim: rgba(13, 148, 136, 0.12);
  --warn: #fbbf24;
  --radius: 8px;
  --font-sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max: 72rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --header-bg: rgba(8, 12, 20, 0.86);
  --nav-link: #a8b8cc;
  --nav-link-hover: #f1f5f9;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f6f8fc;
  --bg-elevated: #ffffff;
  --border: rgba(15, 23, 42, 0.12);
  --text: #0f172a;
  --muted: #475569;
  --accent: #0f766e;
  --accent-hover: #0d9488;
  --accent-dim: rgba(15, 118, 110, 0.1);
  --header-bg: rgba(255, 255, 255, 0.92);
  --nav-link: #334155;
  --nav-link-hover: #0f172a;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.16);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 85% 50% at 12% -5%, rgba(13, 148, 136, 0.07), transparent 52%),
    radial-gradient(ellipse 55% 40% at 98% 0%, rgba(71, 85, 105, 0.12), transparent 48%),
    radial-gradient(ellipse 45% 30% at 50% 100%, rgba(15, 23, 42, 0.5), transparent 50%);
}

[data-theme="light"] body::before {
  background:
    radial-gradient(ellipse 85% 55% at 12% -5%, rgba(15, 118, 110, 0.08), transparent 52%),
    radial-gradient(ellipse 55% 40% at 98% 0%, rgba(148, 163, 184, 0.2), transparent 48%),
    radial-gradient(ellipse 45% 30% at 50% 100%, rgba(203, 213, 225, 0.35), transparent 50%);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #042f2e;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(1.2);
}

.header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-link:hover {
  text-decoration: none;
}

.brand-logo-shell {
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  box-shadow: none;
}

.brand-logo {
  height: 46px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.brand-title {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: var(--text);
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 480px) {
  .brand-text {
    display: none;
  }

  .brand-logo {
    height: 40px;
    max-width: 170px;
  }
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--nav-link);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--nav-link-hover);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  text-decoration: none;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  background: color-mix(in oklab, var(--bg-elevated) 85%, var(--accent-dim));
}

.theme-toggle-icon {
  line-height: 1;
}

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

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .theme-toggle-label {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: min(580px, 88vh);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 960px) {
  .hero {
    min-height: min(620px, 90vh);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: 42% 50%;
  animation: hero-ken 36s ease-in-out infinite alternate;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 25% 45%, black 12%, transparent 65%);
  pointer-events: none;
}

.hero-fade-in {
  animation: hero-fade-up 0.9s ease backwards;
}

.hero-fade-in--2 {
  animation-delay: 0.12s;
}

.hero-fade-in--3 {
  animation-delay: 0.22s;
}

.hero-fade-in--4 {
  animation-delay: 0.32s;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 95% 90% at 78% 42%, rgba(8, 12, 20, 0.2) 0%, rgba(8, 12, 20, 0.75) 52%, rgba(8, 12, 20, 0.92) 100%),
    linear-gradient(105deg, rgba(8, 12, 20, 0.92) 0%, rgba(8, 12, 20, 0.55) 42%, rgba(8, 12, 20, 0.15) 72%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem clamp(3rem, 7vw, 4.5rem);
}

.hero-layout {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) min(20rem, 32vw);
    gap: 3rem;
    align-items: end;
  }
}

.hero-copy {
  min-width: 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.72);
}

.hero h1 {
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
  font-weight: 700;
  max-width: 22ch;
  color: #fff;
  text-wrap: balance;
}

.hero-lead {
  margin-top: 1.125rem;
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.62;
  font-weight: 400;
  color: rgba(226, 232, 240, 0.88);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-aside {
  min-width: 0;
}

@media (max-width: 959px) {
  .hero-aside {
    max-width: 20rem;
  }
}

.hero-stat-card {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 20, 31, 0.55);
  backdrop-filter: blur(20px) saturate(1.15);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-md);
}

.hero-stat-label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
}

.hero-stat-grid {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-stat {
  display: grid;
  gap: 0.2rem;
}

.hero-stat dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.65);
  letter-spacing: -0.01em;
}

.hero-stat dd {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.section {
  padding: 4rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.section--ambient {
  position: relative;
}

.section--ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(13, 148, 136, 0.06), transparent);
}

.section--ambient > .section-inner {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.kicker-line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 1px;
  opacity: 0.9;
}

.section h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--text);
}

.section p.lead {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.pill {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pill--lift:hover {
  border-color: color-mix(in oklab, var(--accent) 35%, var(--border));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.pill h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.pill p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.domain-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .domain-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.domain-card {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) + 2px);
}

.domain-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.domain-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.domain-card--motion:hover img {
  transform: scale(1.04);
}

.domain-card--motion {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.domain-card--motion:hover {
  border-color: color-mix(in oklab, var(--accent) 28%, var(--border));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.domain-body {
  padding: 1rem 1.1rem 1.15rem;
}

.domain-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.domain-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .catalog-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.search-wrap {
  flex: 1;
  max-width: 28rem;
}

.search-wrap label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.search-wrap input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(5, 8, 14, 0.85);
  color: var(--text);
  font-size: 0.9375rem;
}

.search-wrap input:focus {
  outline: 2px solid color-mix(in oklab, var(--accent) 45%, transparent);
  outline-offset: 1px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.chip[aria-pressed="true"] {
  border-color: color-mix(in oklab, var(--accent) 55%, transparent);
  color: var(--accent);
  background: var(--accent-dim);
}

.chip:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--accent) 30%, var(--border));
}

.tool-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.tool-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--bg-elevated) 86%, var(--accent-dim)) 0%, var(--bg-elevated) 62%),
    var(--bg-elevated);
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: calc(var(--radius) + 3px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), color-mix(in oklab, var(--accent) 48%, #60a5fa));
  opacity: 0.86;
  pointer-events: none;
}

.tool-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 14%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.tool-card:hover {
  border-color: color-mix(in oklab, var(--accent) 38%, var(--border));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.tool-card:focus-within {
  border-color: color-mix(in oklab, var(--accent) 56%, var(--border));
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 30%, transparent), 0 16px 34px rgba(0, 0, 0, 0.24);
}

.tool-card--enter {
  animation: card-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.tool-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.tool-card h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.cat-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border: 1px solid color-mix(in oklab, var(--accent) 45%, var(--border));
  border-radius: 999px;
  color: color-mix(in oklab, var(--accent) 75%, var(--text));
  background: color-mix(in oklab, var(--accent-dim) 72%, transparent);
  white-space: nowrap;
}

.tool-card p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--muted);
  flex: 1;
}

.tool-foot {
  margin-top: 1.05rem;
  padding-top: 0.82rem;
  border-top: 1px dashed color-mix(in oklab, var(--accent) 22%, var(--border));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.locked-hint {
  font-size: 0.75rem;
  color: color-mix(in oklab, var(--muted) 78%, var(--text));
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.locked-hint svg {
  color: var(--accent);
}

.empty-state {
  border: 1px dashed var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 2rem;
}

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

.contact-panel {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
}

.panel-shine {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-panel h3 {
  margin: 0 0 0.5rem;
}

.contact-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
}

.contact-actions a.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  border-radius: var(--radius);
}

.contact-actions a:hover {
  filter: brightness(1.03);
  text-decoration: none;
}

.site-footer {
  padding: 2rem 1.25rem 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: background 0.2s ease;
}

.footer-brand:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.footer-logo {
  height: 34px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  filter: none;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-ken {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.035);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .hero-bg img,
  .hero-bg video,
  .hero-fade-in,
  .hero-fade-in--2,
  .hero-fade-in--3,
  .hero-fade-in--4 {
    animation: none !important;
  }

  .hero-bg img,
  .hero-bg video {
    transform: none;
  }

  .hero-fade-in,
  .hero-fade-in--2,
  .hero-fade-in--3,
  .hero-fade-in--4 {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tool-card--enter {
    animation: none !important;
  }

  .btn-primary:hover,
  .btn-ghost:hover,
  .pill--lift:hover,
  .domain-card--motion:hover,
  .tool-card:hover,
  .chip:hover {
    transform: none;
  }
}
