/* NX Dev Solutions — Design system (NXDEV brand palette) */
:root {
  --brand-orange: #F5A623;
  --brand-orange-light: #FFB84D;
  --brand-orange-glow: rgba(245, 166, 35, 0.4);
  --brand-charcoal: #4A4A4A;
  --brand-charcoal-light: #5C5C5C;
  --bg-deep: #0D0D0D;
  --bg: #141414;
  --surface: #1A1A1A;
  --surface-hover: #242424;
  --border: rgba(245, 166, 35, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text: #F5F5F5;
  --muted: #9A9A9A;
  --accent: var(--brand-orange);
  --accent-light: var(--brand-orange-light);
  --success: #34d399;
  --danger: #f87171;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  --shadow-orange: 0 8px 32px rgba(245, 166, 35, 0.2);
  --glass: rgba(13, 13, 13, 0.85);
  --max: 1120px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;
  --header-h: 160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

@keyframes nx-logo-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(-4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes nx-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image: linear-gradient(180deg, #0D0D0D 0%, #141414 50%, #0D0D0D 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(245, 166, 35, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 45% at 90% 10%, rgba(245, 166, 35, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 105%, rgba(245, 166, 35, 0.06), transparent 45%);
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 901px) {
  body.nav-open {
    overflow: auto;
  }
}

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

a:hover {
  color: var(--brand-orange-light);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
}

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

img:not(.logo-img) {
  border-radius: var(--radius);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.logo:hover {
  text-decoration: none;
}

.logo:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Default — footer / fallback */
.logo-img {
  display: block;
  width: auto;
  max-height: 70px;
  height: auto;
}

/* Primary header mark: larger, clean display without filters */
.site-header .logo-img {
  max-height: 140px;
  width: auto;
  height: auto;
  opacity: 1;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-header .logo:hover .logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}

.logo--footer .logo-img {
  max-height: 80px;
  opacity: 0.92;
}

.logo--footer:hover .logo-img {
  opacity: 1;
}

@media (max-width: 768px) {
  .site-header .logo-img {
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .site-header .logo-img {
    max-height: 80px;
  }

  .logo-img {
    max-height: 60px;
  }

  .logo--footer .logo-img {
    max-height: 60px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.is-loaded .logo-img--enter {
    animation: nx-logo-in 0.65s var(--ease) both;
    animation-delay: 0.04s;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-main a {
  color: var(--muted);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-main a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.nav-main a[aria-current="page"] {
  color: var(--brand-orange);
  background: rgba(245, 166, 35, 0.1);
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.2);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 20px;
}

.nav-toggle-lines span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

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

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

  .nav-main {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 24px 1rem;
    background: rgba(13, 13, 13, 0.98);
    border-bottom: 1px solid rgba(245, 166, 35, 0.12);
    backdrop-filter: blur(16px);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s var(--ease), visibility 0.2s, transform 0.2s var(--ease);
  }

  .nav-main[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-main a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s var(--ease), box-shadow 0.2s, filter 0.2s;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.06);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--brand-orange);
  color: #0D0D0D;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  background: var(--brand-orange-light);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--brand-orange);
  border-color: var(--border);
}

/* Sections */
.section {
  padding-block: clamp(3.5rem, 10vw, 6rem);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.section-lead {
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-bottom: 0.5rem;
}

/* Hero */
.hero {
  padding-block: clamp(3rem, 12vw, 5.5rem);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 20%, black, transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .hero-actions {
    justify-content: center;
  }

  .hero-copy .trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }
}

.hero-title {
  font-size: clamp(2.35rem, 6vw, 3.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

.gradient-text {
  background: linear-gradient(
    120deg,
    var(--brand-orange),
    #FFD93D,
    var(--brand-orange-light),
    var(--brand-orange)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  html.js .gradient-text {
    animation: nx-gradient-shift 12s ease-in-out infinite;
  }
}

.hero-desc {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.trust span strong {
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-visual .card-visual {
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 480 / 320;
  display: block;
  background: var(--bg-deep);
}

.hero-visual .card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.badge-stack {
  position: absolute;
  bottom: -12px;
  right: 12%;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  max-width: 220px;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .badge-stack {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 1rem;
    max-width: none;
  }
}

.badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(8px);
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  transition: border-color 0.2s, background 0.2s var(--ease);
}

.card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  background: var(--surface-hover);
}

.card-visual {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  aspect-ratio: 320 / 200;
}

.card-visual img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Raster photos — fill frame */
.card-visual.is-photo img {
  object-fit: cover;
}

.hero-visual .card-visual.is-photo img {
  object-fit: cover;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

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

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Process */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.6);
}

.process-list li::before {
  content: counter(step);
  font-weight: 800;
  font-size: 0.85rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), rgba(255, 217, 61, 0.15));
  color: var(--brand-orange);
}

.process-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.925rem;
}

/* Testimonials */
.quote {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(245, 166, 35, 0.08), rgba(255, 217, 61, 0.04));
}

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text);
}

.quote cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(245, 166, 35, 0.2);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(255, 184, 77, 0.06), rgba(255, 217, 61, 0.04));
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 auto 1.35rem;
  color: var(--muted);
  max-width: 48ch;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(245, 166, 35, 0.12);
  padding-block: 3rem 2rem;
  margin-top: 2rem;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.5) 0%, rgba(13, 13, 13, 0.95) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.925rem;
  max-width: 36ch;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: var(--muted);
  display: block;
  padding: 0.35rem 0;
  text-decoration: none;
  font-size: 0.95rem;
}

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

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

.footer-bottom nav {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom a {
  color: var(--muted);
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input::placeholder,
textarea::placeholder {
  color: rgba(138, 138, 150, 0.55);
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(245, 166, 35, 0.35);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--brand-orange);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.field-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-status[data-type="success"] {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: var(--success);
}

.form-status[data-type="error"] {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: var(--danger);
}

/* Legal */
.legal-shell {
  max-width: 720px;
}

.legal-note {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-shell h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.legal-shell h2:first-of-type {
  margin-top: 0;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell ul {
  margin: 0.5rem 0 1rem;
}

.legal-shell .placeholder-box {
  display: inline-block;
  padding: 0 0.35rem;
  border-radius: 4px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--brand-orange);
  font-family: var(--font-mono);
  font-size: 0.85em;
}

/* Page hero (inner pages) */
.page-hero {
  padding-block: clamp(2.5rem, 8vw, 4rem);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
}

.page-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero-visual {
  margin-bottom: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
  max-height: min(280px, 40vw);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Two column layouts */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .layout-split {
    grid-template-columns: 1fr;
  }
}

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

.box-list li {
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.95rem;
}

.box-list strong {
  color: var(--text);
}

details.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

details.accordion summary {
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

details.accordion summary::-webkit-details-marker {
  display: none;
}

details.accordion summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

details[open].accordion summary::after {
  content: "−";
}

details.accordion div {
  padding: 0 1.15rem 1rem;
  color: var(--muted);
  font-size: 0.925rem;
}

/* Scroll reveals — enhanced with JS (WAAPI); CSS fallback when no JS */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

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

html.js-waapi .reveal {
  transition: none;
}

html.js-waapi .reveal.visible {
  transition: none;
}

/* Home hero — hidden only when JS runs (see inline script in head) */
html.js [data-hero] .hero-copy,
html.js [data-hero] .hero-visual {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-hero] .hero-copy,
  html.js [data-hero] .hero-visual {
    opacity: 1;
    transform: none;
  }
}
