:root {
  --bg: #f4f8fd;
  --bg-soft: #ffffff;
  --ink: #0c1b2f;
  --ink-2: #183455;
  --muted: #647386;
  --line: rgba(7, 94, 168, 0.16);
  --blue: #075ea8;
  --blue-deep: #042e61;
  --cyan: #3fb8e8;
  --silver: #e7eef7;
  --gold: #c4a45f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 42, 78, 0.13);
  --soft-shadow: 0 14px 36px rgba(10, 42, 78, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Tajawal', system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(7, 94, 168, 0.08), transparent 38%),
    linear-gradient(280deg, rgba(63, 184, 232, 0.12), transparent 42%),
    linear-gradient(180deg, #f4f8fd 0%, #fbfdff 48%, #eef5fc 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(to left, rgba(7, 94, 168, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7, 94, 168, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 22px 0 46px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  margin-bottom: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 78px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border-radius: var(--radius);
  background: #08111f;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  direction: ltr;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 700;
}

.header-nav a:hover {
  background: rgba(7, 94, 168, 0.08);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - 128px);
  padding: 28px 0 44px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(196, 164, 95, 0.28);
  border-radius: 999px;
  background: rgba(196, 164, 95, 0.12);
  color: var(--blue-deep);
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.access-band h2,
.privacy-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.12;
}

.section-heading h2,
.access-band h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.hero-text,
.text-panel p,
.quote-panel p,
.feature-card p,
.shot-card p,
.access-band p,
.privacy-lead,
.policy-panel p,
.policy-list,
.privacy-sidecard li,
.policy-grid span,
.signal-strip span,
.site-footer span {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.95;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  color: #3f4f62;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: linear-gradient(180deg, #0d70be, #064f93);
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 94, 168, 0.24);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 660px;
}

.device,
.phone-shell {
  position: relative;
  width: min(100%, 330px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: linear-gradient(180deg, #071322, #0b2d55);
  box-shadow: var(--shadow);
}

.device-main {
  transform: rotate(-2deg);
}

.device img,
.phone-shell img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
  background: var(--silver);
}

.device-bar {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #06101c;
}

.feature-card h3,
.shot-card h3,
.policy-panel h3 {
  display: block;
  color: var(--ink);
  font-size: 1.16rem;
}

.signal-strip,
.features-grid,
.screenshots-grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

.signal-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 8px 0 34px;
}

.signal-strip article,
.feature-card,
.shot-card,
.text-panel,
.quote-panel,
.policy-section,
.policy-grid article {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.signal-strip article {
  padding: 20px;
}

.signal-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 1.25rem;
}

.section {
  padding: 44px 0 8px;
}

.section-heading {
  margin-bottom: 22px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
}

.text-panel,
.quote-panel {
  padding: 26px;
}

.text-panel p:first-child {
  margin-top: 0;
}

.text-panel p:last-child {
  margin-bottom: 0;
}

.quote-panel {
  display: grid;
  align-content: center;
  background: linear-gradient(150deg, #042e61, #075ea8);
}

.quote-panel span,
.quote-panel p {
  color: #fff;
}

.quote-panel span {
  font-weight: 800;
}

.quote-panel p {
  margin: 10px 0 0;
  opacity: 0.9;
}

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

.feature-card {
  min-height: 220px;
  padding: 22px;
}

.feature-mark,
.policy-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(7, 94, 168, 0.1);
  color: var(--blue);
  font-weight: 800;
}

.feature-card h3,
.shot-card h3 {
  margin: 0 0 10px;
}

.feature-card p,
.shot-card p {
  margin: 0;
}

.screenshot-section {
  padding-top: 56px;
}

.screenshots-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.shot-card {
  padding: 14px;
}

.shot-card-offset {
  margin-top: 42px;
}

.phone-shell {
  width: 100%;
  margin-bottom: 18px;
}

.access-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #042e61, #075ea8 62%, #1198d6);
  box-shadow: var(--shadow);
}

.access-band h2,
.access-band p,
.access-band .section-kicker {
  color: #fff;
}

.access-band .section-kicker {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.access-band p {
  max-width: 780px;
  margin-bottom: 0;
  opacity: 0.9;
}

.primary-btn-light {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer nav {
  display: flex;
  gap: 8px;
}

.site-footer a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 800;
}

.site-footer a:hover {
  background: rgba(7, 94, 168, 0.08);
}

.privacy-body {
  background:
    linear-gradient(135deg, rgba(4, 46, 97, 0.09), transparent 36%),
    linear-gradient(290deg, rgba(63, 184, 232, 0.14), transparent 42%),
    linear-gradient(180deg, #f5f9fe 0%, #ffffff 46%, #eef5fc 100%);
}

.privacy-shell {
  width: min(calc(100% - 32px), 1180px);
}

.privacy-header {
  margin-bottom: 26px;
}

.privacy-main {
  display: grid;
  gap: 18px;
}

.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.privacy-intro,
.privacy-sidecard {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.privacy-intro h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.privacy-subtitle {
  margin: 12px 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.privacy-meta span,
.privacy-sidecard > span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 94, 168, 0.1);
  color: var(--blue-deep);
  font-weight: 800;
}

.privacy-lead {
  margin-bottom: 0;
  color: var(--ink-2);
}

.privacy-sidecard {
  display: grid;
  align-content: start;
  gap: 16px;
  background: linear-gradient(155deg, #041f41, #075ea8);
}

.privacy-sidecard > span,
.privacy-sidecard li {
  color: #fff;
}

.privacy-sidecard > span {
  background: rgba(255, 255, 255, 0.13);
}

.privacy-sidecard ul {
  margin: 0;
  padding-right: 22px;
}

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

.policy-grid article {
  padding: 20px;
}

.policy-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  direction: ltr;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-section {
  padding: 26px;
}

.policy-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.policy-section-head .section-kicker {
  margin-bottom: 8px;
}

.policy-section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.policy-number {
  flex: 0 0 auto;
  margin-bottom: 0;
  background: linear-gradient(180deg, #0d70be, #064f93);
  color: #fff;
}

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

.policy-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.policy-panel-en {
  text-align: left;
}

.policy-panel h3 {
  margin: 0 0 10px;
}

.policy-panel p:first-of-type {
  margin-top: 0;
}

.policy-panel p:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 0;
  padding-right: 22px;
}

.policy-panel-en .policy-list {
  padding-right: 0;
  padding-left: 22px;
}

.policy-list li + li {
  margin-top: 7px;
}

.policy-panel a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.policy-panel a:hover {
  text-decoration: underline;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

@media (max-width: 1060px) {
  .hero,
  .about-layout,
  .access-band,
  .privacy-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .access-band {
    justify-items: start;
  }

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

@media (max-width: 900px) {
  .page-shell,
  .privacy-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--soft-shadow);
  }

  .header-nav.is-open {
    display: grid;
  }

  .header-nav a {
    width: 100%;
  }

  .signal-strip,
  .features-grid,
  .screenshots-grid,
  .bilingual-grid {
    grid-template-columns: 1fr;
  }

  .shot-card-offset {
    margin-top: 0;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 64px;
    height: 46px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.78rem;
  }

  .hero h1,
  .privacy-intro h1 {
    font-size: 2.15rem;
  }

  .hero-visual {
    min-height: 530px;
  }

  .device {
    width: min(100%, 286px);
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-section-head {
    align-items: flex-start;
  }

  .privacy-intro,
  .privacy-sidecard,
  .policy-section,
  .access-band,
  .text-panel,
  .quote-panel {
    padding: 20px;
  }
}
