:root {
  --bg: #041512;
  --bg-deep: #020b0a;
  --panel: rgba(10, 33, 28, 0.68);
  --panel-strong: rgba(13, 45, 38, 0.9);
  --text: #eef9f3;
  --muted: #c5ddd3;
  --brand: #33d17a;
  --brand-strong: #12b95e;
  --accent: #f4cf85;
  --stroke: rgba(157, 219, 191, 0.2);
  --shadow: 0 18px 48px rgba(2, 11, 10, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #0b3a31 0, rgba(11, 58, 49, 0) 35%),
    radial-gradient(circle at 88% 8%, #1c4e42 0, rgba(28, 78, 66, 0) 30%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(244, 207, 133, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 207, 133, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 30% 20%, black 10%, transparent 85%);
  opacity: 0.3;
  z-index: -1;
}

.background-glow {
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 209, 122, 0.22), rgba(51, 209, 122, 0));
  top: -12rem;
  right: -10rem;
  filter: blur(8px);
  z-index: -1;
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2.8rem, 2rem, 0);
  }
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(3, 15, 12, 0.72);
  border-bottom: 1px solid rgba(197, 221, 211, 0.12);
}

.nav-shell {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.support-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4rem);
  padding: clamp(2.8rem, 5vw, 5rem) 0 1rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.55rem);
  max-width: 14ch;
}

.lead {
  color: var(--muted);
  margin-top: 1.2rem;
  max-width: 55ch;
}

.cta-row {
  margin-top: 1.7rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn-primary {
  color: #082118;
  background: linear-gradient(120deg, var(--accent), #ffe8b9);
  box-shadow: 0 10px 28px rgba(255, 221, 157, 0.23);
}

.btn-ghost {
  color: var(--text);
  background: rgba(222, 245, 233, 0.08);
  border: 1px solid rgba(222, 245, 233, 0.25);
}

.small-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(15, 47, 40, 0.9), rgba(5, 23, 19, 0.95));
  border: 1px solid var(--stroke);
  border-radius: 2rem;
  padding: 0.9rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  border-radius: 1.4rem;
  display: block;
}

.section {
  padding: clamp(2.4rem, 4vw, 3.6rem) 0;
}

.section-heading {
  margin-bottom: 1.3rem;
}

.section-heading h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  max-width: 26ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 1.05rem;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.shot-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 0.55rem;
}

.shot-card img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
}

.shot-card figcaption {
  font-size: 0.84rem;
  margin-top: 0.55rem;
  text-align: center;
  color: var(--muted);
}

.notice {
  background: var(--panel-strong);
  border: 1px solid var(--stroke);
  border-radius: 1.2rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  box-shadow: var(--shadow);
}

.notice h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.notice p {
  color: var(--muted);
  margin-top: 0.7rem;
}

.privacy-policy {
  background: rgba(8, 27, 23, 0.52);
  border: 1px solid rgba(157, 219, 191, 0.14);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
}

.privacy-policy h2 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #dbeee6;
}

.privacy-policy .policy-meta {
  margin-top: 0.35rem;
  color: #abc6ba;
  font-size: 0.72rem;
}

.privacy-policy p {
  margin-top: 0.52rem;
  color: #b5cec4;
  font-size: 0.78rem;
  line-height: 1.45;
}

.privacy-policy a {
  color: #d8eede;
}

.arabic {
  font-family: "Noto Naskh Arabic", serif;
  font-size: 1.1rem;
  color: #f5f3e7;
}

.site-footer {
  padding: 2.1rem 0 2.8rem;
}

.footer-shell {
  border-top: 1px solid rgba(222, 245, 233, 0.16);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-shell a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 360px;
  }

  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .shots-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.7rem;
    padding-bottom: 0.3rem;
    scroll-snap-type: x mandatory;
  }

  .shot-card {
    min-width: 62vw;
    scroll-snap-align: start;
  }
}
