/* ===================================================================
   CR8IVE — DESIGN SYSTEM
   Premium editorial / warm paper + terracotta.
   Concept: "The Studio Ledger" — precise, engineered, hand-set.
   Shared across every page. Tokens preserved from brand v1.
   =================================================================== */

/* -------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------- */
:root {
  /* Backgrounds — warm paper tones */
  --bg:            #fafaf7;
  --bg-elevated:   #f5f2ec;
  --bg-raised:     #efebe2;
  --surface:       #ffffff;
  --surface-2:     #f8f6f0;

  /* Ink — near-black with warm undertone */
  --ink:           #1a1a1a;
  --ink-2:         #3d3d3a;
  --ink-dim:       #6b685f;
  --ink-faint:     #9a9589;
  --ink-muted:     #b8b3a6;

  /* Accent — graphite primary */
  --accent:        #1a1a1a;
  --accent-2:      #2d2d2d;
  --accent-deep:   #000000;
  --accent-soft:   rgba(26, 26, 26, 0.05);

  /* Highlight — warm terracotta */
  --highlight:     #b85c38;
  --highlight-2:   #a04e2d;
  --highlight-soft:rgba(184, 92, 56, 0.08);

  /* Lines */
  --line:          rgba(26, 26, 26, 0.08);
  --line-2:        rgba(26, 26, 26, 0.14);
  --line-strong:   rgba(26, 26, 26, 0.22);

  /* Type families */
  --f-display: "Geist", ui-sans-serif, system-ui, sans-serif;
  --f-body:    "Geist", ui-sans-serif, system-ui, sans-serif;
  --f-serif:   "Fraunces", Georgia, serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;
  --f-ar:      "IBM Plex Sans Arabic", "Geist", sans-serif;

  /* Radius */
  --r-xs: 6px;  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(26,26,26,0.04), 0 0 0 1px rgba(26,26,26,0.04);
  --shadow-md:  0 4px 16px rgba(26,26,26,0.06), 0 0 0 1px rgba(26,26,26,0.04);
  --shadow-lg:  0 12px 32px rgba(26,26,26,0.08), 0 0 0 1px rgba(26,26,26,0.04);

  /* Motion */
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   200ms;
  --dur:        320ms;
  --dur-slow:   600ms;

  --maxw: 1240px;
  --nav-h: 76px;
}

html[dir="rtl"] {
  --f-display: var(--f-ar);
  --f-body:    var(--f-ar);
}

/* -------------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Atmospheric background — faint paper grain + terracotta wash */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 800px at 12% -5%,  rgba(184, 92, 56, 0.045), transparent 55%),
    radial-gradient(1000px 700px at 88% 8%,   rgba(184, 92, 56, 0.03), transparent 55%),
    radial-gradient(900px 700px at 50% 112%,  rgba(239, 235, 226, 0.6), transparent 60%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 38%, black 38%, transparent 85%);
  pointer-events: none; z-index: 0;
}
main, nav, footer { position: relative; z-index: 1; }

::selection { background: rgba(184, 92, 56, 0.20); color: var(--ink); }
:focus-visible { outline: 2px solid var(--highlight); outline-offset: 3px; border-radius: 4px; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 10px 18px;
  border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 16px; }

/* -------------------------------------------------------------------
   3. TYPOGRAPHY PRIMITIVES
   ------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }

.serif-italic {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--highlight);
}
html[dir="rtl"] .serif-italic {
  font-family: var(--f-ar);
  font-style: normal;
  font-weight: 600;
  color: var(--highlight);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--highlight);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--highlight));
}
html[dir="rtl"] .eyebrow::before { background: linear-gradient(-90deg, transparent, var(--highlight)); }

.mono-label {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* Brand signature — the "8" in Cr8ive is always terracotta */
.eight { color: var(--highlight); }

/* -------------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
section { padding: 108px 0; position: relative; }
.section-tight { padding: 72px 0; }

.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 50px);
  margin-top: 20px; margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.section-head p {
  color: var(--ink-dim); font-size: 16.5px; line-height: 1.6; max-width: 620px;
}
.section-head.center { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { display: inline-flex; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.divider { height: 1px; background: var(--line); border: 0; }

/* -------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-size: 14.5px; font-weight: 600;
  padding: 13px 22px; border-radius: 10px; text-decoration: none;
  cursor: pointer; border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease); white-space: nowrap;
}
.btn svg { transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg.arrow { transform: translateX(3px); }
html[dir="rtl"] .btn:hover svg.arrow { transform: translateX(-3px); }

.btn-primary {
  background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.10);
}
.btn-primary:hover {
  transform: translateY(-1px); background: var(--highlight); border-color: var(--highlight);
  box-shadow: 0 6px 20px rgba(184, 92, 56, 0.25);
}
.btn-ghost { background: rgba(255,255,255,0.7); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: #fff; border-color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--ink); background: var(--bg-elevated); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  background: transparent; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 11px 32px;
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
}
.logo {
  display: flex; align-items: center; gap: 11px; color: var(--ink);
  text-decoration: none; font-family: var(--f-display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.015em;
}
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--ink);
  position: relative; display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(26,26,26,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.logo-mark::after {
  content: ""; width: 12px; height: 12px;
  border: 1.8px solid var(--bg); border-radius: 2px; transform: rotate(45deg);
}
.logo .tld { color: var(--highlight); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255, 255, 255, 0.6); border: 1px solid var(--line);
  padding: 5px; border-radius: 999px; backdrop-filter: blur(10px);
}
.nav-links a {
  color: var(--ink-2); text-decoration: none; font-size: 13.5px; font-weight: 500;
  padding: 8px 15px; border-radius: 999px; transition: all var(--dur-fast) var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(26, 26, 26, 0.05); }
.nav-links a.active { color: var(--ink); background: rgba(26,26,26,0.06); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--line-2); color: var(--ink-2);
  padding: 8px 14px; border-radius: 8px; font-family: var(--f-mono); font-size: 12px;
  cursor: pointer; transition: all var(--dur-fast);
}
.lang-toggle:hover { border-color: var(--ink); color: var(--ink); }

.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--bg); padding: 9px 18px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; text-decoration: none;
  transition: all var(--dur-fast); border: 1px solid var(--ink);
}
.btn-nav-cta:hover { background: var(--highlight); border-color: var(--highlight); color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line-2);
  color: var(--ink); padding: 8px; border-radius: 8px; cursor: pointer;
}

/* -------------------------------------------------------------------
   7. PAGE HEADER (interior pages)
   ------------------------------------------------------------------- */
.page-head {
  padding: calc(var(--nav-h) + 64px) 0 40px;
  position: relative; overflow: hidden;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--ink-faint); margin-bottom: 28px;
}
.breadcrumb a { color: var(--ink-dim); text-decoration: none; transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--highlight); }
.breadcrumb .sep { color: var(--ink-muted); }
.page-head h1 {
  font-size: clamp(38px, 6vw, 68px); line-height: 1.03;
  letter-spacing: -0.035em; max-width: 16ch; margin-bottom: 24px;
}
.page-head .lede {
  font-size: clamp(16.5px, 1.5vw, 19px); color: var(--ink-dim);
  max-width: 620px; line-height: 1.6;
}
.page-head .index-tag {
  position: absolute; top: calc(var(--nav-h) + 64px); right: 32px;
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-muted);
  letter-spacing: 0.06em; text-align: right;
}
html[dir="rtl"] .page-head .index-tag { right: auto; left: 32px; text-align: left; }

/* -------------------------------------------------------------------
   8. CARDS / GRIDS (shared)
   ------------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  padding: 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: all var(--dur) var(--ease); position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 50% 0%, var(--highlight-soft), transparent 65%);
  opacity: 0; transition: opacity var(--dur) var(--ease); pointer-events: none;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card:hover .icon-tile { color: var(--highlight); border-color: rgba(184,92,56,0.3); }

.icon-tile {
  width: 44px; height: 44px; border-radius: 10px; background: var(--bg-raised);
  border: 1px solid var(--line-2); display: grid; place-items: center;
  color: var(--ink); margin-bottom: 24px; transition: all var(--dur) var(--ease);
}
.card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.02em; }
.card p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.65; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tag {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.02em;
  padding: 4px 10px; border: 1px solid var(--line-2); border-radius: 6px;
  color: var(--ink-2); background: var(--bg-raised);
}

/* -------------------------------------------------------------------
   9. HERO (home)
   ------------------------------------------------------------------- */
.hero {
  min-height: 100vh; padding: 150px 0 90px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-inner { max-width: 1120px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 7px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(8px);
  margin-bottom: 34px; font-size: 13px; color: var(--ink-2); width: fit-content;
}
.hero-badge .tag-live {
  background: var(--highlight-soft); color: var(--highlight);
  padding: 3px 10px; border-radius: 999px; font-family: var(--f-mono);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid rgba(184, 92, 56, 0.20);
  display: inline-flex; align-items: center; gap: 6px;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--highlight); box-shadow: 0 0 0 0 rgba(184,92,56,0.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(184,92,56,0.45);} 70% { box-shadow: 0 0 0 7px rgba(184,92,56,0);} 100% { box-shadow: 0 0 0 0 rgba(184,92,56,0);} }

.hero h1 {
  font-size: clamp(44px, 7.2vw, 88px); line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 600; margin-bottom: 30px; max-width: 18ch;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-dim);
  max-width: 640px; margin-bottom: 42px; line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 60px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 30px; padding-top: 30px;
  border-top: 1px solid var(--line); max-width: 820px;
}
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-dim); }
.hero-meta-item .check {
  width: 18px; height: 18px; border-radius: 50%; background: var(--highlight-soft);
  color: var(--highlight); display: grid; place-items: center; flex-shrink: 0;
}

/* Hero decorative orbital */
.hero-orbital {
  position: absolute; right: -240px; top: 50%; transform: translateY(-50%);
  width: 720px; height: 720px; pointer-events: none; opacity: 0.38;
}
html[dir="rtl"] .hero-orbital { right: auto; left: -240px; }
.hero-orbital svg { width: 100%; height: 100%; animation: slow-rotate 80s linear infinite; }
@keyframes slow-rotate { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }

/* -------------------------------------------------------------------
   10. LOGO STRIP
   ------------------------------------------------------------------- */
.logos { padding: 54px 0 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos-label {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint); text-align: center; margin-bottom: 34px;
}
.logos-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 44px; align-items: center; justify-items: center; }
.logo-item {
  opacity: 0.55; transition: opacity var(--dur-fast); display: flex; align-items: center;
  justify-content: center; gap: 10px; color: var(--ink-2); font-family: var(--f-display);
  font-weight: 600; font-size: 17px; letter-spacing: -0.02em;
}
.logo-item:hover { opacity: 1; }

/* -------------------------------------------------------------------
   11. VALUE / CAPABILITY GRIDS
   ------------------------------------------------------------------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cap-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.cap-card {
  grid-column: span 4;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px;
  position: relative; overflow: hidden; transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column; min-height: 320px;
  text-decoration: none; color: inherit;
}
.cap-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 160px at 50% 0%, var(--highlight-soft), transparent 70%);
  opacity: 0; transition: opacity var(--dur) var(--ease); pointer-events: none;
}
.cap-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.cap-card:hover::before { opacity: 1; }
.cap-card:hover .cap-icon { color: var(--highlight); border-color: rgba(184,92,56,0.3); }
.cap-card:hover .cap-more { color: var(--highlight); gap: 10px; }
.cap-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cap-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--bg-raised);
  border: 1px solid var(--line-2); display: grid; place-items: center;
  color: var(--ink); transition: all var(--dur) var(--ease);
}
.cap-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-faint); }
.cap-card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.02em; }
.cap-card p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; flex-grow: 1; }
.cap-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.cap-tag {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.02em; padding: 4px 10px;
  border: 1px solid var(--line-2); border-radius: 6px; color: var(--ink-2); background: var(--bg-raised);
}
.cap-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-dim); transition: all var(--dur-fast) var(--ease);
}

/* -------------------------------------------------------------------
   12. PROCESS / STEPS
   ------------------------------------------------------------------- */
.process-section { background: linear-gradient(180deg, transparent 0%, rgba(239, 235, 226, 0.5) 100%); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step {
  padding: 28px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); position: relative; transition: all var(--dur) var(--ease);
}
.step:hover { border-color: var(--line-strong); transform: translateY(-2px); background: var(--surface-2); }
.step:hover .step-num { background: var(--highlight); color: var(--bg); border-color: var(--highlight); box-shadow: 0 4px 14px rgba(184, 92, 56, 0.25); }
.step-num {
  width: 40px; height: 40px; background: var(--bg-raised); border: 1px solid var(--line-2);
  border-radius: 10px; display: grid; place-items: center; font-family: var(--f-mono);
  font-weight: 500; font-size: 13px; color: var(--highlight); margin-bottom: 24px;
  transition: all var(--dur) var(--ease);
}
.step h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: -0.02em; }
.step p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.step-tag {
  display: inline-block; padding: 4px 10px; font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--highlight);
  background: var(--highlight-soft); border: 1px solid rgba(184, 92, 56, 0.18); border-radius: 6px;
}

/* Timeline (approach page) */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 1px;
  background: linear-gradient(180deg, var(--line-2), var(--line));
}
html[dir="rtl"] .timeline::before { left: auto; right: 27px; }
.tl-item { position: relative; padding-left: 76px; padding-bottom: 44px; }
html[dir="rtl"] .tl-item { padding-left: 0; padding-right: 76px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line-2); display: grid; place-items: center;
  font-family: var(--f-mono); font-weight: 600; font-size: 15px; color: var(--highlight); z-index: 1;
}
html[dir="rtl"] .tl-item .tl-marker { left: auto; right: 0; }
.tl-item h3 { font-size: 22px; margin-bottom: 6px; letter-spacing: -0.02em; }
.tl-meta { font-family: var(--f-mono); font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.04em; margin-bottom: 14px; }
.tl-item p { color: var(--ink-dim); font-size: 15px; line-height: 1.65; margin-bottom: 14px; max-width: 640px; }
.tl-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tl-list li { position: relative; padding-left: 22px; font-size: 14px; color: var(--ink-2); }
html[dir="rtl"] .tl-list li { padding-left: 0; padding-right: 22px; }
.tl-list li::before {
  content: ""; position: absolute; left: 2px; top: 8px; width: 7px; height: 7px;
  border: 1.5px solid var(--highlight); transform: rotate(45deg);
}
html[dir="rtl"] .tl-list li::before { left: auto; right: 2px; }

/* -------------------------------------------------------------------
   13. METRICS
   ------------------------------------------------------------------- */
.metrics { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.metric { padding: 12px 32px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: none; }
html[dir="rtl"] .metric { border-right: none; border-left: 1px solid var(--line); }
html[dir="rtl"] .metric:last-child { border-left: none; }
.metric:first-child { padding-left: 0; }
html[dir="rtl"] .metric:first-child { padding-left: 32px; padding-right: 0; }
.metric-value {
  font-family: var(--f-display); font-size: clamp(40px, 5vw, 56px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1; color: var(--ink); margin-bottom: 10px;
  display: inline-flex; align-items: baseline;
}
.metric-unit { font-size: 0.55em; color: var(--highlight); margin-left: 2px; font-weight: 500; }
.metric-label { font-size: 14px; color: var(--ink-dim); line-height: 1.4; }

/* -------------------------------------------------------------------
   14. TESTIMONIAL / QUOTE
   ------------------------------------------------------------------- */
.testimonial-wrap { max-width: 860px; margin: 0 auto; text-align: center; }
.testimonial-quote {
  font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.45;
  color: var(--ink); letter-spacing: -0.02em; font-weight: 500; margin-bottom: 40px;
}
.testimonial-quote em { font-family: var(--f-serif); font-style: italic; font-weight: 300; color: var(--highlight); }
html[dir="rtl"] .testimonial-quote em { font-family: var(--f-ar); font-style: normal; font-weight: 700; }
.testimonial-attrib {
  display: inline-flex; align-items: center; gap: 14px; padding: 14px 20px 14px 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
}
html[dir="rtl"] .testimonial-attrib { padding: 14px 14px 14px 20px; }
.attrib-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--highlight-2));
  display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.attrib-text { text-align: left; }
html[dir="rtl"] .attrib-text { text-align: right; }
.attrib-name { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.attrib-title { font-size: 12.5px; color: var(--ink-dim); line-height: 1.3; }

/* -------------------------------------------------------------------
   15. FAQ
   ------------------------------------------------------------------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none; padding: 24px 0;
  color: var(--ink); font-family: var(--f-display); font-size: 17px; font-weight: 500;
  letter-spacing: -0.015em; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; transition: color var(--dur-fast);
}
html[dir="rtl"] .faq-q { text-align: right; }
.faq-q:hover { color: var(--highlight); }
.faq-q .faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-dim); transition: all var(--dur) var(--ease);
}
.faq-item.open .faq-icon { background: var(--highlight); border-color: var(--highlight); color: var(--bg); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a-inner { padding: 0 0 24px; color: var(--ink-dim); font-size: 15px; line-height: 1.65; max-width: 700px; }

/* -------------------------------------------------------------------
   16. CTA FINAL
   ------------------------------------------------------------------- */
.cta-final { padding: 130px 0 100px; position: relative; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 50% 100%, rgba(184, 92, 56, 0.08), transparent 65%),
    radial-gradient(600px 400px at 20% 30%, rgba(184, 92, 56, 0.04), transparent 70%);
  pointer-events: none;
}
.cta-card {
  position: relative; max-width: 960px; margin: 0 auto; text-align: center; padding: 72px 48px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line-2); border-radius: var(--r-xl); overflow: hidden;
}
.cta-card::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 240px at 50% 0%, var(--highlight-soft), transparent 70%),
    radial-gradient(400px 200px at 50% 100%, var(--highlight-soft), transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 { font-size: clamp(38px, 6vw, 66px); line-height: 1.02; margin-bottom: 22px; }
.cta-card p { font-size: 18px; color: var(--ink-dim); max-width: 560px; margin: 0 auto 38px; line-height: 1.55; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.cta-channels { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding-top: 38px; border-top: 1px solid var(--line); }
.channel { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--ink-2); text-decoration: none; transition: color var(--dur-fast); }
.channel:hover { color: var(--highlight); }
.channel-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.channel-val { font-family: var(--f-mono); font-size: 14px; }

/* -------------------------------------------------------------------
   17. CONTACT / FORM
   ------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-aside h2 { font-size: clamp(30px, 3.6vw, 42px); letter-spacing: -0.03em; margin-bottom: 20px; }
.contact-aside p { color: var(--ink-dim); font-size: 16px; line-height: 1.65; margin-bottom: 32px; max-width: 460px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}
.contact-method:hover { border-color: var(--line-strong); transform: translateX(3px); }
html[dir="rtl"] .contact-method:hover { transform: translateX(-3px); }
.contact-method .cm-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--bg-raised);
  border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--highlight); flex-shrink: 0;
}
.cm-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.cm-value { font-size: 15px; font-weight: 500; color: var(--ink); }

.form-panel {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px;
}
.field label .req { color: var(--highlight); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  background: var(--surface); color: var(--ink); font-family: var(--f-body); font-size: 15px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--highlight); box-shadow: 0 0 0 3px var(--highlight-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; line-height: 1.5; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: var(--highlight-soft); border: 1px solid rgba(184,92,56,0.25); color: var(--highlight-2); }
.form-status.error { background: rgba(200,50,50,0.06); border: 1px solid rgba(200,50,50,0.25); color: #a03030; }

/* Calendly embed frame */
.calendly-panel {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-xl);
  padding: 8px; overflow: hidden;
}
.calendly-inline-widget { min-width: 320px; height: 680px; }

/* -------------------------------------------------------------------
   18. ABOUT / PRINCIPLES / STAT BAND
   ------------------------------------------------------------------- */
.prose { max-width: 720px; }
.prose p { color: var(--ink-2); font-size: 17px; line-height: 1.7; margin-bottom: 22px; }
.prose p .serif-italic { font-size: 1.02em; }
.pull-quote {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.35; color: var(--ink);
  border-left: 2px solid var(--highlight); padding-left: 28px; margin: 40px 0; max-width: 720px;
}
html[dir="rtl"] .pull-quote { border-left: 0; border-right: 2px solid var(--highlight); padding-left: 0; padding-right: 28px; font-family: var(--f-ar); font-style: normal; }

.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.principle { background: var(--bg); padding: 34px; transition: background var(--dur) var(--ease); }
.principle:hover { background: var(--surface-2); }
.principle-num { font-family: var(--f-mono); font-size: 12px; color: var(--highlight); letter-spacing: 0.06em; margin-bottom: 16px; }
.principle h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.02em; }
.principle p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.65; }

.founder-card {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: 36px;
}
.founder-avatar {
  width: 96px; height: 96px; border-radius: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ink), var(--accent-2));
  display: grid; place-items: center; color: var(--bg);
  font-family: var(--f-serif); font-style: italic; font-size: 40px;
}
.founder-card h3 { font-size: 22px; margin-bottom: 4px; }
.founder-role { font-family: var(--f-mono); font-size: 12px; color: var(--highlight); letter-spacing: 0.04em; margin-bottom: 14px; }
.founder-card p { color: var(--ink-dim); font-size: 15px; line-height: 1.65; }

/* -------------------------------------------------------------------
   19. SERVICE DETAIL BLOCKS
   ------------------------------------------------------------------- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 64px 0; border-top: 1px solid var(--line); }
.svc-block:nth-child(even) .svc-visual { order: -1; }
html[dir="rtl"] .svc-block:nth-child(even) .svc-visual { order: 0; }
.svc-text .cap-num { display: block; margin-bottom: 18px; }
.svc-text h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.03em; margin-bottom: 18px; }
.svc-text > p { color: var(--ink-dim); font-size: 16.5px; line-height: 1.7; margin-bottom: 26px; max-width: 520px; }
.svc-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.svc-features li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
html[dir="rtl"] .svc-features li { padding-left: 0; padding-right: 30px; }
.svc-features li::before {
  content: ""; position: absolute; left: 4px; top: 7px; width: 9px; height: 9px;
  border: 1.6px solid var(--highlight); transform: rotate(45deg);
}
html[dir="rtl"] .svc-features li::before { left: auto; right: 4px; }
.svc-visual {
  aspect-ratio: 4 / 3; border-radius: var(--r-xl); border: 1px solid var(--line-2);
  background: linear-gradient(160deg, var(--surface), var(--bg-raised));
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.svc-visual svg { width: 62%; height: auto; opacity: 0.9; }

/* -------------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------------- */
footer { padding: 56px 32px 32px; border-top: 1px solid var(--line); background: var(--bg-elevated); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.footer-brand p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; max-width: 340px; margin-top: 16px; }
.footer-brand .footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.footer-brand .footer-contact a { color: var(--ink-2); text-decoration: none; font-family: var(--f-mono); font-size: 13px; transition: color var(--dur-fast); }
.footer-brand .footer-contact a:hover { color: var(--highlight); }
.footer-col h4 { font-size: 12px; font-family: var(--f-mono); font-weight: 500; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col a { display: block; color: var(--ink-2); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--highlight); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-family: var(--f-mono); font-size: 12px; color: var(--ink-faint); }
.footer-bottom span.dot { color: var(--highlight); }

/* -------------------------------------------------------------------
   21. REVEAL ANIMATION
   ------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }
.reveal.d5 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------------
   22. RESPONSIVE
   ------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .cap-card:nth-child(n) { grid-column: span 12; }
  .value-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(3), .metric:nth-child(4) { padding-top: 32px; border-top: 1px solid var(--line); }
  html[dir="rtl"] .metric:nth-child(2) { border-left: none; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .hero-orbital { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-block { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .svc-block:nth-child(even) .svc-visual { order: 0; }
  .svc-visual { max-width: 460px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: calc(100% + 10px);
    left: 20px; right: 20px; background: var(--surface); backdrop-filter: blur(20px);
    padding: 12px; gap: 0; border: 1px solid var(--line-2); border-radius: var(--r-md); align-items: stretch;
  }
  .nav-links.open a { padding: 12px 16px; text-align: left; }
  html[dir="rtl"] .nav-links.open a { text-align: right; }
  .container, .container-narrow { padding: 0 20px; }
  section { padding: 76px 0; }
  .hero { padding: 128px 0 76px; }
  .section-head { margin-bottom: 44px; }
  .hero h1 { font-size: clamp(38px, 10vw, 60px); }
  .page-head { padding: calc(var(--nav-h) + 44px) 0 24px; }
  .page-head .index-tag { display: none; }
  .cta-card { padding: 48px 24px; }
  .cap-card, .card { padding: 28px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .btn-nav-cta { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric { padding: 24px 0; border-right: none; border-top: 1px solid var(--line); }
  .metric:first-child { border-top: none; padding-top: 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-panel { padding: 28px 22px; }
  .principle-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .timeline::before { left: 20px; }
  html[dir="rtl"] .timeline::before { right: 20px; }
  .tl-item { padding-left: 60px; }
  html[dir="rtl"] .tl-item { padding-right: 60px; }
  .tl-marker { width: 42px; height: 42px; font-size: 13px; }
}
