/* ═══════════════════════════════════════════════════════════════════
   Tamam Tasks — Landing page
   Editorial productivity aesthetic
   © elblasy.app
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --red: #E63946;
  --red-deep: #C92A37;
  --red-soft: #FFE8EA;
  --ink: #101018;
  --ink-soft: #2A2A35;
  --mute: #6C6C78;
  --cream: #F6F2EC;
  --cream-soft: #FBF8F3;
  --cream-warm: #EFE9E0;
  --night: #14141F;
  --night-2: #1D1D2C;

  /* Type scales */
  --display-xl: clamp(72px, 11vw, 200px);
  --display-lg: clamp(48px, 6.4vw, 112px);
  --display-md: clamp(36px, 4.6vw, 80px);

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 72px);
  --section-y: clamp(80px, 12vh, 160px);

  /* Curves */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════ RESET ═══════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Grain overlay for warmth */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ═══════════════════════ LAYOUT ═══════════════════════ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

/* ═══════════════════════ TYPOGRAPHY ═══════════════════════ */
.display {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.028em;
  color: var(--ink);
}

.display--xl { font-size: var(--display-xl); }
.display--lg { font-size: var(--display-lg); }
.display--md { font-size: var(--display-md); }

.italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 500;
}

.italic-ar {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
}

.accent { color: var(--red); }
.accent-glyph { color: var(--red); font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

/* ═══════════════════════ BUTTONS ═══════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease), color 300ms var(--ease);
  will-change: transform;
  white-space: nowrap;
}

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 20px 36px; font-size: 17px; }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 0 var(--red-deep), 0 14px 34px -10px rgba(230, 57, 70, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 0 var(--red-deep), 0 22px 44px -10px rgba(230, 57, 70, 0.5);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(16, 16, 24, 0.18);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ═══════════════════════ NAV ═══════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(246, 242, 236, 0.82);
  border-bottom: 1px solid rgba(16, 16, 24, 0.06);
  transition: padding 300ms var(--ease), background 300ms var(--ease);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.nav__brand img {
  width: 30px;
  height: 30px;
}

.nav__brand em {
  font-style: italic;
  color: var(--red);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
}

.nav__links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 200ms var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--red);
  transition: right 300ms var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .nav__actions .btn { padding: 10px 14px; font-size: 13px; }
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative;
  padding-top: clamp(60px, 9vh, 120px);
  padding-bottom: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, rgba(230, 57, 70, 0) 60%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: min(78vh, 780px);
  padding-bottom: 60px;
}

.hero__copy h1 {
  margin-top: 32px;
  margin-bottom: 0;
}

.hero__ar {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  color: var(--red);
  margin-top: 20px;
  direction: rtl;
}
.hero__ar::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  margin-inline-end: 10px;
  vertical-align: 0.1em;
}

.lede {
  margin-top: 32px;
  max-width: 520px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.lede strong {
  color: var(--ink);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.01em;
}
.dot-sep {
  font-size: 10px;
  opacity: 0.5;
}

/* Device mockup */
.hero__device {
  position: relative;
  justify-self: center;
  animation: float 6s ease-in-out infinite;
}

.device--phone {
  position: relative;
  width: min(340px, 84vw);
  border-radius: 48px;
  overflow: hidden;
  background: var(--night);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08) inset,
    0 4px 14px rgba(16, 16, 24, 0.08),
    0 40px 80px -20px rgba(16, 16, 24, 0.22),
    0 120px 200px -40px rgba(230, 57, 70, 0.18);
  isolation: isolate;
}

.device--phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.device--phone img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Hero floating badges */
.hero__badge {
  position: absolute;
  background: var(--cream-soft);
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 30px 60px -20px rgba(16, 16, 24, 0.2);
  backdrop-filter: blur(10px);
  animation: float-reverse 7s ease-in-out infinite;
}

.hero__badge--1 {
  top: 8%;
  left: -6%;
  text-align: center;
}
.hero__badge-count {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 0.9;
  color: var(--red);
}
.hero__badge-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.2;
}

.hero__badge--2 {
  bottom: 14%;
  right: -10%;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: -3s;
  color: var(--red);
}
.hero__badge--2 span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-3deg); }
}
.hero__badge--2 { animation-name: float-reverse-2; }
@keyframes float-reverse-2 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding-top: 20px;
  }
  .hero__copy .eyebrow { justify-content: center; }
  .hero__copy .lede { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__meta { justify-content: center; }
  .hero__ar { text-align: center; }
  .hero__badge--1 { top: -4%; left: -12%; }
  .hero__badge--2 { bottom: 6%; right: -14%; }
}

/* ═══════════════════════ MARQUEE ═══════════════════════ */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(16, 16, 24, 0.08);
  border-bottom: 1px solid rgba(16, 16, 24, 0.08);
  background: var(--cream-warm);
  position: relative;
  z-index: 2;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 58px);
  color: var(--ink);
}

.marquee__track span:not(.marquee__glyph):not(.marquee__ar) {
  color: var(--ink);
}
.marquee__ar {
  font-family: 'Tajawal', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--red);
  direction: rtl;
}
.marquee__glyph {
  color: var(--red);
  font-style: normal;
  font-size: 0.6em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════ STRIP (Why Tamam) ═══════════════════════ */
.strip {
  padding-block: var(--section-y);
  background: var(--cream);
  position: relative;
}

.strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1000px;
}

.strip__label { grid-row: 1; }

.strip__body {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px;
  margin-top: 8px;
}

.strip__ar {
  margin-top: 16px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.1;
  color: var(--ink);
  direction: rtl;
  text-align: left;
}
.strip__ar .italic-ar {
  color: var(--red);
  font-style: italic;
}

/* ═══════════════════════ FEATURES GRID ═══════════════════════ */
.features {
  padding-block: var(--section-y);
  position: relative;
}

.section-head {
  margin-bottom: 80px;
  max-width: 900px;
}
.section-head .eyebrow {
  margin-bottom: 22px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow {
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  position: relative;
  padding: 40px 34px;
  background: var(--cream-soft);
  border: 1px solid rgba(16, 16, 24, 0.06);
  border-radius: 24px;
  transition: all 400ms var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 40px 80px -30px rgba(230, 57, 70, 0.2);
}

.feature__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 28px;
  transition: opacity 400ms var(--ease);
}
.feature:hover .feature__num { opacity: 1; }

.feature__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 32px 26px; }
}

/* ═══════════════════════ TOUR ═══════════════════════ */
.tour {
  padding-block: var(--section-y);
  background: var(--cream-warm);
  position: relative;
}

.tour-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.tour-row:last-child { margin-bottom: 0; }

.tour-row--reverse {
  grid-template-columns: 1fr 1.2fr;
}
.tour-row--reverse .tour-row__copy { order: 2; }
.tour-row--reverse .tour-row__device { order: 1; }

.tour-row__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: var(--red);
  opacity: 0.5;
  margin-bottom: 24px;
}

.tour-row__copy h3 { margin-bottom: 24px; }

.tour-row__copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 24px;
}

.tour-row__bullets {
  margin-top: 20px;
}
.tour-row__bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.tour-row__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.tour-row__device {
  justify-self: center;
}
.tour-row__device .device--phone {
  width: min(300px, 78vw);
}

@media (max-width: 900px) {
  .tour-row, .tour-row--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    margin-bottom: 80px;
  }
  .tour-row__num { display: inline-block; }
  .tour-row__copy p { margin-inline: auto; }
  .tour-row__bullets li { text-align: left; }
  .tour-row--reverse .tour-row__copy { order: 2; }
  .tour-row--reverse .tour-row__device { order: 1; }
}

/* ═══════════════════════ TRUST ═══════════════════════ */
.trust {
  padding-block: var(--section-y);
  background: var(--night);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.18) 0%, rgba(230, 57, 70, 0) 55%);
  pointer-events: none;
}

.trust__inner {
  position: relative;
  max-width: 960px;
}

.trust__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.trust h2 {
  color: var(--cream);
  margin-bottom: 40px;
}

.trust__body {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: rgba(246, 242, 236, 0.75);
  max-width: 680px;
}
.trust__body strong {
  color: var(--cream);
  font-weight: 600;
}

.trust__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(246, 242, 236, 0.12);
}

.trust__pillar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust__pillar-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 600;
  font-size: clamp(48px, 5vw, 88px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.trust__pillar-num .italic {
  color: var(--red);
}

.trust__pillar-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 242, 236, 0.7);
  line-height: 1.35;
}

@media (max-width: 700px) {
  .trust__pillars { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════ BIG CTA ═══════════════════════ */
.cta {
  padding-block: var(--section-y);
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before, .cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta::before {
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 60%);
}
.cta::after {
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0) 60%);
}

.cta__inner {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.cta__headline {
  margin-bottom: 20px;
}

.cta__ar {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  color: var(--red);
  margin-bottom: 36px;
  direction: rtl;
}

.cta__body {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 50px;
}

.cta__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta__badges a {
  display: block;
  transition: transform 300ms var(--ease);
}
.cta__badges a:hover {
  transform: translateY(-3px);
}
.cta__badges img {
  height: 48px;
  width: auto;
}

/* Legacy .store-badge kept for backward compat — unused after badge migration */
.store-badge small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.store-badge strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.cta__smallprint {
  font-size: 13px;
  color: var(--mute);
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  padding-top: clamp(60px, 8vh, 100px);
  padding-bottom: 40px;
  background: var(--cream-warm);
  border-top: 1px solid rgba(16, 16, 24, 0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(16, 16, 24, 0.08);
}

.footer__brand { max-width: 320px; }

.footer__wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.footer__wordmark em {
  font-style: italic;
  color: var(--red);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}

.footer__tag {
  margin-top: 16px;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.6;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 200ms var(--ease);
}
.footer__col a:hover { color: var(--red); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  flex-wrap: wrap;
}

.footer__credit {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.01em;
}
.footer__credit--ar {
  font-family: 'Tajawal', sans-serif;
  font-size: 13px;
}

@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════ ENTRANCE (inert) ═══════════════════════ */
/* .reveal is a marker class — content is always visible. Scroll or load
   animations are intentionally CSS-only and purely decorative. */
.reveal { opacity: 1; }

/* ═══════════════════════ REDUCED MOTION ═══════════════════════ */
@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; }
  .hero__device, .hero__badge { animation: none; }
}
