:root {
  --ink: #252427;
  --muted: #6f7871;
  --green: #67ba6b;
  --green-dark: #368b4a;
  --paper: #f6f9f5;
  --card: rgba(255, 255, 255, 0.86);
  --line: rgba(37, 36, 39, 0.10);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(103, 186, 107, 0.14), transparent 28rem),
    radial-gradient(circle at 82% 85%, rgba(54, 139, 74, 0.09), transparent 30rem),
    linear-gradient(145deg, #fbfcfa 0%, #f2f7f1 100%);
}

.brand-field {
  position: fixed;
  inset: -22%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("gestx-logo.png");
  background-repeat: repeat;
  background-size: 190px auto;
  background-position: 0 0;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  transform: rotate(-8deg) scale(1.08);
  animation: brand-drift 42s linear infinite;
  pointer-events: none;
}

.brand-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 10%, rgba(246, 249, 245, 0.72) 74%);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.launch-card {
  width: min(100%, 680px);
  padding: clamp(2rem, 6vw, 4.75rem) clamp(1.35rem, 6vw, 4.5rem);
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow:
    0 32px 90px rgba(31, 56, 37, 0.12),
    0 3px 14px rgba(31, 56, 37, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo-frame {
  width: min(100%, 410px);
  margin: 0 auto 2.25rem;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding: 0.58rem 0.9rem;
  color: var(--green-dark);
  background: rgba(103, 186, 107, 0.10);
  border: 1px solid rgba(103, 186, 107, 0.23);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(103, 186, 107, 0.45);
  animation: pulse 2.4s ease-out infinite;
}

h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(2.1rem, 7vw, 4.25rem);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead {
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.65;
}

.divider {
  width: 54px;
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.arabic {
  margin: 0;
  color: #424944;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: clamp(1rem, 2.8vw, 1.28rem);
  line-height: 1.75;
}

.domain {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes brand-drift {
  to {
    background-position: 380px 190px;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(103, 186, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(103, 186, 107, 0);
  }
}

@media (max-width: 520px) {
  .launch-card {
    border-radius: 24px;
  }

  .logo-frame {
    max-width: 320px;
    margin-bottom: 1.75rem;
  }

  .brand-field {
    background-size: 150px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-field,
  .status-dot {
    animation: none;
  }
}
