/* ============================================================
   GO Developer — Landing  |  Dark industrial / cyan + gold
   ============================================================ */

:root {
  --bg:        #05070c;
  --bg-2:      #080c14;
  --bg-3:      #0c121c;
  --panel:     #0f1622;
  --line:      rgba(100, 180, 200, 0.1);
  --line-2:    rgba(100, 180, 200, 0.22);

  --ink:       #f2f5f8;
  --ink-soft:  #9aabbc;
  --ink-dim:   #5e6e80;

  --cyan:      #00d4ff;
  --cyan-2:    #38bdf8;
  --blue:      #1d8fff;
  --gold:      #e8c56a;
  --gold-2:    #f0d78a;

  /* sem roxo — só ciano → azul elétrico → ouro */
  --accent-grad: linear-gradient(105deg, #00d4ff 0%, #1d8fff 58%, #e8c56a 120%);
  --gold-grad:   linear-gradient(120deg, #f0d78a 0%, #e8c56a 48%, #c9a33a 100%);

  --radius:    14px;
  --radius-sm: 8px;
  --maxw:      1160px;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Instrument Sans", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.grad {
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: unset;
  font-style: normal;
}
.grad--gold { color: var(--gold); font-style: normal; }
.dim { color: var(--ink-dim); }

/* ---------------- Buttons ---------------- */
.btn {
  --bh: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  height: var(--bh); padding: 0 24px;
  border-radius: 999px; font-weight: 650; font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn--lg { --bh: 58px; padding: 0 32px; font-size: 1.02rem; }

.btn--gold {
  background: var(--gold-grad); color: #1a1205;
  box-shadow: 0 12px 32px -10px rgba(232, 197, 106, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(232, 197, 106, 0.7); }

.btn--ghost {
  background: rgba(255,255,255,0.03); color: var(--ink);
  border-color: var(--line-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--cyan); background: rgba(0, 212, 255, 0.07); transform: translateY(-2px); }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  height: 76px; padding-inline: clamp(20px, 4vw, 40px);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; object-fit: contain; }
.brand__word { height: 26px; width: auto; opacity: 0.98; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--ink-soft); font-size: 0.9rem; font-weight: 550;
  position: relative; transition: color 0.2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 49;
  display: none; flex-direction: column; gap: 4px; padding: 16px 24px 26px;
  background: rgba(5, 8, 14, 0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); transform: translateY(-8px); opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.mobile-menu.is-open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a { padding: 14px 4px; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-weight: 550; }
.mobile-menu .btn { margin-top: 14px; border-bottom: 0; }
.mobile-menu .btn--gold {
  color: #1a1205;
}
.mobile-menu .btn--gold:hover,
.mobile-menu .btn--gold:focus {
  color: #1a1205;
}

/* ---------------- Hero ---------------- */
.hero { position: relative; height: 260vh; background: #000; }
.hero__sticky {
  position: sticky; top: 0; height: 100vh; width: 100%;
  overflow: hidden; display: flex; align-items: center;
}

.hero__media {
  position: absolute; inset: 0; z-index: 1;
}
.hero__poster,
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background: #000;
}
.hero__poster {
  z-index: 1;
  will-change: transform, opacity;
  transition: opacity 0.6s ease;
}
.hero__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero__video.is-ready { opacity: 1; }
.hero.is-video-on .hero__poster { opacity: 0; }

.hero__vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(52% 42% at 50% 46%, rgba(0,0,0,0.55) 0%, transparent 70%),
    radial-gradient(80% 65% at 50% 42%, transparent 40%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 20%, transparent 64%, var(--bg) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative; z-index: 4;
  width: min(780px, 100%);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.hero__wordmark {
  height: clamp(28px, 4vw, 36px);
  width: auto;
  margin: 0 auto 22px;
  filter: brightness(1.05);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  padding: 7px 14px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero__title {
  font-size: clamp(2.35rem, 5.6vw, 4.25rem);
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  text-shadow: 0 6px 40px rgba(0,0,0,0.85);
  letter-spacing: -0.035em;
}
.hero__sub {
  margin: 22px auto 0; max-width: 480px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__actions { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero__state {
  position: absolute; z-index: 4; bottom: 42px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px; width: min(400px, 76vw);
}
.hero__state-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim); white-space: nowrap; font-weight: 650;
}
.hero__state-label.is-right { color: var(--cyan); }
.hero__state-track { flex: 1; height: 2px; border-radius: 2px; background: rgba(255,255,255,0.1); overflow: hidden; }
.hero__state-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 12px rgba(0,212,255,0.55);
}

.scroll-hint {
  position: absolute; z-index: 4; bottom: 42px; right: 36px;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-dim); font-size: 0.74rem; letter-spacing: 0.1em; font-weight: 550;
  transition: opacity 0.4s;
}
.scroll-hint__mouse {
  width: 18px; height: 28px; border: 1.5px solid var(--line-2); border-radius: 10px; position: relative;
}
.scroll-hint__mouse span {
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 5px; border-radius: 3px; background: var(--cyan);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 9px); }
  100% { opacity: 0; }
}

/* ---------------- Sections ---------------- */
.section { position: relative; padding: clamp(92px, 12vw, 148px) 0; }
.kicker {
  display: inline-block; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 16px;
}
.kicker--accent { color: var(--cyan); }
.kicker--warn { color: var(--gold); }
.section__title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  margin-bottom: 48px;
  max-width: 18ch;
  letter-spacing: -0.03em;
}

.section--pain {
  background:
    radial-gradient(60% 50% at 10% 0%, rgba(232,197,106,0.06), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.pain-card {
  padding: 34px 32px;
  background: rgba(255,255,255,0.015);
  border: 0;
  border-block: 1px solid var(--line);
  position: relative;
}
.pain-card:nth-child(odd) { border-inline-end: 1px solid var(--line); }
.pain-card__num {
  font-family: var(--font-display);
  font-size: 0.85rem; color: var(--gold); letter-spacing: 0.12em;
}
.pain-card p {
  margin-top: 12px; font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  color: var(--ink); font-weight: 500; line-height: 1.35;
  font-family: var(--font-display); letter-spacing: -0.02em;
}

.section--gain { background: var(--bg-2); }
.gain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.gain-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.gain-item__icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 800; font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--cyan); border: 1px solid rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.06);
}
.gain-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.gain-item p { color: var(--ink-soft); font-size: 1rem; }

.section--diff {
  background:
    radial-gradient(50% 40% at 80% 20%, rgba(0,212,255,0.07), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
.diff-card { padding: 8px 0; border: 0; background: transparent; }
.diff-card__index {
  font-family: var(--font-display);
  font-size: 0.88rem; color: var(--cyan); letter-spacing: 0.1em;
}
.diff-card h3 { font-size: 1.25rem; margin: 12px 0 10px; }
.diff-card p { color: var(--ink-soft); font-size: 0.98rem; }

.section--proof { background: var(--bg); }
.section__lead {
  max-width: 560px; color: var(--ink-soft); font-size: 1.08rem;
  margin: -28px 0 48px;
}
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.showcase-card {
  overflow: hidden; border: 0; background: transparent;
}
.showcase-card__media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius-sm);
}
.showcase-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease); filter: saturate(0.92);
}
.showcase-card:hover .showcase-card__media img { transform: scale(1.04); }
.showcase-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,7,12,0.75) 100%);
}
.showcase-card__body { padding: 20px 4px 8px; }
.showcase-card__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.showcase-card__body p { color: var(--ink-soft); font-size: 0.96rem; }

.cta-final {
  position: relative; padding: clamp(110px, 14vw, 180px) 0;
  overflow: hidden; background: var(--bg-2); text-align: center;
}
.cta-final__glow {
  position: absolute; inset: auto 0 -35% 0; height: 120%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(48% 55% at 50% 100%, rgba(0,212,255,0.22), transparent 70%),
    radial-gradient(36% 45% at 72% 90%, rgba(232,197,106,0.12), transparent 70%);
}
.cta-final__inner { position: relative; z-index: 1; max-width: 760px; }
.cta-final h2 { font-size: clamp(1.95rem, 4.4vw, 3rem); font-weight: 600; text-wrap: balance; }
.cta-final p { margin: 22px auto 38px; max-width: 520px; color: var(--ink-soft); font-size: 1.1rem; }
.cta-final__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.site-footer { background: #03050a; border-top: 1px solid var(--line); padding-top: 70px; }
.site-footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px;
}
.site-footer__brand img { margin-bottom: 16px; opacity: 0.95; }
.site-footer__tag { color: var(--ink); font-weight: 600; }
.site-footer__reg { color: var(--ink-dim); font-size: 0.9rem; margin-top: 8px; max-width: 300px; }
.site-footer__col h4 {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 16px; font-weight: 700;
}
.site-footer__col a, .site-footer__col p {
  display: block; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 10px; transition: color 0.2s;
}
.site-footer__col a:hover { color: var(--cyan); }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 24px 0; border-top: 1px solid var(--line); color: var(--ink-dim); font-size: 0.85rem;
}

.reveal { opacity: 0; transform: translateY(28px); }

/* ---------------- Trust logos ---------------- */
.trust {
  padding: 40px 0 20px;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.trust__inner { text-align: center; }
.trust__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
  margin-bottom: 22px;
}
.trust-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 64px;
}
.trust-logo {
  display: grid;
  place-items: center;
  min-height: 72px;
  opacity: 0.88;
  transition: opacity 0.25s, transform 0.25s;
}
.trust-logo:hover { opacity: 1; transform: translateY(-2px); }
.trust-logo__img {
  max-height: 72px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}
.trust-logo__img[alt="Oi"] {
  max-height: 80px;
}
.trust-logo__img[alt="Mapas Drone"] {
  max-height: 78px;
  max-width: 240px;
}
.trust-logo__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

/* ---------------- Método ---------------- */
.section--method {
  background:
    radial-gradient(50% 40% at 0% 50%, rgba(0,212,255,0.05), transparent 60%),
    var(--bg);
}
.method-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.method-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.method-step:nth-child(2n) { border-right: 0; }
.method-step__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  padding-top: 4px;
}
.method-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.method-step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 36ch;
}

.site-footer__social {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.site-footer__social a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 550;
  transition: color 0.2s;
}
.site-footer__social a:hover { color: var(--cyan); }
.site-footer__legal {
  display: flex;
  gap: 18px;
}
.site-footer__legal a {
  color: var(--ink-dim);
  font-size: 0.86rem;
  transition: color 0.2s;
}
.site-footer__legal a:hover { color: var(--ink-soft); }

/* Copy pós-vídeo: só mobile */
.hero-copy { display: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-card:nth-child(odd) { border-inline-end: 0; }
  .site-header { height: 64px; padding-inline: 16px; padding-top: env(safe-area-inset-top); }
  .mobile-menu { top: calc(64px + env(safe-area-inset-top)); }
  .brand__mark { width: 34px; height: 34px; }
  .brand__word { height: 22px; }
}

@media (max-width: 768px) {
  .container { padding-inline: 18px; }

  /* Mobile: hero = um viewport de vídeo (sem scrub / sem sticky longo) */
  .hero {
    height: 100svh;
    height: 100dvh;
  }
  .hero__sticky {
    position: relative;
    height: 100%;
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero__content {
    display: none !important;
  }
  .hero__vignette {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 18%),
      linear-gradient(180deg, transparent 70%, var(--bg) 100%);
  }
  .hero__grain { opacity: 0.04; }
  .hero__video,
  .hero__poster {
    object-fit: cover;
    object-position: center center;
  }
  .hero__state,
  .scroll-hint {
    display: none !important;
  }

  /* Copy abaixo do vídeo */
  .hero-copy {
    display: block;
    padding: 48px 0 28px;
    background: var(--bg);
  }
  .hero-copy__inner { text-align: center; }
  .hero-copy .eyebrow { margin-bottom: 18px; }
  .hero-copy__title {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
    text-wrap: balance;
  }
  .hero-copy__sub {
    margin: 16px auto 0;
    max-width: 34ch;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.5;
  }
  .hero-copy__sub strong { color: var(--ink); font-weight: 600; }
  .hero-copy__actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-copy__actions .btn {
    width: 100%;
    height: 52px;
  }

  .section { padding: 72px 0; }
  .section__title {
    max-width: none;
    margin-bottom: 28px;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
  .section__lead { margin: -8px 0 28px; font-size: 1rem; }

  .pain-grid,
  .gain-list,
  .diff-grid,
  .showcase,
  .method-list { grid-template-columns: 1fr; gap: 12px; }
  .method-list { border-top: 0; gap: 0; }
  .method-step {
    border-right: 0;
    padding: 24px 4px;
  }
  .trust { padding: 32px 0 12px; }
  .trust-logos { gap: 28px 36px; }
  .trust-logo { min-height: 56px; }
  .trust-logo__img { max-height: 56px; max-width: 160px; }
  .trust-logo__img[alt="Oi"] { max-height: 64px; }
  .trust-logo__img[alt="Mapas Drone"] { max-height: 60px; max-width: 180px; }
  .trust-logo__text { font-size: 1rem; }
  .pain-card {
    padding: 24px 18px;
    border-inline: 0;
  }
  .pain-card:nth-child(odd) { border-inline-end: 0; }
  .gain-item { gap: 14px; }
  .gain-item h3 { font-size: 1.1rem; }
  .diff-card { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .showcase-card__body { padding: 14px 2px 6px; }

  .cta-final { padding: 80px 0; }
  .cta-final p { margin: 16px auto 28px; font-size: 1rem; }
  .cta-final__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-final__actions .btn {
    width: 100%;
    white-space: normal;
    height: auto;
    min-height: 52px;
    padding: 14px 18px;
    text-align: center;
  }

  .site-footer { padding-top: 48px; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .hero__title,
  .hero-copy__title { font-size: 1.7rem; }
  .btn { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .scroll-hint__mouse span { animation: none; }
}
