*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal-900: #0a4f52;
  --teal-700: #0d7377;
  --teal-500: #14a3a8;
  --teal-300: #5ec4c8;
  --mint: #e8f6f6;
  --white: #fafcfd;
  --text: #1a2e30;
  --text-muted: #4a6366;
  --radius: 1.25rem;
  --font: "IBM Plex Sans Arabic", system-ui, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(165deg, var(--white) 0%, var(--mint) 45%, #d4eeef 100%);
  overflow-x: hidden;
  line-height: 1.7;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, var(--teal-300) 0.5px, transparent 0.5px),
    radial-gradient(circle at 80% 70%, var(--teal-500) 0.5px, transparent 0.5px);
  background-size: 48px 48px;
  pointer-events: none;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow--top {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(20, 163, 168, 0.18);
}

.glow--bottom {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: rgba(13, 115, 119, 0.12);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fadeUp 0.8s ease both;
}

.logo {
  width: 72px;
  height: 72px;
  color: var(--teal-700);
}

.logo-bg {
  fill: rgba(255, 255, 255, 0.85);
  stroke: rgba(13, 115, 119, 0.15);
  stroke-width: 1;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero {
  margin-top: 2rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.title {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.35;
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--teal-700);
  letter-spacing: 0.02em;
}

.lead {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 32rem;
}

.pulse-wrap {
  width: 100%;
  max-width: 280px;
  height: 48px;
  margin: 2.5rem 0;
  opacity: 0.7;
  animation: fadeUp 0.8s 0.3s ease both;
}

.pulse {
  width: 100%;
  height: 100%;
}

.pulse-line {
  fill: none;
  stroke: var(--teal-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  animation: pulseDraw 2.8s ease-in-out infinite;
}

.info {
  display: grid;
  gap: 1rem;
  width: 100%;
  animation: fadeUp 0.8s 0.45s ease both;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  text-align: right;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(13, 115, 119, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 115, 119, 0.08);
}

.info-icon {
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--teal-500);
  margin-top: 0.45rem;
}

.info-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-900);
}

.info-card p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer {
  margin-top: auto;
  padding-top: 2.5rem;
  animation: fadeUp 0.8s 0.6s ease both;
}

.footer-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal-700);
}

.footer-copy {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDraw {
  0%, 100% {
    stroke-dashoffset: 400;
    opacity: 0.4;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@media (min-width: 540px) {
  .info {
    grid-template-columns: 1fr 1fr;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .info-icon {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
