* {
  box-sizing: border-box;
}

:root {
  --bg: #06101b;
  --bg-2: #0a1726;
  --panel: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);
  --text: #f7f9fc;
  --muted: #a8b3c2;
  --red: #ef1524;
  --red-2: #b80d19;
  --green: #14b86f;
  --blue: #0b167c;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Cairo", system-ui, sans-serif;
  background:
    radial-gradient(circle at 80% 15%, rgba(239,21,36,.16), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(20,184,111,.13), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.025) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: sweep 10s linear infinite;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  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: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .24;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: var(--red);
  top: -120px;
  right: -80px;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: var(--green);
  bottom: -180px;
  left: -120px;
  animation-delay: -4s;
}

.page-shell {
  min-height: 100vh;
  width: min(1180px, calc(100% - 36px));
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  padding: 62px 0 34px;
}

.content {
  position: relative;
  z-index: 5;
  animation: reveal .9s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 7px 16px;
  border: 1px solid rgba(239,21,36,.35);
  border-radius: 999px;
  background: rgba(239,21,36,.09);
  color: #ff6f79;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239,21,36,.12);
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.1rem, 4.9vw, 4.7rem);
  line-height: 1.16;
  letter-spacing: -.035em;
  font-weight: 900;
}

h1 span {
  display: block;
  margin-top: 14px;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
}

.intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 2;
  font-size: clamp(.96rem, 1.3vw, 1.08rem);
}

.status {
  width: fit-content;
  margin-top: 24px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #e8eef6;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.status strong {
  font-size: .88rem;
}

.status > span:last-child {
  padding-right: 8px;
  border-right: 1px solid var(--line);
  color: #ff7e87;
  font-weight: 800;
  font-size: .78rem;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(20,184,111,.6);
  animation: pulse 1.8s infinite;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 54px;
  padding: 0 21px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 16px 38px rgba(239,21,36,.25);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(239,21,36,.36);
}

.btn-whatsapp {
  background: rgba(20,184,111,.1);
  border-color: rgba(20,184,111,.4);
  color: #7ef0b7;
}

.btn-whatsapp:hover {
  border-color: rgba(20,184,111,.8);
  box-shadow: 0 18px 45px rgba(20,184,111,.13);
}

.contact-card {
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.contact-card div {
  display: grid;
  gap: 2px;
}

.contact-card span {
  color: var(--muted);
  font-size: .72rem;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
}

.contact-card i {
  width: 1px;
  height: 35px;
  background: var(--line);
}

.visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  animation: reveal .9s .12s ease both;
}

.logo-wrap {
  position: relative;
  z-index: 4;
  width: min(320px, 65vw);
  aspect-ratio: 1;
  padding: 13px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.02));
  box-shadow:
    0 35px 80px rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(255,255,255,.15);
  animation: float 4.5s ease-in-out infinite;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.ring,
.orbit {
  position: absolute;
  border-radius: 50%;
}

.ring {
  border: 2px solid transparent;
}

.ring-1 {
  width: 410px;
  height: 410px;
  border-top-color: var(--red);
  border-right-color: rgba(239,21,36,.3);
  animation: spin 8s linear infinite;
}

.ring-2 {
  width: 480px;
  height: 480px;
  border-bottom-color: var(--green);
  border-left-color: rgba(20,184,111,.28);
  animation: spinReverse 12s linear infinite;
}

.ring-3 {
  width: 545px;
  height: 545px;
  border-top-color: rgba(255,255,255,.16);
  border-bottom-color: rgba(255,255,255,.05);
  animation: spin 18s linear infinite;
}

.orbit {
  width: 500px;
  height: 300px;
  border: 1px solid rgba(255,255,255,.11);
  transform: rotate(24deg);
}

.orbit-1 {
  animation: breathe 5s ease-in-out infinite;
}

.orbit-2 {
  transform: rotate(-24deg);
  animation: breathe 5s -2.5s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 24px currentColor;
}

.spark-1 {
  top: 18%;
  left: 17%;
  color: var(--red);
  background: currentColor;
  animation: blink 2.3s infinite;
}

.spark-2 {
  right: 10%;
  bottom: 25%;
  color: var(--green);
  background: currentColor;
  animation: blink 2.7s .5s infinite;
}

.spark-3 {
  left: 28%;
  bottom: 8%;
  color: white;
  background: currentColor;
  animation: blink 3s 1s infinite;
}

footer {
  min-height: 90px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .78rem;
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes breathe {
  0%, 100% { opacity: .4; transform: rotate(24deg) scale(.97); }
  50% { opacity: .9; transform: rotate(24deg) scale(1.04); }
}

@keyframes blink {
  0%, 100% { opacity: .25; transform: scale(.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 11px rgba(20,184,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(20,184,111,0); }
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drift {
  to { transform: translate3d(50px, 30px, 0) scale(1.08); }
}

@keyframes sweep {
  to { transform: translateX(100%); }
}

@media (max-width: 930px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 30px;
  }

  .visual {
    min-height: 420px;
    order: -1;
  }

  .ring-1 { width: 325px; height: 325px; }
  .ring-2 { width: 375px; height: 375px; }
  .ring-3 { width: 415px; height: 415px; }
  .orbit { width: 400px; height: 240px; }

  .content {
    text-align: center;
  }

  .intro {
    margin-inline: auto;
  }

  .status,
  .contact-card {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .visual {
    min-height: 330px;
  }

  .logo-wrap {
    width: 220px;
  }

  .ring-1 { width: 255px; height: 255px; }
  .ring-2 { width: 292px; height: 292px; }
  .ring-3 { width: 320px; height: 320px; }
  .orbit { width: 310px; height: 180px; }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .contact-card {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .contact-card i {
    width: 100%;
    height: 1px;
  }

  footer {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
}

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


.progress-box {
  width: min(520px, 100%);
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
  animation: reveal .9s .25s ease both;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: .9rem;
  color: #dbe5f0;
}

.progress-head strong {
  color: #ff6872;
  font-size: 1rem;
}

.progress-track {
  height: 12px;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}

.progress-value {
  height: 100%;
  width: 75%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef1524, #14b86f);
  position: relative;
  animation: progressMove 2s ease infinite alternate;
}

.progress-value::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shine 1.8s linear infinite;
}

.progress-box small {
  display: block;
  margin-top: 12px;
  color: #a8b3c2;
  font-size: .78rem;
}

@keyframes progressMove {
  from { width: 68%; }
  to { width: 78%; }
}

@keyframes shine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
