/* =========================================================
   WebFlyBR — Design System
   Sites que fazem você voar.
========================================================= */
:root {
  --bg: #04060a;
  --bg-1: #06090f;
  --bg-2: #0a0e16;
  --panel: #0b0f18;
  --panel-2: #0f1420;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);

  --blue: #1e77ff;
  --blue-bright: #4d97ff;
  --cyan: #38d1ff;
  --blue-deep: #0b3ecc;
  --blue-glow: rgba(30, 119, 255, 0.38);

  --br-green: #12c964;
  --br-yellow: #ffcb2b;

  --white: #f1f5fc;
  --text: #ccd4e0;
  --text-muted: #7e8a9d;
  --text-faint: #4f5867;

  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
svg { width: 100%; height: 100%; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

::selection { background: var(--blue); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #161c26; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-deep); }

:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed;
  top: 10px; left: 50%;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  transition: transform 0.3s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* =========================================================
   Cursor (desktop only)
========================================================= */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 119, 255, 0.10) 0%, rgba(30, 119, 255, 0) 70%);
  pointer-events: none;
  transform: translate(-9999px, -9999px);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px 2px rgba(56, 209, 255, 0.55);
  pointer-events: none;
  transform: translate(-9999px, -9999px);
  z-index: 9999;
  opacity: 0;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease),
              background 0.3s ease, opacity 0.3s ease;
}
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-hover {
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  background: rgba(30, 119, 255, 0.06);
  border: 1.5px solid var(--blue-bright);
  box-shadow: 0 0 22px 4px rgba(30, 119, 255, 0.22);
}
.cursor-dot.is-down { transform: translate(-9999px, -9999px) scale(0.7); }
@media (max-width: 980px), (pointer: coarse) {
  .cursor-glow, .cursor-dot { display: none; }
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  white-space: nowrap;
}
.btn > span, .btn > svg { position: relative; z-index: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -10px var(--blue-glow);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--blue-glow), 0 0 0 1px rgba(77, 151, 255, 0.4) inset;
}
.btn--primary:hover::after { transform: translateX(130%); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border-color: var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: rgba(30, 119, 255, 0.55);
  background: rgba(30, 119, 255, 0.07);
  transform: translateY(-2px);
}

.btn--small { padding: 10px 20px; font-size: 13.5px; }
.btn--large { padding: 18px 40px; font-size: 16px; }

.btn__arrow { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn--arrow:hover .btn__arrow,
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================
   Reveal + intro
========================================================= */
[data-reveal-child] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-reveal].is-visible [data-reveal-child] { opacity: 1; transform: translateY(0); }
[data-reveal].is-visible [data-reveal-child]:nth-child(1) { transition-delay: 0.04s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(2) { transition-delay: 0.12s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(3) { transition-delay: 0.20s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(4) { transition-delay: 0.28s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(5) { transition-delay: 0.36s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(6) { transition-delay: 0.44s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(7) { transition-delay: 0.52s; }

[data-intro] { opacity: 0; }
body.is-intro [data-intro] { animation: introUp 0.85s var(--ease) both; }
body.is-intro [data-intro="header"] { animation-delay: 0.15s; }
body.is-intro [data-intro="1"] { animation-delay: 0.5s; }
body.is-intro [data-intro="2"] { animation: introTitle 0.95s var(--ease) 0.66s both; }
body.is-intro [data-intro="3"] { animation-delay: 0.86s; }
body.is-intro [data-intro="4"] { animation-delay: 1s; }
body.is-intro [data-intro="5"] { animation-delay: 1.12s; }
body.is-intro [data-intro="6"] { animation: introShowcase 1.1s var(--ease) 1.1s both; }

@keyframes introUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes introTitle {
  from { opacity: 0; transform: translateY(24px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes introShowcase {
  from { opacity: 0; transform: translateY(32px) scale(0.93); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.text-gradient {
  background: linear-gradient(100deg, var(--cyan) 0%, var(--blue-bright) 45%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-weight: 600;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 2px;
}

/* =========================================================
   Header
========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.45s var(--ease), background 0.45s var(--ease),
              border-color 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}
.header.is-scrolled {
  padding: 11px 0;
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--border-soft);
}

.header__inner { display: flex; align-items: center; gap: 40px; }

.brand { flex-shrink: 0; display: flex; align-items: center; }
.brand__logo {
  width: 46px; height: 46px;
  object-fit: contain;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
  filter: drop-shadow(0 0 14px rgba(30, 119, 255, 0.35));
}
.header.is-scrolled .brand__logo { width: 40px; height: 40px; }
.brand:hover .brand__logo {
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 0 20px rgba(56, 209, 255, 0.55));
}

.nav { flex: 1; }
.nav__list { display: flex; align-items: center; gap: 32px; justify-content: center; }
.nav__link {
  font-size: 14.5px;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.header__cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 11px;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.menu-toggle:hover { border-color: rgba(30, 119, 255, 0.4); }
.menu-toggle span {
  display: block;
  width: 16px; height: 1.6px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100vh; height: 100dvh;
  background: linear-gradient(200deg, rgba(8, 11, 18, 0.98), rgba(4, 6, 10, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border);
  z-index: 99;
  padding: calc(env(safe-area-inset-top, 0px) + 96px) 28px calc(env(safe-area-inset-bottom, 0px) + 32px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 119, 255, 0.22), transparent 70%);
  pointer-events: none;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__list { display: flex; flex-direction: column; }
.mobile-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  min-height: 56px;
  padding: 6px 2px;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateX(16px);
  transition: color 0.3s ease, transform 0.3s var(--ease), opacity 0.3s ease;
}
.mobile-menu__link::after {
  content: '';
  width: 7px; height: 7px;
  border-right: 1.6px solid var(--text-faint);
  border-top: 1.6px solid var(--text-faint);
  transform: rotate(45deg);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: translateX(0); }
.mobile-menu.is-open .mobile-menu__list li:nth-child(1) .mobile-menu__link { transition-delay: 0.06s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(2) .mobile-menu__link { transition-delay: 0.11s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(3) .mobile-menu__link { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(4) .mobile-menu__link { transition-delay: 0.21s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(5) .mobile-menu__link { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(6) .mobile-menu__link { transition-delay: 0.31s; }
.mobile-menu__link:active { color: var(--blue-bright); }
.mobile-menu__link:active::after { border-color: var(--blue-bright); transform: rotate(45deg) translate(2px, -2px); }
.mobile-menu__cta {
  align-self: stretch;
  justify-content: center;
  min-height: 52px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.36s, transform 0.3s var(--ease) 0.36s;
}
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: translateY(0); }

/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  overflow: hidden;
  background: var(--bg);
}

.hero__scene { position: absolute; inset: 0; z-index: 0; }
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; }

.hero__grid {
  position: absolute; inset: -10%;
  background-image:
    linear-gradient(rgba(30, 119, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 119, 255, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 72% 62% at 60% 32%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 60% 32%, #000 0%, transparent 78%);
  animation: gridFade 1s ease-out both;
}
@keyframes gridFade { from { opacity: 0; } to { opacity: 1; } }

.hero__aurora { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0; animation: auroraIn 1.4s ease-out both; }
.hero__aurora--1 {
  width: 720px; height: 720px;
  top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(30, 119, 255, 0.30) 0%, transparent 70%);
  animation: auroraIn 1.4s ease-out both, drift1 20s ease-in-out infinite 1.4s;
}
.hero__aurora--2 {
  width: 540px; height: 540px;
  bottom: -240px; left: -180px;
  background: radial-gradient(circle, rgba(11, 62, 204, 0.28) 0%, transparent 70%);
  animation: auroraIn 1.4s ease-out 0.2s both, drift2 24s ease-in-out infinite 1.6s;
}
.hero__aurora--3 {
  width: 420px; height: 420px;
  top: 26%; left: 40%;
  background: radial-gradient(circle, rgba(56, 209, 255, 0.14) 0%, transparent 70%);
  animation: auroraIn 1.4s ease-out 0.35s both, drift2 28s ease-in-out infinite 4s;
}
@keyframes auroraIn { to { opacity: 1; } }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-46px, 34px); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(34px, -24px); } }

/* Speed / motion streaks — abstract "fly" concept */
.hero__streaks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__streaks span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 209, 255, 0.55), transparent);
  opacity: 0;
  transform: translateX(-40vw);
  animation: streak 7s linear infinite;
}
.hero__streaks span:nth-child(1) { top: 22%; width: 340px; animation-delay: 0.5s; animation-duration: 6.5s; }
.hero__streaks span:nth-child(2) { top: 40%; width: 220px; animation-delay: 2.4s; animation-duration: 8s; opacity: 0; }
.hero__streaks span:nth-child(3) { top: 58%; width: 400px; animation-delay: 1.2s; animation-duration: 5.5s; }
.hero__streaks span:nth-child(4) { top: 72%; width: 180px; animation-delay: 3.6s; animation-duration: 9s; }
.hero__streaks span:nth-child(5) { top: 12%; width: 260px; animation-delay: 4.8s; animation-duration: 7s; }
@keyframes streak {
  0% { transform: translateX(-40vw); opacity: 0; }
  8% { opacity: 0.9; }
  60% { opacity: 0.5; }
  100% { transform: translateX(150vw); opacity: 0; }
}

.hero__horizon {
  position: absolute;
  left: 50%; bottom: -2px;
  transform: translateX(-50%);
  width: 120%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 209, 255, 0.4), transparent);
  box-shadow: 0 0 60px 10px rgba(30, 119, 255, 0.18);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, transparent 40%, var(--bg) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__content, .hero__showcase { min-width: 0; }

.hero__title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 20px 0 24px;
}
.hero__title .text-gradient { filter: drop-shadow(0 0 28px rgba(30, 119, 255, 0.4)); }

.hero__text {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__actions .btn--primary { animation: ctaPulse 3.4s ease-in-out 2s infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 24px -10px var(--blue-glow), 0 0 0 0 rgba(30, 119, 255, 0.3); }
  50% { box-shadow: 0 8px 24px -10px var(--blue-glow), 0 0 0 10px rgba(30, 119, 255, 0); }
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}
.hero__meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero__meta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px 1px var(--blue-glow);
}
.hero__meta .dot--br {
  background: var(--br-green);
  box-shadow: 0 0 8px 1px rgba(18, 201, 100, 0.5);
}

/* Hero showcase — browser + laptop + phone */
.hero__showcase { perspective: 1600px; }
.showcase {
  position: relative;
  transform: perspective(1400px) rotateY(-14deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
@media (min-width: 961px) { .showcase { margin-left: 6%; } }
.showcase__glow {
  position: absolute;
  inset: -22% -16%;
  background: radial-gradient(ellipse 58% 58% at 52% 46%, rgba(30, 119, 255, 0.20) 0%, transparent 72%);
  z-index: -1;
}

.frame {
  border-radius: 14px;
  background: linear-gradient(160deg, #10151f 0%, #080b12 100%);
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px -32px rgba(0, 0, 0, 0.75), 0 0 60px -22px rgba(30, 119, 255, 0.22);
}
.frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--border-soft);
}
.frame__dot { width: 7px; height: 7px; border-radius: 50%; background: #2a313d; }
.frame__url {
  margin-left: 10px;
  font-size: 10.5px;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.03);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.frame__screen { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

.frame--browser {
  position: relative;
  width: 78%;
  margin-left: auto;
  overflow: hidden;
  transform: translateZ(-40px) translateX(6%);
  animation: floatA 8s ease-in-out infinite;
}
.frame__scan {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 34%, rgba(140, 200, 255, 0.14) 50%, transparent 64%);
  transform: translateX(-120%);
  animation: scanOnce 1.2s ease-out 1.9s 1 both;
  pointer-events: none;
}
@keyframes scanOnce { to { transform: translateX(120%); } }

.frame--laptop {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-top: -46px;
  transform: translateZ(20px);
  animation: floatB 8s ease-in-out infinite;
}
.frame__screen--laptop { padding: 20px; min-height: 190px; }
.frame__base {
  height: 12px;
  margin: 0 -7%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #161c26, #0c0f16);
  border: 1px solid var(--border-soft);
  border-top: none;
  box-shadow: 0 24px 40px -18px rgba(0, 0, 0, 0.7);
  position: relative;
}
.frame__base::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  border-radius: 0 0 6px 6px;
  background: #05070c;
}

.frame--phone {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: 128px;
  padding: 20px 8px 14px;
  border-radius: 22px;
  transform: translateZ(70px);
  animation: floatC 8s ease-in-out infinite;
}
.frame__notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 5px;
  border-radius: 4px;
  background: #1b212b;
}
.frame__screen--phone { padding: 6px; gap: 8px; }

@keyframes floatA { 0%, 100% { transform: translateZ(-40px) translateX(6%) translateY(0); } 50% { transform: translateZ(-40px) translateX(6%) translateY(-12px); } }
@keyframes floatB { 0%, 100% { transform: translateZ(20px) translateY(0); } 50% { transform: translateZ(20px) translateY(-16px); } }
@keyframes floatC { 0%, 100% { transform: translateZ(70px) translateY(0); } 50% { transform: translateZ(70px) translateY(-20px); } }

/* Abstract UI inside frames */
.ui-row { display: flex; align-items: center; gap: 8px; }
.ui-logo { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg, var(--cyan), var(--blue-deep)); flex-shrink: 0; }
.ui-line { height: 5px; width: 30px; border-radius: 3px; background: rgba(255, 255, 255, 0.09); }
.ui-line--accent { margin-left: auto; width: 44px; background: linear-gradient(90deg, var(--blue), var(--blue-deep)); opacity: 0.8; }
.ui-hero { display: flex; flex-direction: column; gap: 9px; padding: 4px 0; }
.ui-bar { display: block; border-radius: 5px; background: rgba(255, 255, 255, 0.09); }
.ui-bar--xl { height: 15px; width: 82%; }
.ui-bar--l { height: 11px; width: 64%; }
.ui-bar--m { height: 9px; width: 48%; background: rgba(255, 255, 255, 0.06); }
.ui-bar--s { height: 7px; width: 62%; background: rgba(255, 255, 255, 0.08); }
.ui-cta { width: 104px; height: 24px; border-radius: 20px; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); margin-top: 4px; }
.ui-cta--sm { width: 78px; height: 20px; }
.ui-cta--block { width: 100%; height: 26px; border-radius: 8px; }
.ui-cards { display: flex; gap: 9px; }
.ui-cards span { flex: 1; height: 52px; border-radius: 8px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-soft); }
.ui-cards--mini span { height: 34px; }
.ui-split { display: flex; gap: 14px; }
.ui-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ui-panel { width: 42%; border-radius: 10px; background: linear-gradient(160deg, rgba(30, 119, 255, 0.16), rgba(56, 209, 255, 0.04)); border: 1px solid var(--border-soft); }
.ui-thumb { display: block; height: 60px; border-radius: 8px; background: linear-gradient(160deg, rgba(30, 119, 255, 0.18), transparent); border: 1px solid var(--border-soft); }

.showcase__spark {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px 2px rgba(56, 209, 255, 0.6);
  opacity: 0;
  animation: sparkIn 0.6s ease-out 1.6s both, sparkFloat 5s ease-in-out infinite 1.6s;
}
.showcase__spark--1 { top: 2%; left: 6%; }
.showcase__spark--2 { bottom: 6%; right: -2%; animation-delay: 1.75s, 1.75s; }
.showcase__spark--3 { top: 44%; right: 16%; width: 3px; height: 3px; animation-delay: 1.9s, 1.9s; }
@keyframes sparkIn { to { opacity: 0.9; } }
@keyframes sparkFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  z-index: 1;
  opacity: 0;
  animation: introUp 0.6s ease-out 2s both;
}
.scroll-hint span {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--cyan);
  animation: scrollDot 2s ease-in-out infinite 2.4s;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 7px; }
}

/* =========================================================
   Highlights strip
========================================================= */
.highlights {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-1);
  position: relative;
  z-index: 1;
}
.highlights__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px 30px;
  padding: 32px;
}
.highlight { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.highlight svg { width: 20px; height: 20px; color: var(--blue-bright); flex-shrink: 0; }

/* =========================================================
   Sections
========================================================= */
.section { padding: 130px 0; position: relative; }
.section--alt { background: var(--bg-1); }
.section__head { max-width: 660px; margin-bottom: 66px; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section__sub { margin-top: 16px; color: var(--text-muted); font-size: 16px; }

/* =========================================================
   Services
========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--panel);
  padding: 42px 32px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card__cta {
  margin-top: auto;
  align-self: flex-start;
  padding-top: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover .service-card__cta,
.service-card:focus-within .service-card__cta { opacity: 1; transform: translateY(0); }
@media (hover: none) { .service-card__cta { opacity: 1; transform: none; } }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(30, 119, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover, .service-card:focus-visible { background: var(--panel-2); }
.service-card:hover::after { opacity: 1; }
.service-card__num {
  position: absolute;
  top: 26px; right: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.service-card__icon {
  width: 38px; height: 38px;
  color: var(--blue-bright);
  margin-bottom: 24px;
  transition: transform 0.45s var(--ease), color 0.45s var(--ease);
}
.service-card:hover .service-card__icon { transform: translateY(-4px) scale(1.06); color: var(--cyan); }
.service-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; }
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue-deep));
  transition: height 0.45s var(--ease);
}
.service-card:hover::before, .service-card:focus-visible::before { height: 100%; }

/* =========================================================
   Projetos — showcase
========================================================= */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.work { position: relative; }
.work__viewport {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #10151f 0%, #080b12 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  padding-bottom: 34px;
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.work:hover .work__viewport {
  transform: translateY(-10px);
  border-color: rgba(30, 119, 255, 0.4);
  box-shadow: 0 34px 70px -28px rgba(30, 119, 255, 0.3);
}
.work__browser { border-bottom: 1px solid var(--border-soft); }
.work__canvas {
  padding: 24px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 170px;
  justify-content: center;
}
.work__canvas--01 { background: radial-gradient(circle at 20% 15%, rgba(30, 119, 255, 0.14), transparent 60%); }
.work__canvas--02 { background: radial-gradient(circle at 80% 25%, rgba(11, 62, 204, 0.18), transparent 60%); }
.work__canvas--03 { background: radial-gradient(circle at 50% 85%, rgba(56, 209, 255, 0.12), transparent 60%); }
.work__phone {
  position: absolute;
  right: 16px; bottom: 46px;
  width: 74px;
  padding: 10px 8px;
  border-radius: 12px;
  background: linear-gradient(160deg, #141a24, #0a0d14);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.7);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}
.work:hover .work__phone { transform: translateY(0); opacity: 1; }
.work__phone .ui-thumb { height: 40px; }
.work__info {
  position: absolute;
  left: 22px; right: 22px; bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work__info h3 { font-size: 16px; margin-bottom: 3px; }
.work__info p { font-size: 13px; color: var(--text-faint); }
.work__tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid rgba(30, 119, 255, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

/* =========================================================
   Como funciona — trajetória
========================================================= */
.process { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 119, 255, 0.07), transparent 70%); }
.process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}
.process__path {
  position: absolute;
  top: 33px;
  left: 8%; right: 8%;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  z-index: 0;
  overflow: visible;
}
.process__path-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--blue-deep));
  transition: width 1.8s var(--ease);
}
[data-reveal].is-visible .process__path-fill { width: 100%; }
.process__comet {
  position: absolute;
  top: 50%; left: 0;
  width: 8px; height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px 3px var(--cyan), -14px 0 20px 2px rgba(56, 209, 255, 0.4);
  opacity: 0;
}
[data-reveal].is-visible .process__comet { animation: comet 1.8s var(--ease) 0.1s forwards; }
@keyframes comet {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.process__step { position: relative; z-index: 1; }
.process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #eaf2ff;
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 100%);
  width: 66px; height: 66px;
  border-radius: 50%;
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px var(--bg), 0 12px 30px -8px var(--blue-glow);
}
.process__step h3 { font-size: 17px; margin-bottom: 9px; }
.process__step p { color: var(--text-muted); font-size: 14px; }

/* =========================================================
   Diferenciais
========================================================= */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diferencial {
  background: var(--panel);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.35s ease;
}
.diferencial:hover { background: var(--panel-2); }
.diferencial svg { width: 22px; height: 22px; color: var(--blue-bright); flex-shrink: 0; }
.diferencial span { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.35; }

/* =========================================================
   Sobre
========================================================= */
.sobre__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.sobre__text p { color: var(--text-muted); font-size: 15.5px; max-width: 500px; margin-top: 20px; }
.sobre__visual { display: flex; justify-content: center; }

.orbit {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
}
.orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(30, 119, 255, 0.2);
  border-radius: 50%;
}
.orbit__ring--1 { animation: spin 26s linear infinite; }
.orbit__ring--2 { inset: 18%; border-color: rgba(56, 209, 255, 0.16); border-style: dashed; animation: spin 18s linear infinite reverse; }
.orbit__core {
  position: absolute;
  top: 50%; left: 50%;
  width: 66px; height: 66px;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  box-shadow: 0 0 50px -6px var(--blue-glow);
  animation: floatB 6s ease-in-out infinite;
}
.orbit__sat {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px 3px rgba(56, 209, 255, 0.6);
  top: 50%; left: 50%;
  margin: -6px;
}
.orbit__sat--1 { animation: orbit1 8s linear infinite; }
.orbit__sat--2 { width: 8px; height: 8px; margin: -4px; background: var(--br-green); box-shadow: 0 0 12px 2px rgba(18, 201, 100, 0.5); animation: orbit2 12s linear infinite; }
@keyframes orbit1 { from { transform: rotate(0) translateX(160px) rotate(0); } to { transform: rotate(360deg) translateX(160px) rotate(-360deg); } }
@keyframes orbit2 { from { transform: rotate(0) translateX(110px) rotate(0); } to { transform: rotate(-360deg) translateX(110px) rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit__trail {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(56, 209, 255, 0.5);
  animation: spin 8s linear infinite;
}

/* =========================================================
   CTA final
========================================================= */
.cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-1);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.cta__scene { position: absolute; inset: 0; }
.cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 820px; height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(30, 119, 255, 0.20), transparent 70%);
  filter: blur(8px);
}
.cta__streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 209, 255, 0.6), transparent);
  opacity: 0;
  animation: streak 6s linear infinite;
}
.cta__streak--1 { top: 30%; width: 300px; animation-delay: 0.5s; }
.cta__streak--2 { top: 54%; width: 200px; animation-delay: 2.5s; animation-duration: 8s; }
.cta__streak--3 { top: 70%; width: 360px; animation-delay: 4s; animation-duration: 5s; }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2rem, 4vw, 3.1rem); max-width: 640px; margin: 0 auto 18px; }
.cta p { color: var(--text-muted); font-size: 16.5px; max-width: 480px; margin: 0 auto 36px; }

/* =========================================================
   Contato
========================================================= */
.contato__inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 66px; }
.contato__info p { color: var(--text-muted); margin-top: 18px; max-width: 400px; }
.contato__wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 15px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, #29e08a 0%, var(--br-green) 100%);
  color: #04140b;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 14px 34px -14px rgba(18, 201, 100, 0.55);
  transition: background 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contato__wpp svg { width: 19px; height: 19px; }
.contato__wpp:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(18, 201, 100, 0.7); }
.contato__wpp-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #04140b;
  background: rgba(4, 20, 11, 0.16);
  padding: 4px 9px;
  border-radius: 100px;
}
@media (max-width: 480px) { .contato__wpp-tag { display: none; } }

.contato__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--text-faint);
  max-width: 340px;
}
.contato__divider span { flex: 1; height: 1px; background: var(--border-soft); }

.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.form__field input,
.form__field select,
.form__field textarea {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--text-faint); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--panel-2);
  box-shadow: 0 0 0 4px rgba(30, 119, 255, 0.12);
}
.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237e8a9d' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.form__field.is-invalid input,
.form__field.is-invalid select,
.form__field.is-invalid textarea { border-color: #ff6b6b; }
.form__submit { margin-top: 6px; align-self: flex-start; }
.form__note { font-size: 12.5px; color: var(--text-faint); margin-top: -2px; line-height: 1.5; }

/* =========================================================
   Footer
========================================================= */
.footer { border-top: 1px solid var(--border-soft); padding: 78px 0 0; background: var(--bg-1); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__logo {
  width: 54px; height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(30, 119, 255, 0.3));
  margin-bottom: 14px;
}
.footer__slogan { color: var(--text-muted); font-size: 14px; max-width: 240px; padding-bottom: 14px; position: relative; }
.footer__slogan::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 44px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--br-green), var(--br-yellow));
}
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-faint);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer__social-btn svg { width: 17px; height: 17px; }
.footer__social-btn:hover { color: var(--blue-bright); border-color: rgba(30, 119, 255, 0.35); }
.footer__col h4 { font-size: 13.5px; color: var(--white); margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: var(--text-muted); font-size: 14px; transition: color 0.3s ease, padding-left 0.3s var(--ease); }
.footer__col a:hover { color: var(--blue-bright); padding-left: 4px; }
.footer__bottom { border-top: 1px solid var(--border-soft); padding: 22px 32px; text-align: center; }
.footer__bottom p { color: var(--text-faint); font-size: 12.5px; }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }

  .hero { padding: 130px 0 90px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__showcase { order: -1; max-width: 460px; margin: 0 auto; }
  .showcase { transform: perspective(1400px) rotateY(-8deg); }
  .hero__content { text-align: center; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__meta { justify-content: center; }

  .sobre__inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre__visual { order: -1; }
  .contato__inner { grid-template-columns: 1fr; gap: 44px; }

  .process__track { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .process__path { display: none; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 92px 0; }
  .section__head { margin-bottom: 48px; }

  .btn { min-height: 48px; padding: 14px 26px; }
  .btn--small { min-height: 42px; }
  .btn--large { min-height: 54px; }
  .menu-toggle { width: 44px; height: 44px; }
  .service-card__cta { min-height: 42px; opacity: 1; transform: none; }

  [data-reveal-child] { transition-duration: 0.62s; transform: translateY(18px); }
  .header__inner { gap: 16px; }

  .services { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process__track { grid-template-columns: 1fr; gap: 30px; }

  .hero__title { font-size: clamp(2.3rem, 9vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { gap: 14px 20px; }

  .frame--phone { width: 108px; right: -2%; }
  .highlights__inner { justify-content: flex-start; padding: 26px 20px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .form__row { grid-template-columns: 1fr; }
  .cta { padding: 96px 0; }
}

@media (max-width: 420px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__showcase { max-width: 300px; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.3rem); }
  .frame--phone { width: 88px; right: 3%; }
  .mobile-menu__link { padding: 12px 0; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero__showcase { max-width: 258px; }
  .hero__meta { font-size: 12px; }
  .service-card { padding: 34px 22px; }
  .frame--phone { display: none; }
  .hero__title { font-size: clamp(1.7rem, 7.6vw, 2.1rem); }
  .section__title { font-size: clamp(1.55rem, 6.4vw, 1.9rem); }
  .highlights__inner { gap: 16px 22px; }
}

/* =========================================================
   Reduced motion
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  [data-intro], [data-reveal-child] { opacity: 1 !important; transform: none !important; }
  .showcase { transform: perspective(1400px) rotateY(-12deg) !important; }
}
