/* ════════════════════════════════════════════════════════════════════
   SALLAFLOW — Editorial Obsidian
   Design system + components + sections
   RTL primary, LTR mirrored via [dir]
   ════════════════════════════════════════════════════════════════════ */

/* ─── 1. TOKENS ─────────────────────────────────────────────────── */
:root{
  /* Surfaces — obsidian dark */
  --bg:           oklch(0.135 0.014 245);
  --bg-2:         oklch(0.165 0.014 245);
  --surface:      oklch(0.195 0.016 245);
  --surface-2:    oklch(0.225 0.017 245);
  --surface-3:    oklch(0.265 0.018 245);

  /* Borders */
  --line:         oklch(0.30 0.014 245 / 0.6);
  --line-soft:    oklch(0.30 0.014 245 / 0.3);
  --line-bright:  oklch(0.55 0.06 168 / 0.55);

  /* Text */
  --ink:          oklch(0.97 0.005 100);
  --ink-2:        oklch(0.82 0.012 100);
  --ink-3:        oklch(0.62 0.014 240);
  --ink-4:        oklch(0.46 0.014 240);

  /* Brand — emerald/teal */
  --brand:        oklch(0.74 0.16 168);
  --brand-2:      oklch(0.62 0.18 175);
  --brand-3:      oklch(0.48 0.17 172);
  --brand-glow:   oklch(0.74 0.16 168 / 0.35);
  --brand-tint:   oklch(0.74 0.16 168 / 0.10);

  /* Accent — warm gold (premium signal, used sparingly) */
  --gold:         oklch(0.84 0.14 85);
  --gold-2:       oklch(0.72 0.15 78);
  --gold-glow:    oklch(0.84 0.14 85 / 0.25);

  /* Status */
  --danger:       oklch(0.68 0.20 25);
  --success:      var(--brand);

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3);
  --shadow-md: 0 10px 30px -12px rgb(0 0 0 / 0.5), 0 2px 6px -2px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 30px 60px -20px rgb(0 0 0 / 0.6), 0 8px 24px -8px rgb(0 0 0 / 0.4);
  --shadow-glow: 0 20px 60px -20px var(--brand-glow);
  --shine: inset 0 1px 0 rgb(255 255 255 / 0.06);

  /* Type */
  --ff-display-en: 'Instrument Serif', Georgia, serif;
  --ff-body-en:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --ff-display-ar: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  --ff-body-ar:    'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  --ff-mono:       ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Spacing & layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(80px, 12vw, 140px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms;
  --t: 280ms;
  --t-slow: 600ms;
}

/* Light mode (opt-in via [data-theme="light"]) */
[data-theme="light"]{
  --bg:           oklch(0.985 0.004 100);
  --bg-2:         oklch(0.965 0.005 100);
  --surface:      #ffffff;
  --surface-2:    oklch(0.975 0.005 145);
  --surface-3:    oklch(0.955 0.006 145);
  --line:         oklch(0.88 0.008 150 / 0.9);
  --line-soft:    oklch(0.92 0.006 150);
  --line-bright:  oklch(0.55 0.10 168 / 0.4);
  --ink:          oklch(0.20 0.014 250);
  --ink-2:        oklch(0.38 0.012 250);
  --ink-3:        oklch(0.52 0.010 250);
  --ink-4:        oklch(0.66 0.008 250);
  --brand:        oklch(0.55 0.14 168);
  --brand-2:      oklch(0.46 0.15 172);
  --brand-3:      oklch(0.38 0.14 172);
  --shine: inset 0 1px 0 rgb(255 255 255 / 0.8);
}

/* ─── 2. RESET / BASE ──────────────────────────────────────────── */
*,*::before,*::after{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--ff-body-ar);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern","calt","ss01";
  overflow-x: clip;
  min-height: 100vh;
}
[dir="ltr"] body{
  font-family: var(--ff-body-en);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
}
img, svg, video{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select{ font: inherit; color: inherit; }
::selection{ background: var(--brand-glow); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar{ width: 5px; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{ background: var(--surface-3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover{ background: var(--line-bright); }

/* Atmospheric layers — applied to <body> */
body::before{
  /* Grain overlay */
  content:"";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  mix-blend-mode: overlay;
}
body::after{
  /* Top radial accent */
  content:"";
  position: fixed; top: -30vh; left: 50%;
  transform: translateX(-50%);
  width: 120vw; height: 80vh;
  background: radial-gradient(60% 60% at 50% 50%, var(--brand-tint) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
[data-theme="light"] body::before{ opacity: 0.025; mix-blend-mode: multiply; }

/* ─── 3. TYPOGRAPHY ────────────────────────────────────────────── */
h1,h2,h3,h4,h5{
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3{
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.display{
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}
[dir="ltr"] .display em,[dir="ltr"] .display .ital{
  font-family: var(--ff-display-en);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
[dir="rtl"] .display{
  font-size: clamp(36px, 6.5vw, 76px);
  line-height: 1.2;
  letter-spacing: 0;
}
[dir="rtl"] .display em,[dir="rtl"] .display .ital{
  font-style: normal;
  color: var(--brand);
  font-weight: 700;
}

.h2{
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
[dir="rtl"] .h2{ font-size: clamp(26px, 4vw, 44px); letter-spacing: 0; line-height: 1.25; }

.h3{ font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; }
[dir="rtl"] .h3{ font-size: clamp(20px, 2.2vw, 26px); line-height: 1.4; }

.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
[dir="rtl"] .eyebrow{
  font-family: var(--ff-body-ar);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
}
.eyebrow::before{
  content:""; width: 18px; height: 1px; background: currentColor;
}

.lead{
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 60ch;
  text-wrap: pretty;
}
[dir="rtl"] .lead{ line-height: 1.85; }

.mono{ font-family: var(--ff-mono); font-feature-settings:"tnum","zero"; }
.num  { font-family: var(--ff-mono); font-variant-numeric: tabular-nums; direction: ltr; unicode-bidi: isolate; }

/* ─── 4. LAYOUT PRIMITIVES ─────────────────────────────────────── */
.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
section{
  padding-block: var(--section-y);
  position: relative;
}
.section-head{ max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .eyebrow{ margin-bottom: 16px; }
.section-head p{ margin-top: 18px; }

/* Grid helpers */
.grid{ display: grid; gap: clamp(16px, 2vw, 24px); }
.cols-2{ grid-template-columns: repeat(2, 1fr); }
.cols-3{ grid-template-columns: repeat(3, 1fr); }
.cols-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px){
  .cols-3,.cols-4{ grid-template-columns: 1fr 1fr; }
  .cols-2{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .cols-3,.cols-4{ grid-template-columns: 1fr; }
}

/* ─── 5. NAV ───────────────────────────────────────────────────── */
.nav{
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.scrolled{
  border-bottom-color: var(--line-soft);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
}
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 72px;
}
.brand{
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; letter-spacing: -0.01em;
}
.brand-mark{
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px var(--brand-glow), var(--shine);
  overflow: hidden;
}
.brand-mark img{
  width: 22px; height: 22px;
  display: block; object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.brand-name{ font-size: 16px; }
.brand-name small{ display:block; font-size: 11px; color: var(--ink-4); font-weight: 400; letter-spacing: 0.04em; }

.nav-links{ display: flex; align-items: center; gap: 4px; }
.nav-links a{
  padding: 9px 14px; border-radius: 10px;
  color: var(--ink-2); font-size: 14.5px; font-weight: 500;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover{ color: var(--ink); background: var(--surface-2); }
.nav-cta{ display: flex; align-items: center; gap: 10px; }
@media (max-width: 920px){ .nav-links{ display: none; } }

/* Scroll progress bar */
.scroll-progress{
  position: fixed; top: 0; inset-inline: 0;
  height: 2px; z-index: 100;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}
[dir="rtl"] .scroll-progress{ transform-origin: right; }

/* Lang toggle pill */
.lang-toggle{
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 3px;
  background: var(--surface);
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.08em;
}
.lang-toggle a{
  padding: 5px 11px; border-radius: var(--r-pill);
  color: var(--ink-3); transition: all var(--t-fast);
}
.lang-toggle a.active{ background: var(--ink); color: var(--bg); }

/* Theme toggle */
.theme-toggle{
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.theme-toggle:hover{ color: var(--ink); border-color: var(--line-bright); }

/* ─── 6. BUTTONS ───────────────────────────────────────────────── */
.btn{
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 500; font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  isolation: isolate;
}
.btn svg{ width: 16px; height: 16px; }
[dir="rtl"] .btn .arr{ transform: scaleX(-1); }

.btn-primary{
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-3) 100%);
  color: #001b13;
  box-shadow: 0 10px 30px -10px var(--brand-glow), var(--shine);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px -14px var(--brand-glow), var(--shine);
}
.btn-primary::after{
  content:""; position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -20%, rgb(255 255 255 / 0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--t);
  pointer-events: none;
}
.btn-primary:hover::after{ opacity: 1; }

.btn-ghost{
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
}
.btn-ghost:hover{ border-color: var(--line-bright); background: var(--surface-2); }

.btn-wa{
  background: oklch(0.62 0.16 145);
  color: white;
  box-shadow: 0 10px 30px -10px oklch(0.62 0.16 145 / 0.5), var(--shine);
}
.btn-wa:hover{ transform: translateY(-1px); }

.btn-lg{ padding: 17px 28px; font-size: 16px; border-radius: 14px; }
.btn-sm{ padding: 10px 16px; font-size: 13px; }

/* ─── 7. CARDS / SURFACES ──────────────────────────────────────── */
.card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: var(--shadow-sm), var(--shine);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.card:hover{ border-color: var(--line-bright); transform: translateY(-2px); }

/* Conic gradient hairline border — premium signature */
.card-gradient{
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 32px);
  isolation: isolate;
}
.card-gradient::before{
  content:""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 200deg at 50% 50%,
    var(--line) 0deg,
    var(--brand) 90deg,
    var(--line) 180deg,
    var(--gold) 270deg,
    var(--line) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.6;
  z-index: -1;
}

.card-featured{
  background: linear-gradient(180deg, var(--brand-tint), var(--surface) 40%);
  border: 1px solid var(--line-bright);
  box-shadow: var(--shadow-glow), var(--shine);
}

.chip{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
  background: var(--brand-tint);
  color: var(--brand);
  border: 1px solid var(--line-bright);
}
.chip.gold{
  background: oklch(0.84 0.14 85 / 0.12);
  color: var(--gold);
  border-color: oklch(0.84 0.14 85 / 0.35);
}

.badge-dot{ width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
@keyframes pulse{ 0%,100%{opacity:1} 50%{opacity:0.3} }
.badge-dot.live{ animation: pulse 1.8s var(--ease) infinite; }

/* ─── 8. HERO ──────────────────────────────────────────────────── */
.hero{
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px){ .hero-grid{ grid-template-columns: 1fr; } }

.hero-eyebrow{ margin-bottom: 28px; }
.hero h1{ margin-bottom: 26px; }
.hero .lead{ margin-bottom: 36px; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust{
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  padding-top: 28px; border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--ink-3);
}
.hero-trust span{ display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg{ width: 14px; height: 14px; color: var(--brand); }

/* Aurora background */
.aurora{
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 70vh;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.55;
}
.aurora-blob{
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.aurora-blob.a{
  width: 50vw; height: 50vw;
  top: -10%; left: 10%;
  background: radial-gradient(circle, var(--brand) 0%, transparent 60%);
  animation: drift1 22s ease-in-out infinite;
}
.aurora-blob.b{
  width: 40vw; height: 40vw;
  top: 0%; right: 5%;
  background: radial-gradient(circle, var(--brand-2) 0%, transparent 60%);
  animation: drift2 28s ease-in-out infinite;
}
.aurora-blob.c{
  width: 35vw; height: 35vw;
  top: 20%; left: 35%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: 0.4;
  animation: drift3 26s ease-in-out infinite;
}
@keyframes drift1{ 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(6%,4%) scale(1.1)} }
@keyframes drift2{ 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5%,6%) scale(1.05)} }
@keyframes drift3{ 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(3%,-5%) scale(1.15)} }

/* Hero visual — floating stat cards */
.hero-visual{
  position: relative;
  height: clamp(360px, 50vw, 520px);
  perspective: 1200px;
}
.float-card{
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg), var(--shine);
  backdrop-filter: blur(20px);
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.float-card.fc-1{ top: 8%; inset-inline-start: 0; animation-delay: 0s; }
.float-card.fc-2{ top: 38%; inset-inline-end: 0; animation-delay: 1.2s; }
.float-card.fc-3{ bottom: 6%; inset-inline-start: 8%; animation-delay: 2.4s; }
.float-card.fc-4{ top: 55%; inset-inline-start: 25%; animation-delay: 0.6s; }

.fc-label{ font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.fc-value{ font-size: 26px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.fc-value .num{ color: var(--brand); }
.fc-delta{ font-family: var(--ff-mono); font-size: 12px; color: var(--brand); margin-top: 4px; }
.fc-delta.down{ color: var(--danger); }

/* ── Hero central logo emblem ── */
.hero-emblem{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-emblem-rings{
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--brand-glow);
  animation: pulse-ring 4s ease-out infinite;
}
.hero-emblem-rings::before{
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid var(--brand-tint);
  animation: pulse-ring 4s ease-out 0.8s infinite;
}
.hero-emblem-rings::after{
  content: '';
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  border: 1px solid rgba(45,190,140,0.05);
  animation: pulse-ring 4s ease-out 1.6s infinite;
}
@keyframes pulse-ring{
  0%   { transform: scale(0.92); opacity: 0.8; }
  60%  { transform: scale(1.06); opacity: 0.3; }
  100% { transform: scale(1.12); opacity: 0; }
}
.hero-emblem-box{
  position: relative; z-index: 2;
  width: 108px; height: 108px;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-3) 100%);
  border-radius: 28px;
  display: grid; place-items: center;
  box-shadow:
    0 0 0 1px var(--brand-glow),
    0 0 60px -10px var(--brand-glow),
    0 30px 60px -20px rgba(0,0,0,0.6),
    var(--shine);
  animation: emblem-float 6s ease-in-out infinite;
}
@keyframes emblem-float{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%    { transform: translateY(-10px) rotate(1deg); }
}
.hero-emblem-box img{
  width: 72px; height: 72px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Hero stat grid (mobile/below visual fallback) */
.hero-stat{
  display: flex; align-items: baseline; gap: 10px;
}
.hero-stat .v{ font-size: 32px; font-weight: 600; color: var(--brand); }
.hero-stat .l{ font-size: 13px; color: var(--ink-3); }

/* ─── 9. PROBLEM SECTION ───────────────────────────────────────── */
.problem .h2 .strike{ position: relative; }
.problem .h2 .strike::after{
  content:""; position: absolute;
  inset-inline: -4%; top: 56%;
  height: 6px; background: var(--danger);
  transform: rotate(-2deg);
  opacity: 0.85;
}
.problem-list{
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.problem-item{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background 200ms ease-out, border-color 200ms ease-out, border-radius 200ms ease-out;
}
.problem-item:hover{
  background: var(--surface);
  border-radius: var(--r-md);
  border-color: var(--line-bright);
}
.problem-num{
  font-family: var(--ff-mono);
  font-size: 13px; color: var(--ink-4); letter-spacing: 0.1em;
  min-width: 36px;
}
.problem-text{
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--ink);
}
[dir="rtl"] .problem-text{ font-weight: 600; }
.problem-tag{
  font-family: var(--ff-mono); font-size: 11px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: oklch(0.68 0.20 25 / 0.12);
  color: var(--danger);
  letter-spacing: 0.05em;
}

/* ─── 10. SERVICES (Bento tiers) ───────────────────────────────── */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px){ .services-grid{ grid-template-columns: 1fr; } }

.tier{
  display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm), var(--shine);
  position: relative;
  isolation: isolate;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.tier::after{
  content:""; position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    oklch(0.74 0.16 168 / 0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
  z-index: -1;
}
.tier:hover::after{ opacity: 1; }
.tier:hover{ transform: translateY(-4px); border-color: var(--line-bright); }
.tier-featured{
  background: linear-gradient(180deg, var(--brand-tint) 0%, var(--surface) 50%);
  border: 1px solid var(--line-bright);
  box-shadow: var(--shadow-glow), var(--shine);
  transform: scale(1.02);
}
.tier-featured:hover{ transform: scale(1.02) translateY(-4px); }

.tier-badge{
  position: absolute; top: -12px; inset-inline-end: 24px;
  font-family: var(--ff-mono); font-size: 11px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--gold); color: #2a1d00;
  letter-spacing: 0.08em; font-weight: 600;
  box-shadow: 0 8px 24px -10px var(--gold-glow);
}

.tier-title{ font-size: 22px; margin-bottom: 6px; }
.tier-sub{ font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }
.tier-price{
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.tier-price .from{ font-size: 13px; color: var(--ink-3); }
.tier-price .v{ font-size: 38px; font-weight: 700; letter-spacing: -0.02em; }
.tier-price .u{ font-size: 14px; color: var(--ink-3); }

.tier-features{ list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.tier-features li{
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  align-items: start;
  font-size: 14.5px; color: var(--ink-2);
  line-height: 1.6;
}
.tier-features li::before{
  content:"";
  width: 16px; height: 16px;
  background: var(--brand-tint);
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2358d6b3' stroke-width='2'><polyline points='4 8 7 11 12 5'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 4px;
}
.tier-cta{ margin-top: auto; }

/* ─── 11. PROOF (Founding clients) ─────────────────────────────── */
.proof-band{
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding-block: clamp(60px, 8vw, 100px);
  margin-block: 0;
}
.proof-card{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md), var(--shine);
}
@media (max-width: 880px){ .proof-card{ grid-template-columns: 1fr; } }

.proof-card .chip.gold{ margin-bottom: 16px; }
.proof-num{
  font-family: var(--ff-mono);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof-points{
  display: grid;
  gap: 12px;
}
.proof-point{
  background: color-mix(in oklab, var(--surface) 82%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shine);
}
.proof-kicker{
  display: inline-flex;
  margin-bottom: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.proof-point strong{
  display: block;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
}
.proof-point p{
  margin: 8px 0 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.65;
}

/* Marquee strip */
.marquee{
  overflow: hidden;
  position: relative;
  padding-block: 24px;
  border-block: 1px solid var(--line);
  background: var(--bg);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track{
  display: flex; align-items: center; gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track span{
  font-family: var(--ff-display-en);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}
[dir="rtl"] .marquee-track span{ font-family: var(--ff-display-ar); font-style: normal; font-weight: 500; }
.marquee-track .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--brand); display: inline-block; }
@keyframes marquee{ to{ transform: translateX(-50%); } }
[dir="rtl"] .marquee-track{ animation-direction: reverse; }

/* ─── 12. PROCESS ──────────────────────────────────────────────── */
.process-steps{ display: grid; gap: 0; position: relative; }
.process-steps::before{
  content:""; position: absolute;
  inset-block: 24px;
  inset-inline-start: 28px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-bright), transparent);
}
.step{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-block: 32px;
  position: relative;
}
.step-mark{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-bright);
  display: grid; place-items: center;
  font-family: var(--ff-mono);
  font-size: 18px; font-weight: 600;
  color: var(--brand);
  position: relative; z-index: 1;
  box-shadow: 0 8px 24px -10px var(--brand-glow);
}
.step-body h3{ margin-bottom: 8px; }
.step-body p{ color: var(--ink-2); margin: 0; max-width: 60ch; }
.step-meta{
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-3); letter-spacing: 0.05em;
}

/* ─── 13. CALCULATOR ───────────────────────────────────────────── */
.calc{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 880px){ .calc{ grid-template-columns: 1fr; } }

.calc-controls{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm), var(--shine);
}
.calc-row{ margin-bottom: 24px; }
.calc-row:last-child{ margin-bottom: 0; }
.calc-row label{
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--ink-2);
  margin-bottom: 10px;
}
.calc-row label .v{
  font-family: var(--ff-mono); font-weight: 600;
  color: var(--ink); font-size: 16px;
}
.calc-input{
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: var(--ff-mono);
  color: var(--ink);
  transition: border-color var(--t-fast);
}
.calc-input:focus{ outline: none; border-color: var(--brand); }
.calc-slider{
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--surface-3);
  border-radius: 999px; outline: none;
  margin-block: 8px;
}
.calc-slider::-webkit-slider-thumb{
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--bg);
  box-shadow: 0 4px 12px var(--brand-glow);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb{
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); border: 3px solid var(--bg);
  cursor: pointer;
}

.calc-result{
  background: linear-gradient(160deg, var(--brand-tint) 0%, var(--surface) 60%);
  border: 1px solid var(--line-bright);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-glow), var(--shine);
  display: flex; flex-direction: column; justify-content: space-between;
}
.calc-result .label{
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px;
}
.calc-now,.calc-after{ display: flex; align-items: baseline; gap: 8px; }
.calc-now .v{ font-size: 28px; color: var(--ink-2); font-family: var(--ff-mono); }
.calc-after .v{
  font-size: clamp(40px, 6vw, 68px);
  font-family: var(--ff-mono);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--brand) 0%, var(--gold) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc-after .u, .calc-now .u{ color: var(--ink-3); font-size: 14px; }
.calc-divider{ height: 1px; background: var(--line); margin-block: 22px; }
.calc-lift{
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-tint);
  color: var(--brand);
  padding: 8px 14px; border-radius: var(--r-pill);
  font-family: var(--ff-mono); font-size: 13px; font-weight: 600;
  border: 1px solid var(--line-bright);
}
.calc-foot{
  margin-top: 20px;
  font-size: 12px; color: var(--ink-4);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

/* ─── 14. WHY SALLAFLOW / Team ─────────────────────────────────── */
.founder-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), var(--shine);
}
@media (max-width: 720px){ .founder-card{ grid-template-columns: 1fr; text-align: start; } }
.founder-avatar{
  width: 220px; height: 220px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--brand-tint) 0%, var(--surface-2) 50%, var(--gold-glow) 100%);
  border: 1px solid var(--line-bright);
  display: grid; place-items: center;
  font-family: var(--ff-display-en); font-style: italic;
  font-size: 90px; color: var(--brand);
  position: relative; overflow: hidden;
}
.founder-avatar::after{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 30% 20%, rgb(255 255 255 / 0.12) 0%, transparent 60%);
}
.founder-name{ font-size: 24px; margin-bottom: 6px; }
.founder-role{ font-family: var(--ff-mono); font-size: 13px; color: var(--brand); letter-spacing: 0.08em; margin-bottom: 16px; }
.founder-bio{ color: var(--ink-2); margin-bottom: 20px; line-height: 1.7; }
.founder-tags{ display: flex; flex-wrap: wrap; gap: 8px; }

/* ─── 15. FAQ ──────────────────────────────────────────────────── */
.faq-list{ display: grid; gap: 12px; }
.faq-item{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: clip;
  transition: border-color var(--t);
}
.faq-item[open]{ border-color: var(--line-bright); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content:""; width: 14px; height: 14px;
  border-inline-end: 1.5px solid var(--ink-2);
  border-block-end: 1.5px solid var(--ink-2);
  transform: rotate(45deg);
  transition: transform var(--t);
  justify-self: end;
}
.faq-item[open] summary::after{ transform: rotate(-135deg); }
.faq-body{ padding: 0 26px 22px; color: var(--ink-2); line-height: 1.8; }

/* ─── 16. FINAL CTA / Form ─────────────────────────────────────── */
.final-cta{
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-2) 60%);
  border: 1px solid var(--line-bright);
  padding: clamp(36px, 5vw, 72px);
  box-shadow: var(--shadow-lg), var(--shine);
}
.final-cta::before{
  content:""; position: absolute;
  inset-inline-end: -10%; top: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(50% 50% at 50% 50%, var(--brand-glow) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.final-cta-inner{ position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px){ .final-cta-inner{ grid-template-columns: 1fr; } }

.form{ display: grid; gap: 14px; }
.form-row{ display: grid; gap: 6px; }
.form-row label{ font-size: 13px; color: var(--ink-3); font-weight: 500; }
.form-row input, .form-row textarea{
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-row input:focus, .form-row textarea:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.form-row textarea{ resize: vertical; min-height: 100px; font-family: inherit; }
.form-foot{ display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.form-foot .or{ font-family: var(--ff-mono); font-size: 12px; color: var(--ink-4); letter-spacing: 0.1em; }
.form-note{ font-size: 12px; color: var(--ink-4); margin-top: 4px; }

/* ─── 17. FOOTER ───────────────────────────────────────────────── */
.footer{
  padding-block: 60px 32px;
  border-top: 1px solid var(--line);
  margin-top: var(--section-y);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer h4{
  font-family: var(--ff-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
  margin-bottom: 16px;
}
.footer ul{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a{ color: var(--ink-2); transition: color var(--t-fast); font-size: 14.5px; }
.footer a:hover{ color: var(--brand); }
.footer-tag{ color: var(--ink-3); font-size: 14px; max-width: 32ch; margin-block: 16px; line-height: 1.7; }
.socials{ display: flex; gap: 10px; margin-top: 16px; }
.socials a{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface);
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.socials a:hover{ color: var(--brand); border-color: var(--line-bright); transform: translateY(-2px); }
.socials svg{ width: 16px; height: 16px; }

.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-4);
  font-family: inherit;
  letter-spacing: 0;
}

/* ─── 18. FAB / Mobile bar ─────────────────────────────────────── */
.fab-wa{
  position: fixed;
  bottom: 24px; inset-inline-end: 24px;
  z-index: 80;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: oklch(0.62 0.16 145);
  color: white;
  box-shadow: 0 16px 40px -12px oklch(0.62 0.16 145 / 0.5), var(--shine);
  transition: transform var(--t);
}
.fab-wa:hover{ transform: scale(1.08); }
.fab-wa svg{ width: 26px; height: 26px; }
@media (max-width: 720px){ .fab-wa{ bottom: 88px; } }

.mobile-bar{
  position: fixed; bottom: 0; inset-inline: 0;
  z-index: 80;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  gap: 8px;
}
.mobile-bar .btn{ flex: 1; padding: 12px 14px; font-size: 14px; }
@media (max-width: 720px){ .mobile-bar{ display: flex; } body{ padding-bottom: 72px; } }

/* ─── RTL: replace monospace on Arabic labels ───────────────────── */
[dir="rtl"] .tier-badge,
[dir="rtl"] .tier-sub,
[dir="rtl"] .calc-result .label,
[dir="rtl"] .calc-lift,
[dir="rtl"] .step-meta,
[dir="rtl"] .chip,
[dir="rtl"] .lang-toggle,
[dir="rtl"] .problem-tag,
[dir="rtl"] .marquee-track span,
[dir="rtl"] .fc-label,
[dir="rtl"] .fc-delta {
  font-family: var(--ff-body-ar);
  letter-spacing: 0;
}
[dir="rtl"] .tier-badge { text-transform: none; }
[dir="rtl"] .calc-result .label { text-transform: none; letter-spacing: 0.02em; }

/* ─── Light mode overrides ─────────────────────────────────────── */
[data-theme="light"] .btn-primary{ color: #fff; }
[data-theme="light"] .brand-mark{ background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); }

/* ─── Contact section icon sizing ──────────────────────────────── */
.final-cta a svg{ width: 18px; height: 18px; flex-shrink: 0; stroke-linecap: round; stroke-linejoin: round; }

/* ─── 19. REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"]{ transition-delay: 80ms; }
.reveal[data-delay="2"]{ transition-delay: 160ms; }
.reveal[data-delay="3"]{ transition-delay: 240ms; }
.reveal[data-delay="4"]{ transition-delay: 320ms; }
.reveal[data-delay="5"]{ transition-delay: 400ms; }

/* Problem items — slide in from the side, staggered */
.problem-item.reveal{
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
[dir="ltr"] .problem-item.reveal{ transform: translateX(-28px); }
.problem-item.reveal.in{ opacity: 1; transform: translateX(0); }
/* After reveal completes, JS adds .revealed — enables clean hover transitions */
.problem-item.revealed{
  transition: background 200ms ease-out, border-color 200ms ease-out, border-radius 200ms ease-out, transform 220ms var(--ease-out);
  transition-delay: 0ms !important;
}
.problem-item.revealed:hover{ transform: translateX(-6px); }
[dir="ltr"] .problem-item.revealed:hover{ transform: translateX(6px); }
.problem-item.reveal[data-delay="1"]{ transition-delay: 60ms; }
.problem-item.reveal[data-delay="2"]{ transition-delay: 120ms; }
.problem-item.reveal[data-delay="3"]{ transition-delay: 180ms; }
.problem-item.reveal[data-delay="4"]{ transition-delay: 240ms; }
.problem-item.reveal[data-delay="5"]{ transition-delay: 300ms; }

/* Process steps — slide up, staggered */
.step.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.step.reveal.in{ opacity: 1; transform: translateY(0); }
.step.reveal[data-delay="1"]{ transition-delay: 100ms; }
.step.reveal[data-delay="2"]{ transition-delay: 200ms; }
.step.reveal[data-delay="3"]{ transition-delay: 300ms; }
.step.reveal[data-delay="4"]{ transition-delay: 400ms; }

/* Tier cards — fade+scale in */
.tier.reveal{
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.tier.reveal.in{ opacity: 1; transform: translateY(0) scale(1); }
.tier-featured.reveal.in{ transform: translateY(0) scale(1.02); }
.tier.reveal[data-delay="1"]{ transition-delay: 100ms; }
.tier.reveal[data-delay="2"]{ transition-delay: 200ms; }

/* Stat counter number pop */
@keyframes count-pop{ 0%{ transform: scale(1); } 35%{ transform: scale(1.15); } 100%{ transform: scale(1); } }
.count-pop{ animation: count-pop 300ms var(--ease-out); }

/* Button ripple */
@keyframes ripple{ to{ transform: scale(1); opacity: 0; } }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal{ opacity: 1; transform: none; }
  .aurora,.float-card{ animation: none; }
}

/* ─── 20. UTILS ────────────────────────────────────────────────── */
.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; }
.text-brand{ color: var(--brand); }
.text-gold{ color: var(--gold); }
.text-muted{ color: var(--ink-3); }
.divider{ height: 1px; background: var(--line); border: 0; margin: 0; }

/* Focus rings */
:focus-visible{ outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* Print */
@media print{ .nav,.fab-wa,.mobile-bar,.aurora{ display:none !important; } body{ background: #fff; color: #000; } }
