/* =========================================================
   AGÊNCIA AERIS — Dark Premium
   ========================================================= */

:root {
  /* palette */
  --bg:           #06070C;
  --bg-2:         #0A0C14;
  --surface:      rgba(255, 255, 255, 0.035);
  --surface-2:    rgba(255, 255, 255, 0.06);
  --border:       rgba(255, 255, 255, 0.09);
  --border-2:     rgba(255, 255, 255, 0.14);
  --text:         #ECEEF5;
  --muted:        #939AAD;
  --muted-2:      #6B7180;

  --cyan:   #2DD4FF;
  --indigo: #7C8BFF;
  --violet: #C46BFF;

  --grad:      linear-gradient(115deg, #2DD4FF 0%, #7C8BFF 48%, #C46BFF 100%);
  --grad-soft: linear-gradient(115deg, rgba(45,212,255,.16), rgba(196,107,255,.16));

  --radius:    18px;
  --radius-lg: 26px;
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --glow:      0 0 0 1px rgba(124,139,255,.25), 0 18px 50px -12px rgba(124,139,255,.35);

  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(124,139,255,.35); color: #fff; }

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* =========================================================
   AMBIENT BACKGROUND
   ========================================================= */
.bg-ambient { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }

.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform; }
.blob--1 { width: 620px; height: 620px; top: -180px; left: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(45,212,255,.55), transparent 65%);
  animation: drift1 22s var(--ease) infinite alternate; }
.blob--2 { width: 560px; height: 560px; top: 18%; right: -160px;
  background: radial-gradient(circle at 60% 40%, rgba(196,107,255,.5), transparent 65%);
  animation: drift2 26s var(--ease) infinite alternate; }
.blob--3 { width: 520px; height: 520px; bottom: -160px; left: 35%;
  background: radial-gradient(circle at 50% 50%, rgba(124,139,255,.45), transparent 65%);
  animation: drift3 30s var(--ease) infinite alternate; }

@keyframes drift1 { to { transform: translate(120px, 80px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(-100px, 60px) scale(1.05); } }
@keyframes drift3 { to { transform: translate(60px, -90px) scale(1.12); } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

.noise {
  position: absolute; inset: 0; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor spotlight */
.spotlight {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px; z-index: -1;
  transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(124,139,255,.12), transparent 60%);
  opacity: 0; transition: opacity .4s ease;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 14px 26px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  letter-spacing: .2px; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease, border-color .3s ease;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  position: relative; color: #06070C; font-weight: 700;
  background: var(--grad); background-size: 160% 160%;
  box-shadow: 0 12px 34px -10px rgba(124,139,255,.6);
  animation: gradShift 6s ease infinite;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(124,139,255,.8); }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.btn--ghost {
  border: 1px solid var(--border-2); color: var(--text);
  background: var(--surface); backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--cyan); background: var(--surface-2); transform: translateY(-2px); }

.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0; transition: padding .35s var(--ease), background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(8, 9, 15, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { flex-shrink: 0; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__word {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  letter-spacing: 3px; color: var(--text);
}
.brand__word small { font-size: 8.5px; letter-spacing: 5px; font-weight: 500; color: var(--muted-2); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) {
  position: relative; font-size: 15px; color: var(--muted); font-weight: 500;
  transition: color .25s ease;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--grad); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--text); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; font-size: 14px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: 160px; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  min-height: calc(100vh - 220px);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--surface);
  font-size: 13.5px; color: var(--muted); font-weight: 500; letter-spacing: .2px;
  margin-bottom: 26px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(45,212,255,.18); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(45,212,255,.18); } 50% { box-shadow: 0 0 0 7px rgba(45,212,255,.05); } }

.hero__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 520px; margin-bottom: 34px; }
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 18px; }
.hero__stats li { display: flex; align-items: center; gap: 12px; }
.stat__ic {
  flex-shrink: 0; display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 13px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--cyan);
}
.stat__ic svg { width: 21px; height: 21px; }
.stat__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero__stats strong { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; line-height: 1.15; }
.stat__desc { font-size: 12.5px; color: var(--muted-2); line-height: 1.4; }

/* hero visual */
.hero__visual { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }

.orbit { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.orbit__ring {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(124,139,255,.18);
  animation: spin 26s linear infinite;
}
.orbit__ring::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px 2px var(--cyan); transform: translateX(-50%);
}
.orbit__ring--2 { width: 480px; height: 480px; border-color: rgba(196,107,255,.14); animation-duration: 38s; animation-direction: reverse; }
.orbit__ring--2::before { background: var(--violet); box-shadow: 0 0 16px 2px var(--violet); }
@keyframes spin { to { transform: rotate(360deg); } }

.mock {
  position: relative; z-index: 2; width: min(420px, 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, rgba(20,22,34,.92), rgba(12,13,22,.92));
  border: 1px solid var(--border-2); box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(10px);
  animation: floatY 6s ease-in-out infinite;
  transform: perspective(1200px) rotateY(-9deg) rotateX(4deg);
}
@keyframes floatY { 50% { transform: perspective(1200px) rotateY(-9deg) rotateX(4deg) translateY(-14px); } }

.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.mock__bar > span { width: 11px; height: 11px; border-radius: 50%; background: var(--border-2); }
.mock__bar > span:nth-child(1) { background: #ff5f57; } .mock__bar > span:nth-child(2) { background: #febc2e; } .mock__bar > span:nth-child(3) { background: #28c840; }
.mock__url { margin-left: 10px; flex: 1; font-size: 11.5px; color: var(--muted-2); padding: 5px 12px; border-radius: 8px; background: rgba(255,255,255,.04); }

.mock__body { padding: 22px; }
.mock__hero { height: 96px; border-radius: 12px; background: var(--grad); background-size: 200% 200%; animation: gradShift 7s ease infinite; opacity: .9; margin-bottom: 18px; }
.mock__row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.mock__card { height: 58px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); }
.mock__line { height: 12px; border-radius: 6px; background: var(--surface-2); margin-bottom: 10px; }
.mock__line--short { width: 60%; }

.float-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  padding: 13px 17px; border-radius: 16px;
  background: rgba(16,18,28,.82); border: 1px solid var(--border-2);
  backdrop-filter: blur(14px); box-shadow: var(--shadow);
}
.float-card strong { display: block; font-family: var(--font-head); font-size: 15px; }
.float-card small { color: var(--muted-2); font-size: 12px; }
.fc__icon {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-soft); border: 1px solid var(--border); font-size: 16px;
}
.float-card--1 { top: 38px; left: -8px; animation: floatY 5s ease-in-out infinite .4s; }
.float-card--2 { bottom: 48px; right: -14px; animation: floatY 5.6s ease-in-out infinite .9s; }

/* marquee */
.marquee { margin-top: 90px; padding: 22px 0; border-block: 1px solid var(--border); overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: scroll 32s linear infinite; }
.marquee__track span { font-family: var(--font-head); font-size: 1.25rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.marquee__track i { color: var(--indigo); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { position: relative; padding: 110px 0; }
.section--alt::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(124,139,255,.04) 50%, transparent);
}

.section__head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}
.section__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.12; letter-spacing: -1px; }
.section__lead { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

/* ---------- services cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  position: relative; padding: 32px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(124,139,255,.14), transparent 60%);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card__icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px;
  background: var(--grad-soft); border: 1px solid var(--border); color: var(--cyan);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-head); font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- services catalog (lista editorial) ---------- */
.catalog { max-width: 1000px; margin: 0 auto; border-top: 1px solid var(--border-2); }
.cat {
  display: grid;
  grid-template-columns: 52px minmax(210px, 1fr) minmax(0, 1.5fr) max-content 22px;
  gap: 30px; align-items: center;
  padding: 32px 22px; border-bottom: 1px solid var(--border); border-radius: 16px;
  transition: background .4s ease;
}
.cat:hover { background: var(--surface); }
.cat__no { font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; color: var(--muted-2); transition: color .3s ease; }
.cat__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.4rem, 2.3vw, 2rem); letter-spacing: -.5px; line-height: 1.12; transition: color .3s ease; }
.cat:hover .cat__no,
.cat:hover .cat__title { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cat__desc { color: var(--muted); font-size: 1rem; line-height: 1.55; }
.cat__tags { font-family: var(--font-head); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; text-align: right; }
.cat__arrow { font-size: 1.3rem; color: var(--cyan); justify-self: end; opacity: 0; transform: translateX(-8px); transition: opacity .35s ease, transform .35s var(--ease); }
.cat:hover .cat__arrow { opacity: 1; transform: none; }
.catalog .reveal:nth-child(2) { transition-delay: .08s; }
.catalog .reveal:nth-child(3) { transition-delay: .16s; }
@media (max-width: 880px) {
  .cat { grid-template-columns: 42px 1fr; gap: 4px 16px; padding: 28px 14px; align-items: start; }
  .cat__no { grid-row: 1; }
  .cat__title { grid-column: 2; }
  .cat__desc { grid-column: 2; margin-top: 10px; }
  .cat__tags { grid-column: 2; text-align: left; margin-top: 12px; }
  .cat__arrow { display: none; }
}

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 30px 26px 30px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .4s var(--ease), border-color .4s ease;
}
.step:hover { transform: translateY(-5px); border-color: var(--border-2); }
.step__num {
  display: inline-block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 700;
  line-height: 1; margin-bottom: 16px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 36px; }
.feature { display: flex; gap: 16px; padding: 22px; border-radius: var(--radius); border: 1px solid transparent; transition: border-color .35s ease, background .35s ease; }
.feature:hover { border-color: var(--border); background: var(--surface); }
.feature__bullet {
  flex-shrink: 0; width: 13px; height: 13px; margin-top: 7px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 14px rgba(124,139,255,.6);
}
.feature h4 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ---------- founders ---------- */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin-inline: auto; }
.founder {
  position: relative; padding: 40px 34px; border-radius: var(--radius-lg); text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .4s var(--ease), border-color .4s ease;
}
.founder:hover { transform: translateY(-6px); border-color: var(--border-2); }
.founder__avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 20px;
  position: relative; overflow: hidden;
  background: var(--grad-soft); border: 1.5px solid var(--border-2);
}
.founder__avatar::after {
  content: attr(data-initials); position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.7rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.founder__avatar img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.founder h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 6px; }
.founder__role { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.founder p { color: var(--muted); font-size: 15px; }
.founder strong { color: var(--text); }

/* ---------- contact ---------- */
.contact__panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
  padding: clamp(28px, 4vw, 56px); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(18,20,32,.9), rgba(10,11,20,.9));
  border: 1px solid var(--border-2); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.contact__panel::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(124,139,255,.25), transparent 65%); filter: blur(30px);
}
.contact__intro { position: relative; }
.contact__intro .section__title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.contact__intro .kicker, .contact__intro .section__title, .contact__intro .section__lead { text-align: left; }
.contact__info { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact__info li { display: flex; align-items: center; gap: 13px; }
.ci__ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--border); color: var(--cyan); }
.contact__info a { font-weight: 500; transition: color .25s ease; }
.contact__info a:hover { color: var(--cyan); }

.contact__form { position: relative; display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--muted); font-family: var(--font-head); }
.field label small { color: var(--muted-2); font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 15px; resize: vertical;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--indigo); background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 4px rgba(124,139,255,.12);
}
.form__note { font-size: 14px; min-height: 20px; }
.form__note.ok { color: #4ade80; } .form__note.err { color: #f87171; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--border); padding-top: 60px; margin-top: 40px; background: linear-gradient(180deg, transparent, rgba(124,139,255,.04)); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand p { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 320px; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__social a { color: var(--muted); font-size: 15px; transition: color .25s ease; width: fit-content; }
.footer__nav a:hover, .footer__social a:hover { color: var(--cyan); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; padding: 24px; border-top: 1px solid var(--border); margin-top: 0; color: var(--muted-2); font-size: 13.5px; flex-wrap: wrap; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.cards .reveal:nth-child(2), .steps .reveal:nth-child(2), .features .reveal:nth-child(2) { transition-delay: .08s; }
.cards .reveal:nth-child(3), .steps .reveal:nth-child(3), .features .reveal:nth-child(3) { transition-delay: .16s; }
.cards .reveal:nth-child(4), .steps .reveal:nth-child(4), .features .reveal:nth-child(4) { transition-delay: .24s; }
.features .reveal:nth-child(5) { transition-delay: .12s; } .features .reveal:nth-child(6) { transition-delay: .2s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero__visual { height: 420px; order: -1; }
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
    padding: 40px; background: rgba(8,9,15,.96); backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform .45s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a:not(.btn) { font-size: 1.3rem; font-family: var(--font-head); }
  .nav__cta { font-size: 1rem; padding: 12px 24px; }
  .nav__toggle { display: flex; }

  .hero { padding-top: 130px; }
  .contact__panel { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .cards, .steps, .features, .founders { grid-template-columns: 1fr; }
  .hero__visual { height: 360px; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .float-card--1 { left: 2px; } .float-card--2 { right: 0; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
