:root {
  --bg-dark: #050b1d;
  --bg-mid: #0b1633;
  --primary: #8a95ff;
  --primary-strong: #b0b7ff;
  --text-main: #f5f7ff;
  --text-soft: #c5cbe3;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 20% 0%, #1a2f6e 0%, var(--bg-dark) 55%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/giturn-bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.04);
  z-index: -4;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 11, 29, 0.87), rgba(13, 23, 54, 0.72)),
    radial-gradient(circle at 85% 25%, rgba(138, 149, 255, 0.2), transparent 38%);
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.16) 0.4px, transparent 0.4px),
    radial-gradient(rgba(255, 255, 255, 0.08) 0.4px, transparent 0.4px);
  background-size: 4px 4px, 7px 7px;
  background-position: 0 0, 25px 35px;
  mix-blend-mode: soft-light;
}

.page {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 40px 0 70px;
  display: grid;
  gap: 28px;
}

.top-badge {
  width: fit-content;
  margin-right: auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(138, 149, 255, 0.3), rgba(255, 255, 255, 0.08));
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(120, 135, 255, 0.2);
  backdrop-filter: blur(8px);
  font-weight: 700;
  color: #e9edff;
}

.hero-card {
  padding: clamp(24px, 4vw, 52px);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  animation: floaty 6s ease-in-out infinite;
}

.status {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #0f1734;
  background: linear-gradient(90deg, #c8ceff, #a8b2ff);
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.25;
  text-wrap: balance;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.38);
}

.lead {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  line-height: 1.9;
  color: var(--text-soft);
}

.cta-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: default;
}

.btn-primary {
  color: #0d1737;
  background: linear-gradient(120deg, #c3c9ff 10%, var(--primary) 90%);
  box-shadow: 0 12px 24px rgba(138, 149, 255, 0.32);
}

.btn-ghost {
  color: #e4e8ff;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
  transform: perspective(1000px) rotateX(6deg);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.feature h2 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--primary-strong);
}

.feature p {
  margin: 10px 0 0;
  color: #d3d8ef;
  line-height: 1.8;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
