* { box-sizing: border-box; }

:root {
  --bg-0: #05070a;
  --bg-1: #0a0d12;
  --bg-2: #12171f;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --text: #eef2f7;
  --muted: #a6b0bd;
  --muted-2: #7d8898;
  --gold: #d9b26a;
  --gold-2: #f0d089;
  --gold-3: #8a6a34;
  --steel-1: #eef3f8;
  --steel-2: #a3aebb;
  --steel-3: #5f6977;
  --wa: #25d366;
  --wa-2: #128c4a;
  --shadow-xl: 0 40px 120px rgba(0,0,0,.55);
}

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(ellipse at 50% -10%, #131924 0%, #06080b 55%, #04060a 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.bg-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 78%);
}

.bg-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
}
.bg-spot--1 {
  width: 780px; height: 780px;
  top: -240px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(217,178,106,.28), transparent 60%);
}
.bg-spot--2 {
  width: 620px; height: 620px;
  bottom: -220px; right: -160px;
  background: radial-gradient(circle, rgba(37,211,102,.14), transparent 65%);
}

.bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 0.06 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
  opacity: .5;
  mix-blend-mode: overlay;
}

/* ============ LAYOUT ============ */
.topbar {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 0;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.topbar__brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--steel-1);
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 13px;
}
.topbar__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  box-shadow: 0 0 18px rgba(217,178,106,.55);
}
.topbar__status {
  margin: 0;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(37,211,102,.24);
  border-radius: 999px;
  background: rgba(37,211,102,.07);
  color: #a2f0bf;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
}
.topbar__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: waPulse 2s infinite;
}

.stage {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px) 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============ EAGLE / LOGO ============ */
.eagle-scene {
  position: relative;
  width: min(440px, 82vw);
  height: min(440px, 82vw);
  margin: clamp(20px, 4vw, 40px) auto 8px;
  display: grid;
  place-items: center;
}

.eagle-glow {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(217,178,106,.55), rgba(217,178,106,.12) 45%, transparent 72%);
  filter: blur(30px);
  animation: glowPulse 5.5s ease-in-out infinite;
}

.eagle-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.eagle-rings span {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(217,178,106,.22);
  animation: ringExpand 4.8s ease-out infinite;
}
.eagle-rings span:nth-child(2) { animation-delay: 1.6s; }
.eagle-rings span:nth-child(3) { animation-delay: 3.2s; }

.eagle-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  animation: soar 5.6s ease-in-out infinite;
}

.eagle-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 14px 34px rgba(0,0,0,.55))
    drop-shadow(0 0 26px rgba(217,178,106,.35))
    drop-shadow(0 0 60px rgba(217,178,106,.22));
  animation: wingFlutter 3.8s ease-in-out infinite;
}

.eagle-shadow {
  position: absolute;
  bottom: 4%;
  width: 55%;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%);
  filter: blur(6px);
  animation: shadowPulse 5.6s ease-in-out infinite;
}

/* ============ COPY ============ */
.eyebrow {
  margin: 8px 0 18px;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .42em;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow span { color: rgba(217,178,106,.55); letter-spacing: 0; }

.title {
  margin: 0;
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: #f4f7fb;
  max-width: 20ch;
}
.title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.title strong {
  font-weight: 700;
  letter-spacing: .01em;
}

.lead {
  max-width: 62ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
}
.lead strong { color: #d6dfe9; font-weight: 600; }

/* ============ PROGRESS ============ */
.progress {
  width: 100%;
  max-width: 640px;
  margin: 36px auto 0;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  backdrop-filter: blur(10px);
  text-align: left;
}
.progress__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 12px;
}
.progress__label {
  display: inline-flex; align-items: center; gap: 10px;
  color: #d6dfe9;
  font-size: 13px; font-weight: 500;
}
.progress__head strong {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  color: var(--gold-2);
  letter-spacing: .02em;
}
.pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(217,178,106,.6);
  animation: goldPulse 1.8s infinite;
  flex: 0 0 auto;
}
.progress__track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
}
.progress__bar {
  width: 81%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-3), var(--gold), var(--gold-2));
  box-shadow: 0 0 20px rgba(217,178,106,.35);
  transition: width .9s cubic-bezier(.2,.7,.2,1);
}

/* ============ CTA ============ */
.cta {
  width: 100%;
  max-width: 640px;
  margin: 26px auto 0;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(37,211,102,.22);
  background:
    linear-gradient(160deg, rgba(15,22,18,.92), rgba(9,14,11,.94)),
    radial-gradient(circle at top left, rgba(37,211,102,.12), transparent 55%);
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(37,211,102,.05);
}
.cta__badge {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--wa), var(--wa-2));
  box-shadow: 0 12px 30px rgba(18,140,74,.4), 0 0 0 0 rgba(37,211,102,.35);
  animation: waPulse 2.1s infinite;
}
.cta__icon { width: 30px; height: 30px; }
.cta__eyebrow {
  margin: 0 0 6px;
  color: #8ee7ad;
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
}
.cta__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
  color: #f4f7fb;
}
.cta__text {
  margin: 8px 0 0;
  color: #b6c6bd;
  font-size: 14px; line-height: 1.6;
}

.cta__actions {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 14px;
  text-decoration: none;
  border: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, filter .2s ease, background .2s ease;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 14px 34px rgba(18,140,74,.35);
}
.btn--wa:hover { box-shadow: 0 20px 48px rgba(18,140,74,.5); }
.btn__icon { width: 18px; height: 18px; }

.btn__label {
  display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.15;
}
.btn__name {
  font-family: "Oswald", sans-serif;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.btn--wa .btn__phone {
  font-family: "Oswald", sans-serif;
  font-size: 17px; letter-spacing: .04em;
  color: #fff;
}

.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  gap: 12px;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(217,178,106,.35); }
.btn__phone {
  font-family: "Oswald", sans-serif;
  font-size: 16px; letter-spacing: .04em;
  color: var(--gold-2);
}
.btn__hint {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(217,178,106,.14);
  color: var(--gold-2);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============ FOOTER ============ */
.footer {
  position: relative; z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 40px auto 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  letter-spacing: .04em;
}
.footer__soon { color: var(--gold); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }

/* ============ TOAST ============ */
.toast {
  position: fixed; left: 50%; bottom: 26px;
  z-index: 20;
  transform: translate(-50%, 20px);
  opacity: 0; pointer-events: none;
  padding: 12px 20px;
  border-radius: 999px;
  color: #0b120d;
  background: linear-gradient(135deg, #b8ffcf, #7ee6a4);
  font-weight: 700; font-size: 13px;
  box-shadow: 0 18px 48px rgba(0,0,0,.5);
  transition: opacity .2s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============ KEYFRAMES ============ */
@keyframes soar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(0.4deg); }
}
@keyframes wingFlutter {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}
@keyframes shadowPulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50%      { transform: scale(.82); opacity: .3; }
}
@keyframes glowPulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.06); }
}
@keyframes ringExpand {
  0%   { transform: scale(.65); opacity: 0; }
  30%  { opacity: .7; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes goldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,178,106,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(217,178,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,178,106,0); }
}
@keyframes waPulse {
  0%   { box-shadow: 0 12px 30px rgba(18,140,74,.4), 0 0 0 0 rgba(37,211,102,.35); }
  60%  { box-shadow: 0 12px 30px rgba(18,140,74,.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px rgba(18,140,74,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .cta {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 22px;
  }
  .cta__badge { width: 56px; height: 56px; }
  .footer { flex-direction: column; text-align: center; gap: 6px; }
  .topbar { padding-top: 16px; }
  .btn { width: 100%; }
  .btn--ghost { justify-content: space-between; }
}

@media (max-width: 480px) {
  .title { font-size: 34px; }
  .eyebrow { font-size: 11px; letter-spacing: .32em; }
  .progress__head strong { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
