/* ============================================================
   NEXOA — Design System "Deep Field"
   Deep black · electric blue · soft violet · white light · teal brand
   ============================================================ */

:root {
  --bg: #020409;
  --bg-2: #04070f;
  --ink: #f4f8fc;
  --ink-dim: rgba(225, 238, 246, 0.82);
  --ink-faint: rgba(220, 234, 244, 0.55);
  --teal: #2ee6d6;
  --teal-deep: #14b8b0;
  --blue: #4f7cff;
  --violet: #8b7cf7;
  --line: rgba(160, 200, 220, 0.12);
  --glass: rgba(10, 18, 30, 0.42);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(46, 230, 214, 0.25); color: #fff; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* ============ Typography ============ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(2, 4, 9, 0.9), 0 0 80px rgba(2, 4, 9, 0.6);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(2, 4, 9, 0.9), 0 0 70px rgba(2, 4, 9, 0.6);
}

.kicker {
  color: var(--teal);
  margin-bottom: 1.4rem;
  opacity: 1;
  text-shadow: 0 1px 14px rgba(2, 4, 9, 0.95);
}

.sub {
  color: var(--ink-dim);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 400;
  margin-top: 1.6rem;
  max-width: 38rem;
  text-shadow: 0 1px 16px rgba(2, 4, 9, 0.95), 0 0 40px rgba(2, 4, 9, 0.7);
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}

.btn-solid {
  background: #fff;
  color: #04101a;
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 12px 50px rgba(46, 230, 214, 0.35);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(200, 230, 240, 0.22);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-wide { width: 100%; }

.cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Preloader ============ */

#loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
body:not(.loading) #loader { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { width: min(420px, 78vw); }

.loader-logo {
  width: 200px;
  color: #fff;
  display: block;
  margin: 0 auto 2.6rem;
  filter: drop-shadow(0 0 24px rgba(46, 230, 214, 0.35));
  animation: loader-breathe 2.4s ease-in-out infinite;
}
@keyframes loader-breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; filter: drop-shadow(0 0 40px rgba(46, 230, 214, 0.55)); }
}

.loader-track {
  height: 1px;
  background: rgba(160, 200, 220, 0.15);
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  box-shadow: 0 0 16px rgba(46, 230, 214, 0.8);
}
.loader-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9rem;
  color: var(--ink-faint);
}
#loader-pct { color: var(--teal); }

/* ============ WebGL canvas & atmosphere ============ */

#gl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 50% 45%, transparent 55%, rgba(0, 2, 6, 0.55) 100%);
}

.grain {
  position: fixed;
  inset: -100px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-32px, 18px); }
  50% { transform: translate(22px, -28px); }
  75% { transform: translate(-14px, -12px); }
  100% { transform: translate(0, 0); }
}

#flash {
  position: fixed;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 50%, #fff 0%, rgba(190, 240, 255, 0.85) 30%, transparent 72%);
}

/* ============ Header ============ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.4rem, 4vw, 3.2rem);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.5s ease;
}
#header.scrolled {
  background: linear-gradient(rgba(2, 4, 9, 0.72), rgba(2, 4, 9, 0.45) 70%, transparent);
  backdrop-filter: blur(12px);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand { color: #fff; display: flex; }
.brand-logo { width: 128px; height: auto; transition: filter 0.4s ease; }
.brand:hover .brand-logo { filter: drop-shadow(0 0 14px rgba(46, 230, 214, 0.6)); }

.header-right { display: flex; align-items: center; gap: 1.6rem; }
.header-mail {
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-mail:hover { color: var(--teal); }

/* ============ Scene rail ============ */

#rail {
  position: fixed;
  right: clamp(1rem, 2.4vw, 2.2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}
body:not(.loading) #rail { opacity: 1; }

#rail button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-faint);
  padding: 0.1rem 0;
}
#rail button span {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}
#rail:hover button span { opacity: 0.65; transform: translateX(0); }
#rail button i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(180, 215, 230, 0.28);
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}
#rail button.active i {
  background: var(--teal);
  box-shadow: 0 0 12px rgba(46, 230, 214, 0.9);
  transform: scale(1.5);
}
#rail button.active span { color: var(--teal); opacity: 1; transform: translateX(0); }

/* ============ Scroll hint ============ */

#hint {
  position: fixed;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink-faint);
  pointer-events: none;
}
.hint-line {
  width: 1px;
  height: 52px;
  background: rgba(180, 215, 230, 0.2);
  position: relative;
  overflow: hidden;
}
.hint-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--teal);
  animation: hint-drop 2s var(--ease-out) infinite;
}
@keyframes hint-drop {
  0% { top: -40%; }
  70%, 100% { top: 110%; }
}

/* ============ Cinematic overlays ============ */

#overlays {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.ov {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 5vw, 4rem);
  opacity: 0;
  visibility: hidden;
}

.ov-center {
  align-items: center;
  text-align: center;
  background: radial-gradient(ellipse 58% 48% at 50% 50%, rgba(2, 4, 9, 0.5), transparent 72%);
}
.ov-top {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: clamp(6rem, 14vh, 9rem);
  background: linear-gradient(to bottom, rgba(2, 4, 9, 0.72) 0%, rgba(2, 4, 9, 0.3) 22%, transparent 42%);
}
.ov-bottom {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: clamp(5rem, 13vh, 8rem);
  background: linear-gradient(to top, rgba(2, 4, 9, 0.82) 0%, rgba(2, 4, 9, 0.42) 26%, transparent 50%);
}
.ov-left {
  align-items: flex-start;
  text-align: left;
  padding-left: clamp(2rem, 9vw, 9rem);
  background: linear-gradient(to right, rgba(2, 4, 9, 0.7) 0%, rgba(2, 4, 9, 0.32) 34%, transparent 58%);
}

/* Stats scene */
.ov-stats {
  align-items: center;
  text-align: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(2, 4, 9, 0.6) 0%, transparent 30% 62%, rgba(2, 4, 9, 0.7) 100%);
  padding-top: clamp(5.4rem, 12vh, 8rem);
  padding-bottom: clamp(3rem, 9vh, 6rem);
}
.stat-caption {
  color: var(--ink-faint);
  margin-top: auto;
  margin-bottom: auto;
}
.stats-row {
  display: flex;
  gap: clamp(2rem, 7vw, 7rem);
  justify-content: center;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 36px rgba(79, 124, 255, 0.5);
}
.stat-num .unit { color: var(--teal); }
.stat p {
  color: var(--ink-dim);
  font-size: 0.88rem;
  margin-top: 0.4rem;
  line-height: 1.45;
}

/* ============ Node labels ============ */

#node-labels { position: fixed; inset: 0; z-index: 22; pointer-events: none; }
.node-label {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ink);
  opacity: 0;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(46, 230, 214, 0.45);
  border-radius: 999px;
  background: rgba(4, 10, 18, 0.72);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

/* ============ Journey track ============ */

#journey {
  height: 780vh;
  position: relative;
  z-index: 5;
}

/* ============ Serviços ============ */

#servicos {
  position: relative;
  z-index: 10;
  padding: clamp(5rem, 14vh, 10rem) clamp(1.6rem, 6vw, 6rem) clamp(4rem, 9vh, 7rem);
  background: linear-gradient(180deg, transparent 0%, rgba(2, 4, 9, 0.9) 10%, rgba(3, 6, 13, 0.98) 26%, rgba(3, 6, 13, 0.98) 100%);
}

.svc-inner { width: min(1180px, 100%); margin: 0 auto; }

.svc-head { max-width: 47rem; }
.svc-head .sub { margin-top: 1.4rem; }

.svc-cred {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.45rem 1rem;
  color: var(--ink-dim);
  border: 1px solid rgba(46, 230, 214, 0.28);
  border-radius: 999px;
  background: rgba(4, 10, 18, 0.6);
  font-size: 0.62rem;
}

.svc-flow {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0;
  margin: clamp(2.4rem, 5vh, 3.6rem) 0 clamp(1.8rem, 4vh, 2.8rem);
  color: var(--ink-faint);
  font-size: 0.62rem;
}
.svc-flow li { display: flex; align-items: center; }
.svc-flow li + li::before {
  content: "→";
  color: var(--teal);
  margin: 0 0.9rem;
  opacity: 0.7;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.svc-wide, .svc-wide-end { grid-column: span 2; }

.svc-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  background: rgba(8, 14, 24, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(46, 230, 214, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.svc-card:hover {
  border-color: rgba(46, 230, 214, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(46, 230, 214, 0.07);
}
.svc-card:hover::before { opacity: 1; }

.svc-card .num { color: var(--teal); font-size: 0.66rem; }
.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.22rem;
  line-height: 1.25;
  color: #fff;
  margin: 0.85rem 0 0.55rem;
}
.svc-card > p:not(.mono) { color: var(--ink-dim); font-size: 0.93rem; }
.svc-tags {
  margin-top: 1.1rem;
  color: var(--ink-faint);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  line-height: 2;
}

/* reveal suave (ativado por JS — sem JS, tudo fica visível) */
body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
body.reveal-ready .reveal.in { opacity: 1; transform: none; }

/* ============ WhatsApp ============ */

#whats {
  position: fixed;
  right: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 4vh, 2rem);
  z-index: 38;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(140deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              opacity 0.8s ease, visibility 0.8s ease;
}
#whats svg { width: 28px; height: 28px; }
#whats::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.7);
  animation: whats-ping 2.6s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes whats-ping {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
#whats:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 36px rgba(37, 211, 102, 0.55);
}
body.loading #whats { opacity: 0; visibility: hidden; }

.whats-tip {
  position: absolute;
  right: calc(100% + 0.9rem);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  color: var(--ink);
  font-size: 0.6rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(4, 10, 18, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}
#whats:hover .whats-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (hover: none) { .whats-tip { display: none; } }

/* ============ Contact ============ */

#contato {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.6rem, 6vw, 6rem);
  background: linear-gradient(180deg, transparent 0%, rgba(2, 4, 9, 0.88) 18%, rgba(3, 6, 13, 0.97) 100%);
}

.contact-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.contact-mail {
  display: inline-block;
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 230, 214, 0.3);
  padding-bottom: 0.2rem;
  transition: border-color 0.3s ease, text-shadow 0.3s ease;
}
.contact-mail:hover {
  border-color: var(--teal);
  text-shadow: 0 0 24px rgba(46, 230, 214, 0.6);
}

.contact-points {
  list-style: none;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.contact-points .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 0.8rem;
  vertical-align: 2px;
  box-shadow: 0 0 8px rgba(46, 230, 214, 0.8);
}

.contact-form {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field span { color: var(--ink-faint); }
.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(160, 200, 220, 0.22);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.55rem 0.1rem;
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-color: var(--teal); }

.form-note {
  color: var(--ink-faint);
  text-align: center;
  font-size: 0.6rem;
}

.form-status {
  text-align: center;
  font-size: 0.66rem;
  line-height: 1.7;
}
.form-status.ok { color: var(--teal); }
.form-status.err { color: #ff5a7a; }
.form-status a { color: inherit; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ============ Footer ============ */

#footer {
  position: relative;
  z-index: 10;
  background: #02040a;
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vh, 5rem) clamp(1.6rem, 6vw, 6rem) 2.4rem;
}
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.footer-logo { width: 148px; color: #fff; opacity: 0.92; }
.footer-tag { color: var(--ink-dim); font-size: 0.95rem; }
.footer-meta {
  display: flex;
  gap: 2.4rem;
  color: var(--ink-faint);
  margin-top: 0.6rem;
}
.footer-meta a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.footer-meta a:hover { color: var(--teal); }

/* ============ Fallback estático ============ */

body.static-mode #gl,
body.static-mode #loader,
body.static-mode #rail,
body.static-mode #hint,
body.static-mode #overlays,
body.static-mode #journey,
body.static-mode #node-labels,
body.static-mode #flash { display: none !important; }
body.static-mode #fallback { display: block; }

#fallback .fb-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(79, 124, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 38% at 50% 42%, rgba(46, 230, 214, 0.1), transparent 70%);
}

body.static-mode #servicos {
  background: rgba(3, 6, 13, 0.98);
}

/* ============ Responsive ============ */

@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-wide { grid-column: 1 / -1; }
  .svc-wide-end { grid-column: auto; }
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  #rail span { display: none; }
}

@media (max-width: 720px) {
  .header-mail { display: none; }
  .brand-logo { width: 104px; }
  #rail { right: 0.8rem; gap: 0.9rem; }
  .bk { display: none; }
  .ov-left { padding-left: clamp(1.6rem, 5vw, 4rem); }
  .stats-row { gap: 1.6rem; }
  .stat p { font-size: 0.78rem; }
  .field-row { grid-template-columns: 1fr; }
  #journey { height: 720vh; }
  #hint span { font-size: 0.58rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { grid-column: auto !important; }
  .svc-flow li + li::before { margin: 0 0.55rem; }
  #whats { width: 52px; height: 52px; }
  #whats svg { width: 25px; height: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .hint-line::after, .loader-logo, #whats::after { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}
