:root {
  /* Palette tuned to match the logo's deep navy-teal */
  --ink: #0B1218;
  --ink-2: #121C24;
  --ink-3: #1A2530;
  --line: rgba(220, 230, 240, 0.10);
  --line-strong: rgba(220, 230, 240, 0.20);
  --cream: #ECF1F5;
  --cream-soft: #D6DEE6;
  --cream-dim: rgba(236, 241, 245, 0.65);
  --cream-faint: rgba(236, 241, 245, 0.42);
  /* Brand blue — sampled from the logo */
  --brand: #2E6486;
  --brand-bright: #4A8AB0;
  --brand-pale: #8FB3C9;
  --accent: #C8A56B;       /* gold accent retained as a warm secondary */
  --accent-bright: #E0BD7E;
  --moss: #8A9684;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter Tight', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

html[lang="ar"] {
  --serif: 'Amiri', 'Times New Roman', serif;
  --sans: 'Noto Sans Arabic', 'Inter Tight', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.mono { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--brand); color: var(--cream); }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); position: relative; z-index: 2; }

/* Arabic overrides */
html[lang="ar"] em { font-style: normal; color: var(--brand-bright); font-weight: 700; }
html[lang="ar"] .mono,
html[lang="ar"] .pillar .num,
html[lang="ar"] .visual-row .tag,
html[lang="ar"] .visual-label,
html[lang="ar"] .show-meta,
html[lang="ar"] .pioneer-label,
html[lang="ar"] .s-num,
html[lang="ar"] .foot-col h5 { letter-spacing: 0.04em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="ar"] .s-title, html[lang="ar"] .show-title, html[lang="ar"] .pioneer-text {
  letter-spacing: 0; font-variation-settings: normal;
}

/* RTL */
[dir="rtl"] .hero-index { right: auto; left: var(--pad); text-align: left; }
[dir="rtl"] .visual.contract .stamp { right: auto; left: 60px; }
[dir="rtl"] .visual::before { left: auto; right: -1px; border-left: none; border-right: 1px solid var(--brand-bright); }
[dir="rtl"] .visual::after { right: auto; left: -1px; border-right: none; border-left: 1px solid var(--brand-bright); }
[dir="rtl"] .btn .arr { display: inline-block; transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arr { transform: scaleX(-1) translate(2px, -2px); }
[dir="rtl"] .nav-links a::after { transform-origin: right; }
[dir="rtl"] .pull-mark { transform: scaleX(-1); display: inline-block; }

/* Top announcement bar */
.bar { border-bottom: 1px solid var(--line); background: var(--ink); position: relative; z-index: 50; }
.bar-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 11px var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: 14px; font-size: 13px; color: var(--cream-dim);
  flex-wrap: wrap;
}
.bar-inner .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand-bright); display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 138, 176, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74, 138, 176, 0); }
}
.bar-inner a {
  color: var(--cream);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.bar-inner a:hover { color: var(--brand-bright); border-color: var(--brand-bright); }
.bar-flip { display: inline-block; }
.bar-flip.is-out { animation: flipWordOut .32s ease forwards; }
.bar-flip.is-in { animation: flipWordIn .45s ease forwards; }
@media (prefers-reduced-motion: reduce) {
  .bar-flip.is-out, .bar-flip.is-in { animation: none; }
}

/* Nav */
nav.main {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 18, 24, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 21px;
  letter-spacing: 0.08em;
  transition: opacity .25s ease;
}
.logo:hover { opacity: 0.85; }


/* Dual logo swap */
.logo-light-img { display: none; }
.logo-dark-img  { display: block; }
[data-theme="light"] .logo-light-img { display: block; }
[data-theme="light"] .logo-dark-img  { display: none; }
/* Watermarks: invert in light mode so they're still visible */
[data-theme="light"] .hero-column,
[data-theme="light"] .mv-watermark,
[data-theme="light"] .pull-watermark { filter: invert(1); opacity: 0.06; }

.logo-mark {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(74, 138, 176, 0.15));
}
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--cream-dim); }
html[lang="fr"] .nav-links { font-size: 11px; gap: 20px; }
.nav-links a { position: relative; padding: 6px 0; transition: color .25s ease; }
.nav-links a:hover { color: var(--cream); }
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--brand-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* Language switch */
.lang-switch {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.lang-btn {
  color: var(--cream-faint); padding: 2px 4px; cursor: pointer;
  text-transform: uppercase; font-family: inherit; letter-spacing: inherit;
  transition: color .2s ease; font-weight: 500;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active { color: var(--brand-bright); }
.lang-btn[data-lang="ar"] { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; font-size: 13px; }
.lang-sep { color: var(--line-strong); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--brand-bright);
  color: var(--cream); background: transparent;
  position: relative; overflow: hidden;
  transition: color .35s ease;
  cursor: pointer; font-family: inherit;
}
html[lang="ar"] .btn { letter-spacing: 0; }
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--brand-bright);
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.6,.05,.05,1);
  z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn .arr { display: inline-block; transition: transform .35s ease; }
.btn:hover .arr { transform: translate(2px, -2px); }
.btn-solid { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-solid::before { background: var(--brand-bright); }
.btn-accent { border-color: var(--accent); }
.btn-accent::before { background: var(--accent); }

@media (max-width: 1080px) { .nav-links { display: none; } }
@media (max-width: 580px) {
  .nav-cta .btn-solid { display: none; }
  .lang-switch { padding: 5px 10px; gap: 6px; }
}

/* HERO */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(70px, 10vw, 140px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(74, 138, 176, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(46, 100, 134, 0.10), transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(200, 165, 107, 0.06), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.5; pointer-events: none;
}

/* Massive translucent column watermark in the hero */
.hero-column {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: clamp(420px, 55vw, 760px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 80px rgba(74, 138, 176, 0.4));
}
@media (max-width: 800px) { .hero-column { opacity: 0.045; width: 90vw; } }

.hero-inner { position: relative; z-index: 2; display: grid; gap: 64px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--brand-bright); margin-bottom: 36px;
  animation: fadeUp .9s .1s both;
}
.hero-eyebrow .rule { display: inline-block; width: 40px; height: 1px; background: var(--brand-bright); flex-shrink: 0; }
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(44px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 18ch;
}
html[lang="ar"] .hero h1 { line-height: 1.1; max-width: 20ch; font-weight: 400; }
html[lang="fr"] .hero h1 { font-size: clamp(36px, 6.8vw, 100px); max-width: 20ch; }
.hero h1 .line { display: block; opacity: 0; transform: translateY(0.4em); animation: wordIn 1s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 .line:nth-child(1) { animation-delay: .15s; }
.hero h1 .line:nth-child(2) { animation-delay: .35s; }
.hero h1 .line:nth-child(3) { animation-delay: .55s; }
.hero h1 em {
  font-style: italic; font-weight: 300; color: var(--brand-bright);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Hero rotating slogan — only the differing word(s) fade, the rest of the line stays still */
.hero h1 .flip-anim { color: var(--brand-bright); }
.hero h1 .flip-anim.is-out { animation: flipWordOut .32s ease forwards; }
.hero h1 .flip-anim.is-in { animation: flipWordIn .45s ease forwards; }
@keyframes flipWordOut { to { opacity: 0; } }
@keyframes flipWordIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .flip-anim.is-out, .hero h1 .flip-anim.is-in { animation: none; }
}
.hero-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-top: 30px;
  animation: fadeUp 1s .8s both;
}
@media (max-width: 800px) { .hero-bottom { grid-template-columns: 1fr; gap: 36px; } }
.hero-lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--cream-dim); max-width: 46ch; line-height: 1.55; }
.hero-lede strong { color: var(--cream); font-weight: 500; }
.hero-cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
[dir="rtl"] .hero-cta { align-items: flex-end; }
.hero-cta .row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .meta { font-family: var(--mono); font-size: 11px; color: var(--cream-faint); letter-spacing: 0.18em; text-transform: uppercase; }
html[lang="ar"] .hero-cta .meta { letter-spacing: 0.05em; text-transform: none; font-family: var(--sans); font-size: 12px; }
.hero-index {
  position: absolute;
  top: clamp(60px, 9vw, 120px); right: var(--pad);
  font-family: var(--mono); font-size: 11px;
  color: var(--cream-faint); letter-spacing: 0.2em;
  text-align: right; z-index: 3;
  animation: fadeUp 1.2s .6s both;
}
.hero-index .num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 14px; color: var(--brand-bright);
  display: block; margin-bottom: 4px;
}
@media (max-width: 700px) { .hero-index { display: none; } }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Pioneer / Welcome */
.pioneer { border-bottom: 1px solid var(--line); padding: 56px 0; background: var(--ink); }
.pioneer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 220px 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 800px) { .pioneer-inner { grid-template-columns: 1fr; gap: 24px; } }
.pioneer-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--brand-bright); letter-spacing: 0.22em;
  border-top: 1px solid var(--brand-bright); padding-top: 14px;
}
.pioneer-label span { display: block; color: var(--cream-faint); margin-top: 6px; }
.pioneer-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45; color: var(--cream-dim);
  max-width: 64ch; letter-spacing: -0.005em;
}
.pioneer-text em { font-style: italic; color: var(--brand-bright); }
.pioneer-text strong { color: var(--cream); font-weight: 400; font-style: italic; }
html[lang="ar"] .pioneer-text { line-height: 1.7; }
html[lang="ar"] .pioneer-text strong { font-style: normal; font-weight: 700; }

/* Mission & Vision — twin tableau */
.mv {
  border-bottom: 1px solid var(--line);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.mv::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(46, 100, 134, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(74, 138, 176, 0.08), transparent 60%);
  pointer-events: none;
}
.mv-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 32vw, 420px);
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}
.mv-eyebrow {
  font-family: var(--mono); font-size: 11px;
  color: var(--brand-bright); letter-spacing: 0.22em;
  text-align: center; margin-bottom: 64px;
  position: relative; z-index: 2;
}
.mv-eyebrow::before, .mv-eyebrow::after {
  content: ''; display: inline-block;
  width: 40px; height: 1px;
  background: var(--brand-bright);
  vertical-align: middle;
  margin: 0 18px;
}
html[lang="ar"] .mv-eyebrow { letter-spacing: 0.05em; }
.mv-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1px 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  align-items: start;
}
.mv-grid::before {
  /* The middle vertical rule */
  content: ''; grid-column: 2; grid-row: 1;
  background: linear-gradient(to bottom, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  align-self: stretch;
  min-height: 280px;
}
@media (max-width: 880px) {
  .mv-grid { grid-template-columns: 1fr; gap: 60px; }
  .mv-grid::before { display: none; }
  .mv-block:not(:last-child) {
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 60px;
  }
}
.mv-block { display: flex; flex-direction: column; gap: 24px; }
.mv-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--cream-faint); letter-spacing: 0.22em;
  display: flex; align-items: center; gap: 14px;
}
.mv-num::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--brand-bright);
}
html[lang="ar"] .mv-num { letter-spacing: 0.05em; }
.mv-block h2 {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--cream);
}
html[lang="ar"] .mv-block h2 { line-height: 1.2; font-weight: 400; }
.mv-block h2 em {
  font-style: italic; color: var(--brand-bright);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mv-block p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55; color: var(--cream-dim);
  max-width: 44ch; letter-spacing: -0.005em;
}
.mv-block p em { font-style: italic; color: var(--brand-bright); }
.mv-block p strong { color: var(--cream); font-weight: 400; font-style: italic; }
html[lang="ar"] .mv-block p { line-height: 1.8; font-weight: 400; }
html[lang="ar"] .mv-block p strong { font-style: normal; font-weight: 700; }
.mv-pull {
  font-family: var(--serif); font-style: italic;
  color: var(--brand-bright); font-size: 14px;
  letter-spacing: 0.03em;
  border-top: 1px solid var(--line-strong);
  padding-top: 14px; margin-top: 8px;
}
html[lang="ar"] .mv-pull { font-style: normal; font-weight: 600; }

/* Section frame */
section.s {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.s-head {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 80px; margin-bottom: 80px; align-items: start;
}
@media (max-width: 880px) { .s-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; } }
.s-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--brand-bright); letter-spacing: 0.22em;
  border-top: 1px solid var(--brand-bright); padding-top: 14px;
}
.s-num span { display: block; color: var(--cream-faint); margin-top: 6px; }
.s-title {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1; letter-spacing: -0.02em;
  max-width: 18ch;
}
html[lang="ar"] .s-title { line-height: 1.2; max-width: none; font-weight: 400; }
.s-title em { font-style: italic; color: var(--brand-bright); font-variation-settings: "opsz" 144, "SOFT" 100; }
.s-sub { font-size: 17px; color: var(--cream-dim); margin-top: 24px; max-width: 56ch; line-height: 1.6; }
html[lang="ar"] .s-sub { line-height: 1.8; }

/* Three pillars - column motif used as bullet */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--ink); padding: 56px 44px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  transition: background .4s ease;
  min-height: 340px;
}
.pillar:hover { background: var(--ink-2); }
.pillar:hover .pillar-icon { opacity: 0.5; transform: translateY(-2px); }

/* Custom mini-column SVG icon for each pillar */
.pillar-icon {
  width: 48px; height: 64px;
  opacity: 0.35;
  transition: opacity .4s ease, transform .4s ease;
}
.pillar-icon path, .pillar-icon line, .pillar-icon rect {
  stroke: var(--brand-bright); fill: none;
  stroke-width: 1.2;
}
.pillar h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 30px; letter-spacing: -0.01em;
  color: var(--cream);
}
html[lang="ar"] .pillar h3 { font-weight: 700; }
.pillar p {
  color: var(--cream-dim); font-size: 15.5px;
  line-height: 1.6; max-width: 38ch;
  margin-top: auto;
}
html[lang="ar"] .pillar p { line-height: 1.8; }
.pillar .num {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--cream-faint); letter-spacing: 0.22em;
  position: absolute; top: 28px; inset-inline-end: 28px;
}

/* Showcase */
.showcase {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 980px) { .showcase { grid-template-columns: 1fr; gap: 48px; } }
.showcase.flip > div:first-child { order: 2; }
@media (max-width: 980px) { .showcase.flip > div:first-child { order: 0; } }

.show-meta { font-family: var(--mono); font-size: 11px; color: var(--brand-bright); letter-spacing: 0.22em; margin-bottom: 18px; }
.show-meta.live::before {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-bright); margin-inline-end: 8px; vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
.show-meta.soon::before {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--moss); margin-inline-end: 8px; vertical-align: middle;
}
.show-title {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
html[lang="ar"] .show-title { line-height: 1.2; font-weight: 400; }
.show-title em { font-style: italic; color: var(--brand-bright); }
.show-desc { font-size: 16px; color: var(--cream-dim); line-height: 1.65; max-width: 50ch; margin-bottom: 32px; }
html[lang="ar"] .show-desc { line-height: 1.85; }
.show-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 36px;
}
@media (max-width: 480px) { .show-features { grid-template-columns: 1fr; } }
.show-feature { border-top: 1px solid var(--line-strong); padding-top: 14px; }
.show-feature h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 18px; letter-spacing: -0.005em;
  color: var(--cream); margin-bottom: 4px;
}
html[lang="ar"] .show-feature h4 { font-weight: 700; }
.show-feature h4 em { font-style: italic; color: var(--brand-bright); }
.show-feature p { font-size: 13.5px; color: var(--cream-dim); line-height: 1.5; }
.show-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual cards */
.visual {
  border: 1px solid var(--line);
  padding: 40px;
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.visual::before {
  content: ''; position: absolute;
  top: -1px; left: -1px;
  width: 30px; height: 30px;
  border-top: 1px solid var(--brand-bright);
  border-left: 1px solid var(--brand-bright);
}
.visual::after {
  content: ''; position: absolute;
  bottom: -1px; right: -1px;
  width: 30px; height: 30px;
  border-bottom: 1px solid var(--brand-bright);
  border-right: 1px solid var(--brand-bright);
}
.visual-label { font-family: var(--mono); font-size: 10px; color: var(--cream-faint); letter-spacing: 0.22em; margin-bottom: 24px; }
.visual-q {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 20px; color: var(--cream-soft);
  line-height: 1.45;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
html[lang="ar"] .visual-q { font-style: normal; line-height: 1.7; font-size: 19px; }
.visual-q::before { content: '— '; color: var(--brand-bright); }
.visual-rows { display: flex; flex-direction: column; gap: 14px; }
.visual-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: var(--cream-dim); line-height: 1.55;
  opacity: 0; transform: translateY(8px);
}
html[lang="ar"] .visual-row { line-height: 1.75; }
.visual.in .visual-row { animation: rowIn .6s ease forwards; }
.visual.in .visual-row:nth-child(1) { animation-delay: 0.2s; }
.visual.in .visual-row:nth-child(2) { animation-delay: 0.5s; }
.visual.in .visual-row:nth-child(3) { animation-delay: 0.8s; }
.visual.in .visual-row:nth-child(4) { animation-delay: 1.1s; }
.visual-row .tag {
  font-family: var(--mono); font-size: 10px;
  color: var(--brand-bright); letter-spacing: 0.18em;
  padding: 2px 7px; border: 1px solid var(--brand-bright);
  flex-shrink: 0; margin-top: 1px;
}
html[lang="ar"] .visual-row .tag { font-family: var(--sans); letter-spacing: 0; font-size: 11px; }
.visual-row strong { color: var(--cream); font-weight: 500; }
@keyframes rowIn { to { opacity: 1; transform: translateY(0); } }

.visual.contract { background: linear-gradient(160deg, var(--ink), var(--ink-2)); }
.visual.contract .doc {
  border: 1px solid var(--line-strong);
  padding: 28px;
  font-family: var(--serif);
  background: rgba(236, 241, 245, 0.02);
  position: relative;
}
.visual.contract .doc h5 {
  font-weight: 400; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand-bright); text-align: center;
  margin-bottom: 8px;
  font-family: var(--mono);
}
html[lang="ar"] .visual.contract .doc h5 { letter-spacing: 0.05em; font-family: var(--sans); }
.visual.contract .doc .title {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 22px; color: var(--cream);
  text-align: center; margin-bottom: 22px;
  letter-spacing: -0.01em;
}
html[lang="ar"] .visual.contract .doc .title { font-style: normal; font-weight: 700; }
.visual.contract .doc .lines { display: flex; flex-direction: column; gap: 8px; }
.visual.contract .doc .ln { height: 8px; background: var(--line-strong); border-radius: 1px; }
.visual.contract .doc .ln.s { width: 70%; }
.visual.contract .doc .ln.m { width: 92%; }
.visual.contract .doc .ln.short { width: 40%; }
.visual.contract .doc .ln.brand { background: var(--brand); opacity: 0.7; width: 55%; }
.visual.contract .stamp {
  position: absolute;
  bottom: 60px; right: 60px;
  width: 90px; height: 90px;
  border: 1px solid var(--brand-bright);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  color: var(--brand-bright); text-align: center;
  font-size: 11px; line-height: 1.2;
  transform: rotate(-12deg);
  background: rgba(11, 18, 24, 0.85);
}
html[lang="ar"] .visual.contract .stamp { font-style: normal; font-size: 10px; line-height: 1.4; }
.visual.contract .stamp::before {
  content: ''; position: absolute; inset: 4px;
  border: 1px dashed var(--brand-bright);
  border-radius: 50%; opacity: 0.5;
}

/* Coming soon cards */
.coming { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 880px) { .coming { grid-template-columns: 1fr; } }
.ccard {
  border: 1px solid var(--line);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--ink);
  transition: border-color .35s ease, transform .5s ease;
  position: relative;
}
.ccard:hover { border-color: var(--brand-bright); transform: translateY(-4px); }
.ccard .ic {
  width: 44px; height: 44px;
  border: 1px solid var(--brand-bright);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.ccard .ic svg { width: 18px; height: 18px; stroke: var(--brand-bright); fill: none; stroke-width: 1.4; }
.ccard h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; color: var(--cream);
  letter-spacing: -0.01em;
}
html[lang="ar"] .ccard h4 { font-weight: 700; }
.ccard h4 em { font-style: italic; color: var(--brand-bright); }
.ccard p { font-size: 14.5px; color: var(--cream-dim); line-height: 1.6; }
html[lang="ar"] .ccard p { line-height: 1.8; }
.ccard .stat {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--moss); letter-spacing: 0.22em;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line);
}
html[lang="ar"] .ccard .stat { letter-spacing: 0.05em; font-family: var(--sans); }

/* Pull quote with logo silhouette */
.pull {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, var(--ink), var(--ink-2), var(--ink));
  position: relative; overflow: hidden;
}
.pull-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(360px, 48vw, 600px);
  opacity: 0.04;
  pointer-events: none;
}
.pull-inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad); text-align: center; position: relative; z-index: 2; }
.pull-mark { color: var(--brand-bright); font-family: var(--serif); font-style: italic; font-size: 60px; line-height: 1; }
.pull blockquote {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.25; letter-spacing: -0.015em;
  color: var(--cream); margin: 24px 0 40px;
}
html[lang="ar"] .pull blockquote { line-height: 1.5; font-weight: 400; letter-spacing: 0; }
.pull blockquote em { font-style: italic; color: var(--brand-bright); font-variation-settings: "opsz" 144, "SOFT" 100; }
.pull .attr { display: inline-flex; flex-direction: column; gap: 4px; align-items: center; }
.pull .attr .nm { font-family: var(--serif); font-size: 17px; }
html[lang="ar"] .pull .attr .nm { font-weight: 700; }
.pull .attr .rl { font-size: 13px; color: var(--cream-dim); letter-spacing: 0.04em; }
.pull .attr .firm { font-family: var(--mono); font-size: 11px; color: var(--brand-bright); letter-spacing: 0.22em; margin-top: 6px; }
html[lang="ar"] .pull .attr .firm { font-family: var(--sans); letter-spacing: 0.05em; }

/* CTA */
.cta {
  padding: clamp(100px, 12vw, 180px) 0;
  border-bottom: 1px solid var(--line);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(74, 138, 176, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta .ornament { font-family: var(--serif); font-style: italic; color: var(--brand-bright); font-size: 28px; margin-bottom: 24px; }
.cta h2 {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.0; letter-spacing: -0.025em;
  max-width: 14ch; margin: 0 auto;
}
html[lang="ar"] .cta h2 { line-height: 1.2; font-weight: 400; max-width: none; }
html[lang="fr"] .cta h2 { font-size: clamp(36px, 6vw, 78px); max-width: 18ch; }
.cta h2 em { font-style: italic; color: var(--brand-bright); font-variation-settings: "opsz" 144, "SOFT" 100; }
.cta p { color: var(--cream-dim); margin: 28px auto 40px; max-width: 50ch; font-size: 17px; }
html[lang="ar"] .cta p { line-height: 1.85; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { background: var(--ink); padding: 80px 0 40px; position: relative; z-index: 2; overflow: hidden; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 60px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .logo { margin-bottom: 20px; }
.foot-brand p { font-size: 14px; color: var(--cream-dim); max-width: 36ch; line-height: 1.55; margin-bottom: 18px; }
html[lang="ar"] .foot-brand p { line-height: 1.8; }
.foot-brand .tag { font-family: var(--serif); font-style: italic; color: var(--brand-bright); font-size: 16px; }
html[lang="ar"] .foot-brand .tag { font-style: normal; font-weight: 700; }
.foot-col h5 {
  font-family: var(--mono); font-size: 11px;
  color: var(--brand-bright); letter-spacing: 0.22em;
  margin-bottom: 18px; font-weight: 400; text-transform: uppercase;
}
html[lang="ar"] .foot-col h5 { font-family: var(--sans); letter-spacing: 0.05em; text-transform: none; font-size: 13px; font-weight: 600; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col li a { font-size: 14px; color: var(--cream-dim); transition: color .25s ease; }
.foot-col li a:hover { color: var(--cream); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--cream-dim);
  transition: all .3s ease;
}
.socials a:hover { border-color: var(--brand-bright); background: var(--brand-bright); color: var(--ink); }
.socials svg { width: 14px; height: 14px; fill: currentColor; }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: var(--cream-faint);
}
.foot-bottom .legal { display: flex; gap: 22px; }
.foot-bottom .legal a:hover { color: var(--cream); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }



/* ===== ABOUT SECTION (new s03) — three narrative blocks ===== */
.about-blocks {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 920px) { .about-blocks { grid-template-columns: 1fr; } }
.about-block {
  background: var(--ink); padding: 48px 38px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: background .4s ease;
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1), background .4s ease;
}
.about-blocks.in .about-block:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.about-blocks.in .about-block:nth-child(2) { opacity: 1; transform: none; transition-delay: .2s; }
.about-blocks.in .about-block:nth-child(3) { opacity: 1; transform: none; transition-delay: .35s; }
.about-block:hover { background: var(--ink-2); }
[data-theme="light"] .about-block { background: var(--ink); }
[data-theme="light"] .about-block:hover { background: var(--ink-2); }
.about-num {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--brand-bright);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 14px; margin-bottom: 4px;
}
html[lang="ar"] .about-num { font-style: normal; font-weight: 600; }
.about-block h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--cream); line-height: 1.2;
}
html[lang="ar"] .about-block h3 { font-weight: 700; line-height: 1.4; }
.about-block h3 em { font-style: italic; color: var(--brand-bright); }
.about-block p {
  color: var(--cream-dim); font-size: 14.5px;
  line-height: 1.7; letter-spacing: -0.002em;
}
html[lang="ar"] .about-block p { line-height: 1.85; }
.about-block p strong { color: var(--cream); font-weight: 500; }
.about-block p em { font-style: italic; color: var(--brand-bright); }
html[lang="ar"] .about-block p strong { font-weight: 700; }

/* ===== CLAUSE BUILDER VISUAL ===== */
.visual.contract .doc { padding: 28px 28px 24px; }
.visual.contract .clause-text {
  font-family: var(--serif); font-weight: 300;
  font-size: 13.5px; line-height: 1.7;
  color: var(--cream-soft);
  margin: 18px 0 22px;
  font-style: italic;
}
html[lang="ar"] .visual.contract .clause-text { font-style: normal; line-height: 1.9; font-size: 14px; }
.clause-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.clause-chip {
  font-family: var(--mono); font-size: 10px;
  color: var(--cream-faint); letter-spacing: 0.18em;
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  transition: all .3s ease;
  cursor: default;
}
html[lang="ar"] .clause-chip { font-family: var(--sans); letter-spacing: 0.05em; font-size: 11px; }
.clause-chip.active {
  color: var(--brand-bright); border-color: var(--brand-bright);
  background: rgba(74, 138, 176, 0.08);
}
.clause-meta {
  font-family: var(--mono); font-size: 10px;
  color: var(--cream-faint); letter-spacing: 0.16em;
  margin-top: 14px; text-align: center;
  padding-top: 10px;
}
html[lang="ar"] .clause-meta { font-family: var(--sans); letter-spacing: 0.04em; font-size: 11px; }

/* Three-column features grid (Contract Drafting) */
.show-features-3 { grid-template-columns: 1fr !important; }
@media (min-width: 700px) { .show-features-3 { grid-template-columns: 1fr 1fr !important; } }
.show-output-note {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--brand-bright);
  margin-bottom: 32px; padding: 12px 16px;
  border-left: 2px solid var(--brand-bright);
  background: rgba(74, 138, 176, 0.04);
}
html[lang="ar"] .show-output-note { font-style: normal; font-weight: 500; line-height: 1.7; }
[dir="rtl"] .show-output-note { border-left: none; border-right: 2px solid var(--brand-bright); }

/* ===== LIGHT MODE ===== */
[data-theme="light"] {
  --ink: #F4F1EB; --ink-2: #EDE9E0; --ink-3: #E5E0D4;
  --line: rgba(11,18,24,.08); --line-strong: rgba(11,18,24,.16);
  --cream: #0C1520; --cream-soft: #1A2530;
  --cream-dim: rgba(12,21,32,.62); --cream-faint: rgba(12,21,32,.38);
  --brand: #1D5070; --brand-bright: #2E6486; --brand-pale: #4A8AB0;
}
[data-theme="light"] body::before { mix-blend-mode: multiply; opacity: 0.06; }
[data-theme="light"] nav.main { background: rgba(244,241,235,.9); }
[data-theme="light"] .bar { background: var(--ink-2); }
[data-theme="light"] .visual { background: linear-gradient(160deg, var(--ink-2), var(--ink)); }
[data-theme="light"] .visual.contract { background: linear-gradient(160deg, var(--ink), var(--ink-2)); }
[data-theme="light"] .visual.contract .stamp { background: rgba(244,241,235,.92); }
[data-theme="light"] footer { background: var(--ink-2); }
[data-theme="light"] .pillar { background: var(--ink); }
[data-theme="light"] .pillar:hover { background: var(--ink-2); }
[data-theme="light"] .ccard { background: var(--ink); }
[data-theme="light"] .pull { background: linear-gradient(to bottom, var(--ink), var(--ink-2), var(--ink)); }
[data-theme="light"] .hero::before { opacity: 0.6; }
[data-theme="light"] .mv::before { opacity: 0.6; }

/* Theme toggle button */
.theme-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  cursor: pointer; background: transparent;
  color: var(--cream-dim); transition: color .25s ease, border-color .25s ease;
  flex-shrink: 0;
}
.theme-btn:hover { color: var(--cream); border-color: var(--brand-bright); }
.theme-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* Floating WhatsApp button — brand teal, not WhatsApp's green */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(11, 18, 24, 0.35), 0 0 0 0 rgba(74, 138, 176, 0.5);
  transition: background .25s ease, transform .25s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover { background: var(--brand-bright); transform: translateY(-3px); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(11, 18, 24, 0.35), 0 0 0 0 rgba(74, 138, 176, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(11, 18, 24, 0.35), 0 0 0 8px rgba(74, 138, 176, 0); }
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--cream); }
[dir="rtl"] .whatsapp-float { right: auto; left: 28px; }
@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  [dir="rtl"] .whatsapp-float { left: 18px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* Hero background photo */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  opacity: 0.07; pointer-events: none; z-index: 0;
  animation: slowZoom 22s ease-out both;
}

/* CTA background photo */
.cta-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.07; pointer-events: none; z-index: 0;
}

/* Footer support info */
.foot-support { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.foot-support-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--cream-dim);
  transition: color .25s ease; text-decoration: none;
}
.foot-support-item:hover { color: var(--cream); }
.foot-support-item svg { width: 13px; height: 13px; stroke: var(--brand-bright); fill: none; stroke-width: 1.6; flex-shrink: 0; }

/* Modals */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11,18,24,.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-panel {
  width: 100%; max-width: 780px; max-height: 88vh;
  background: var(--ink-2); border: 1px solid var(--line-strong); border-bottom: none;
  overflow-y: auto; animation: slideUpModal .42s cubic-bezier(.2,.7,.2,1) both;
}
.modal-header {
  position: sticky; top: 0; background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; z-index: 2;
}
.modal-logo-txt { font-family: var(--mono); font-size: 11px; color: var(--brand-bright); letter-spacing: 0.22em; }
.modal-close-btn {
  width: 32px; height: 32px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; cursor: pointer; background: transparent;
  color: var(--cream-dim); font-size: 18px; line-height: 1; transition: all .25s ease;
}
.modal-close-btn:hover { border-color: var(--brand-bright); color: var(--cream); }
.modal-body { padding: 40px 32px 64px; font-size: 14.5px; line-height: 1.75; color: var(--cream-dim); }
.modal-body h2 {
  font-family: var(--serif); font-weight: 300; color: var(--cream);
  font-size: clamp(28px,4vw,40px); letter-spacing: -0.015em; margin-bottom: 8px;
}
.modal-body .modal-date {
  font-family: var(--mono); font-size: 11px; color: var(--cream-faint);
  letter-spacing: 0.18em; margin-bottom: 36px; display: block;
}
.modal-body h3 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: 19px; letter-spacing: -0.01em; margin: 28px 0 8px;
}
.modal-body p { margin-bottom: 14px; }
.modal-body ul { padding-left: 22px; margin-bottom: 14px; }
.modal-body li { margin-bottom: 5px; }
.modal-body a { color: var(--brand-bright); border-bottom: 1px solid transparent; transition: border-color .2s; }
.modal-body a:hover { border-color: var(--brand-bright); }

/* Contact Modal */
.modal-contact .modal-panel { max-width: 520px; }
.modal-contact .modal-body { padding: 48px 40px 56px; }
.modal-contact .contact-intro {
  font-size: 14.5px; line-height: 1.7; color: var(--cream-dim);
  margin: 0 0 32px;
}
.contact-list { display: flex; flex-direction: column; gap: 18px; margin: 0; padding: 0; list-style: none; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: border-color .25s ease, background .25s ease;
  text-decoration: none;
}
.contact-item:hover { border-color: var(--brand-bright); background: rgba(255,255,255,0.04); }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--brand-bright);
}
.contact-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.contact-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--cream-faint); text-transform: uppercase;
}
.contact-value {
  font-family: var(--sans); font-size: 15px; color: var(--cream);
  word-break: break-all; border-bottom: none !important;
}
[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-text { align-items: flex-end; }

/* Additional keyframes */
@keyframes slowZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.0); }
}
@keyframes slideUpModal {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: rotate(-12deg) translateY(0px); }
  50% { transform: rotate(-12deg) translateY(-7px); }
}
.visual.contract .stamp { animation: float 4s ease-in-out infinite; }

/* Stagger pillar / ccard reveal */
.pillars .pillar { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.pillars.in .pillar:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.pillars.in .pillar:nth-child(2) { opacity: 1; transform: none; transition-delay: .18s; }
.pillars.in .pillar:nth-child(3) { opacity: 1; transform: none; transition-delay: .32s; }
.coming .ccard { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.coming.in .ccard:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.coming.in .ccard:nth-child(2) { opacity: 1; transform: none; transition-delay: .2s; }
.coming.in .ccard:nth-child(3) { opacity: 1; transform: none; transition-delay: .35s; }

/* Counter-stat shimmer */
@keyframes shimmer {
  0%,100% { opacity:.35; } 50% { opacity:.8; }
}
.bar-inner .dot { animation: pulse 2.4s ease-in-out infinite, shimmer 3s ease-in-out infinite 1.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
