﻿:root {
  --bg: #071226;
  --bg-soft: #0f1d36;
  --surface: rgba(13, 26, 48, 0.72);
  --surface-strong: rgba(15, 32, 57, 0.9);
  --line: rgba(150, 187, 235, 0.18);
  --text: #eff5ff;
  --muted: #bfd1ee;
  --brand-dark: #203f72;
  --brand-blue: #4691d8;
  --brand-blue-strong: #5cb2ff;
  --brand-green: #27d17d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(70, 145, 216, 0.26), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(92, 178, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #050c18 0%, #0c1830 45%, #071226 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
}

.page-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}

.page-glow--left {
  top: -12rem;
  left: -8rem;
  background: rgba(70, 145, 216, 0.45);
}

.page-glow--right {
  right: -8rem;
  bottom: -14rem;
  background: rgba(32, 63, 114, 0.5);
}

.shell {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.panel,
.detail-card,
.link-card,
.spotlight-card,
.footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: min(100%, 44rem);
  padding: clamp(0.95rem, 2vw, 1.2rem) clamp(1rem, 2.5vw, 1.45rem) 0.95rem;
  border-radius: 28px;
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 255, 0.95)); */
  box-shadow: 0 18px 56px rgba(2, 10, 22, 0.24);
}

.brand__word {
  display: flex;
  align-items: flex-end;
  gap: 0.1rem;
  line-height: 1;
}

.brand__chunk {
  font-size: clamp(3rem, 10.2vw, 6.9rem);
  font-weight: 800;
  letter-spacing: -0.16em;
}

.brand__chunk--dark {
  color: var(--brand-dark);
}

.brand__chunk--c {
  margin-left: -0.18rem;
}

.brand__glyph {
  display: block;
  height: auto;
  flex: none;
}

.brand__glyph--m {
  width: clamp(5.6rem, 15vw, 8.9rem);
  margin: 0 0.05rem 0.2rem -0.2rem;
}

.brand__glyph--m path {
  fill: none;
  stroke: var(--brand-blue);
  stroke-width: 26;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__glyph--a {
  width: clamp(4.7rem, 12.4vw, 7.4rem);
  margin: 0 -0.06rem 0.2rem -0.08rem;
}

.brand__glyph--a path {
  fill: var(--brand-dark);
}

.brand__sub {
  margin: -0.35rem 0 0 auto;
  padding-right: clamp(0.15rem, 0.7vw, 0.75rem);
  font-size: clamp(1.12rem, 3.45vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--brand-blue);
  line-height: 1;
}

.hero__badge,
.detail-card__kicker,
.eyebrow,
.spotlight-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4e7ff;
}

.hero__badge {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.hero__lead,
.section-heading > p:not(.eyebrow),
.detail-card > p:not(.detail-card__kicker):not(.detail-card__location),
.link-card__description,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero__lead {
  max-width: 54ch;
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #041120;
  background: linear-gradient(135deg, #f5fbff, #76b7ff);
  box-shadow: 0 18px 40px rgba(92, 178, 255, 0.25);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-card {
  align-self: stretch;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--surface-strong);
}

.spotlight-card__label {
  color: #d8e8ff;
}

.spotlight-card__text {
  margin: 1rem 0 1.35rem;
  font-family: "Cairo", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.9;
  color: #f7fbff;
}

.spotlight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.spotlight-card__meta span {
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dbe9ff;
  font-size: 0.9rem;
}

.links {
  margin-top: 2rem;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  margin: 0.45rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

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

.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  opacity: 0.2;
  filter: blur(10px);
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(174, 216, 255, 0.42);
  box-shadow: 0 24px 64px rgba(1, 8, 20, 0.45);
}

.link-card__icon {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.link-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.link-card__label {
  font-size: 1.3rem;
  font-weight: 700;
}

.link-card--website {
  background:
    linear-gradient(135deg, rgba(92, 178, 255, 0.18), rgba(11, 25, 50, 0.92)),
    var(--surface);
}

.link-card--website::before {
  background: rgba(92, 178, 255, 0.8);
}

.link-card--whatsapp {
  background:
    linear-gradient(135deg, rgba(39, 209, 125, 0.16), rgba(11, 25, 50, 0.92)),
    var(--surface);
}

.link-card--whatsapp::before {
  background: rgba(39, 209, 125, 0.8);
}

.link-card--instagram {
  background:
    linear-gradient(135deg, rgba(255, 122, 89, 0.16), rgba(94, 16, 162, 0.18), rgba(11, 25, 50, 0.92)),
    var(--surface);
}

.link-card--instagram::before {
  background: rgba(255, 122, 89, 0.8);
}

.link-card--facebook {
  background:
    linear-gradient(135deg, rgba(54, 125, 255, 0.18), rgba(11, 25, 50, 0.92)),
    var(--surface);
}

.link-card--facebook::before {
  background: rgba(54, 125, 255, 0.8);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.detail-card {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.detail-card h3 {
  margin: 0.5rem 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.detail-card--arabic {
  background:
    linear-gradient(180deg, rgba(70, 145, 216, 0.14), rgba(15, 32, 57, 0.92)),
    var(--surface);
}

.detail-card__location {
  margin-top: 0.7rem;
  font-family: "Cairo", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #f2f8ff;
}

.footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__status {
  color: #e7f4ff;
  min-height: 1.5em;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 900px) {
  .hero__body,
  .links-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 1rem, 1120px);
    padding-top: 1rem;
  }

  .hero {
    padding: 1.1rem;
  }

  .hero__top {
    flex-direction: column;
  }

  .hero__body {
    margin-top: 1.5rem;
  }

  .hero h1 {
    max-width: none;
  }

  .link-card,
  .detail-card,
  .spotlight-card {
    padding: 1.15rem;
  }
}

@media (max-width: 520px) {
  .brand__chunk {
    font-size: clamp(2.45rem, 16vw, 4.1rem);
  }

  .brand__glyph--m {
    width: clamp(4.35rem, 22vw, 6.1rem);
  }

  .brand__glyph--a {
    width: clamp(3.7rem, 18vw, 5rem);
  }

  .brand__sub {
    font-size: clamp(1rem, 6vw, 1.5rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}








