@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-arabic-400.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-089F, U+08A0-08FF, U+200C-200E, U+FB50-FDFF, U+FE70-FEFC;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-arabic-500.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-089F, U+08A0-08FF, U+200C-200E, U+FB50-FDFF, U+FE70-FEFC;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-arabic-600.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-089F, U+08A0-08FF, U+200C-200E, U+FB50-FDFF, U+FE70-FEFC;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-arabic-700.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-089F, U+08A0-08FF, U+200C-200E, U+FB50-FDFF, U+FE70-FEFC;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}

:root {
  --coral: #fa6672;
  --coral-soft: #ffe7e9;
  --navy: #243a4c;
  --navy-deep: #182b3a;
  --cream: #f8f3ea;
  --paper: #fffdf9;
  --ink-soft: #61717d;
  --line: rgba(36, 58, 76, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(36, 58, 76, 0.11);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--cream);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 7%, rgba(250, 102, 114, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 92%, rgba(36, 58, 76, 0.11), transparent 28rem),
    var(--cream);
  font-family: "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(36, 58, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 58, 76, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page {
  position: relative;
  width: min(100% - 2rem, 38rem);
  margin-inline: auto;
  padding: clamp(2rem, 7vw, 4.75rem) 0 2.25rem;
}

.page::before {
  position: absolute;
  top: 5rem;
  right: -1.2rem;
  width: 0.35rem;
  height: 8rem;
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 9rem 0 var(--navy);
  content: "";
}

.brand-header {
  position: relative;
  padding: clamp(1.4rem, 5vw, 2rem);
  overflow: hidden;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(36, 58, 76, 0.11);
  border-radius: 2rem 2rem 1.25rem 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-header::after {
  position: absolute;
  top: -4rem;
  left: -3rem;
  width: 10rem;
  height: 10rem;
  background: var(--coral-soft);
  border-radius: 50%;
  content: "";
}

.official-row,
.brand-lockup,
.intro {
  position: relative;
  z-index: 1;
}

.official-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.official-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  color: var(--navy);
  background: var(--coral-soft);
  border: 1px solid rgba(250, 102, 114, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.official-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--coral);
  border-radius: 50%;
}

.domain-link {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  direction: ltr;
  text-decoration: none;
}

.domain-link:hover {
  color: var(--coral);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 1.5rem);
}

.logo-frame {
  width: clamp(5.8rem, 23vw, 7rem);
  aspect-ratio: 1;
  flex: 0 0 auto;
  padding: 0.25rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(36, 58, 76, 0.1);
  border-radius: 1.8rem;
  box-shadow: 0 12px 28px rgba(36, 58, 76, 0.12);
  transform: rotate(-2deg);
}

.logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.55rem;
  object-fit: cover;
}

.brand-copy {
  min-width: 0;
}

.brand-kicker {
  margin: 0 0 0.1rem;
  color: var(--coral);
  font-size: clamp(0.86rem, 2.5vw, 1rem);
  font-weight: 600;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.9rem, 12vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.intro {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: #455a69;
  font-size: clamp(1rem, 3.1vw, 1.12rem);
  line-height: 1.85;
}

.link-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: 3.45rem minmax(0, 1fr) 1.6rem;
  align-items: center;
  gap: 1rem;
  min-height: 6.75rem;
  padding: 1rem 1.15rem;
  color: var(--navy);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: 0 9px 28px rgba(36, 58, 76, 0.07);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-card:hover {
  border-color: rgba(36, 58, 76, 0.32);
  box-shadow: 0 15px 38px rgba(36, 58, 76, 0.13);
  transform: translateY(-3px);
}

.link-card:active {
  transform: translateY(-1px) scale(0.995);
}

.link-card--app {
  min-height: 8.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem 1.35rem 2rem 1.35rem;
  box-shadow: 0 18px 42px rgba(36, 58, 76, 0.22);
}

.link-card--app::before {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  width: 0.3rem;
  height: 3.3rem;
  background: var(--coral);
  border-radius: 999px 0 0 999px;
  content: "";
}

.link-card--app:hover {
  border-color: rgba(250, 102, 114, 0.58);
  box-shadow: 0 22px 50px rgba(36, 58, 76, 0.27);
}

.link-card--store {
  background: linear-gradient(145deg, #fff9f8 0%, var(--coral-soft) 100%);
  border-color: rgba(250, 102, 114, 0.22);
}

.link-card--whatsapp .link-icon {
  color: #1d8f5a;
  background: #eaf8f0;
}

.link-icon {
  display: grid;
  width: 3.45rem;
  height: 3.45rem;
  place-items: center;
  padding: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(36, 58, 76, 0.09);
  border-radius: 1.05rem;
}

.link-icon--app {
  color: var(--white);
  background: linear-gradient(145deg, #22b5ff 0%, #087ff5 52%, #0568d5 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.app-store-glyph {
  stroke-width: 2.35;
}

.link-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.link-copy strong {
  font-size: clamp(1rem, 3.4vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
}

.link-copy > span:last-child {
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: clamp(0.82rem, 2.7vw, 0.92rem);
  line-height: 1.6;
}

.link-card--app .link-copy > span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.link-eyebrow {
  margin: 0 0 0.22rem;
  color: var(--coral) !important;
  font-size: 0.77rem !important;
  font-weight: 600;
}

.external-arrow {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  opacity: 0.55;
  transition: opacity 180ms ease, transform 180ms ease;
}

.link-card:hover .external-arrow {
  opacity: 1;
  transform: translate(-2px, -2px);
}

.social-section {
  margin-top: 2rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0.9rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

.section-heading span {
  width: 100%;
  height: 1px;
  background: var(--line);
}

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

.social-link {
  display: flex;
  min-width: 0;
  min-height: 5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--navy);
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: 1rem;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-link svg,
.x-mark {
  width: 1.35rem;
  height: 1.35rem;
}

.social-link span:last-child {
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.x-mark {
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.social-link:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.footer p {
  margin: 0;
}

.footer-mark {
  width: 1.35rem;
  height: 0.2rem;
  background: var(--coral);
  border-radius: 999px;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

@media (max-width: 31rem) {
  .page {
    width: min(100% - 1.2rem, 38rem);
    padding-top: 1rem;
  }

  .page::before {
    display: none;
  }

  .brand-header {
    border-radius: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .brand-lockup {
    align-items: center;
  }

  .link-card {
    grid-template-columns: 3.15rem minmax(0, 1fr) 1.25rem;
    gap: 0.8rem;
    padding: 0.95rem;
  }

  .link-icon {
    width: 3.15rem;
    height: 3.15rem;
    padding: 0.82rem;
  }

  .social-grid {
    gap: 0.4rem;
  }

  .social-link {
    min-height: 4.55rem;
  }

  .social-link span:last-child {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
