/* ══════════════════════════════════════════════════════════════════════
   MEDINA TECH LAB — Main Stylesheet
   medinatechlab.com
   ══════════════════════════════════════════════════════════════════════

   Table of Contents
   ──────────────────────────────────────────────────────────────────────
   01. Custom Fonts & CSS Variables
   02. Reset
   03. Shared Section Utilities
   04. Component Library
       04a. Buttons (Primary, Ghost, CTA)
       04b. Badges & Tags
   05. Visual Effects & Animations
       05a. Geo Pattern Overlay
       05b. Entry Animations (fadeUp, reveal, reveal-word)
       05c. Marquee Scroll
       05d. Pulse
   ── LAYOUT SECTIONS ──────────────────────────────────────────────────
   06. Navigation
       06a. Desktop Nav
       06b. Mobile Hamburger Button
       06c. Mobile Nav Overlay
   07. Hero Section
       07a. Hero Container, Canvas & Decorative Overlays
       07b. Hero Content & Typography
       07c. Hero Image & Wave Aura
       07d. Hero Pillars Strip
   08. Ecosystem / Ticker Section
   09. Apps Section — MyDhikr Showcase
       09a. Layout Grid
       09b. Screenshot Display
       09c. App Content & Stats
       09d. Store Buttons
   10. Vision / Mission Section
   11. Pipeline — Coming Soon Section
   12. CTA / Footer Hero Section
   13. Footer Bar
   ── RESPONSIVE BREAKPOINTS ───────────────────────────────────────────
   14. ≤ 1280px — Wide Desktop Clamp
   15. ≤ 1080px — Large Tablet / Small Laptop
   16. ≤  900px — Tablet / iPad Landscape  (hamburger activé)
   17. ≤  768px — Tablet Portrait
   18. ≤  600px — Mobile Paysage / Grand Téléphone
   19. ≤  480px — Mobile Portrait
   20. ≤  360px — Petit Mobile
   ══════════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════════
   01. CUSTOM FONTS & CSS VARIABLES
   ══════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Amiri';
  src: url('assets/fonts/Amiri-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Amiri';
  src: url('assets/fonts/Amiri-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  --dark:  #09130a;
  --dark2: #111a10;
  --vp:    #245A1F;
  --vf:    #43823B;
  --vs:    #82A37B;
  --js:    #E8D4A2;
  --ecru:  #F5F2E9;
  --vpale: #EFF4E5;
  --text:  #0d1a0b;
  --tmid:  #3d5438;
}


/* ══════════════════════════════════════════════════════════════════════
   02. RESET
   ══════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ecru);
  color: var(--text);
  overflow-x: hidden;
}


/* ══════════════════════════════════════════════════════════════════════
   03. SHARED SECTION UTILITIES
   ══════════════════════════════════════════════════════════════════════ */

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vf);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--vf);
}
.section-eyebrow.light {
  color: var(--vs);
}
.section-eyebrow.light::before {
  background: var(--vs);
}

.section-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-h2.on-dark {
  color: var(--ecru);
}

.section-sub {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--tmid);
  max-width: 600px;
}
.section-sub.on-dark {
  color: rgba(245,242,233,0.55);
}


/* ══════════════════════════════════════════════════════════════════════
   04a. COMPONENT LIBRARY — BUTTONS
   ══════════════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--js);
  color: var(--dark);
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover        { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active       { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--js); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,242,233,0.7);
  border: 1px solid rgba(245,242,233,0.2);
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover        { border-color: rgba(245,242,233,0.45); color: var(--js); transform: translateY(-1px); }
.btn-ghost:active       { transform: translateY(0); }
.btn-ghost:focus-visible { outline: 2px solid rgba(245,242,233,0.5); outline-offset: 3px; }

.btn-cta {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(9,19,10,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-cta:hover        { background: var(--dark); color: var(--ecru); border-color: var(--dark); }
.btn-cta:focus-visible { outline: 2px solid var(--dark); outline-offset: 3px; }


/* ══════════════════════════════════════════════════════════════════════
   04b. COMPONENT LIBRARY — BADGES & TAGS
   ══════════════════════════════════════════════════════════════════════ */

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(67,130,59,0.1);
  color: var(--vf);
  border: 1px solid rgba(67,130,59,0.18);
}


/* ══════════════════════════════════════════════════════════════════════
   05a. VISUAL EFFECTS — GEO PATTERN OVERLAY
   ══════════════════════════════════════════════════════════════════════ */

.geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23E8D4A2' stroke-width='0.8'%3E%3Cpolygon points='40,4 68,20 68,52 40,68 12,52 12,20'/%3E%3Cpolygon points='40,14 60,26 60,50 40,62 20,50 20,26'/%3E%3Cline x1='40' y1='4' x2='40' y2='14'/%3E%3Cline x1='68' y1='20' x2='60' y2='26'/%3E%3Cline x1='68' y1='52' x2='60' y2='50'/%3E%3Cline x1='40' y1='68' x2='40' y2='62'/%3E%3Cline x1='12' y1='52' x2='20' y2='50'/%3E%3Cline x1='12' y1='20' x2='20' y2='26'/%3E%3Ccircle cx='40' cy='38' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}


/* ══════════════════════════════════════════════════════════════════════
   05b. VISUAL EFFECTS — ENTRY ANIMATIONS
   ══════════════════════════════════════════════════════════════════════ */

.reveal { opacity: 1; transform: none; }
.reveal.will-animate {
  opacity: 0.001;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-word {
  opacity: 0.15;
  transition: opacity 0.4s ease;
  display: inline-block;
  margin-right: 0.25em;
}
.reveal-word.visible { opacity: 1; }

.fu { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.d1 { animation-delay: 0.06s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.32s; }
.d4 { animation-delay: 0.46s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════════════════
   05c. VISUAL EFFECTS — MARQUEE SCROLL
   ══════════════════════════════════════════════════════════════════════ */

.marquee-left  .marquee-inner { animation: scroll-left  28s linear infinite; }
.marquee-right .marquee-inner { animation: scroll-right 28s linear infinite; }

@keyframes scroll-left  { from { transform: translateX(0);    } to { transform: translateX(-25%); } }
@keyframes scroll-right { from { transform: translateX(-25%); } to { transform: translateX(0);    } }

.marquee-track:hover .marquee-inner { animation-play-state: paused; }


/* ══════════════════════════════════════════════════════════════════════
   05d. VISUAL EFFECTS — PULSE
   ══════════════════════════════════════════════════════════════════════ */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ══════════════════════════════════════════════════════════════════════
   06a. NAVIGATION — DESKTOP
   ══════════════════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(232,212,162,0.07);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(9,19,10,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.45);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
}

.nav-logo img {
  height: 30px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,233,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover        { color: var(--js); }
.nav-links a:focus-visible { outline: 2px solid rgba(232,212,162,0.5); outline-offset: 4px; border-radius: 2px; }

.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--js);
  border: 1px solid rgba(232,212,162,0.35);
  padding: 8px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover        { background: var(--js); color: var(--dark); border-color: var(--js); }
.nav-cta:focus-visible { outline: 2px solid var(--js); outline-offset: 3px; }


/* ══════════════════════════════════════════════════════════════════════
   06b. NAVIGATION — MOBILE HAMBURGER BUTTON
   ══════════════════════════════════════════════════════════════════════ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(232,212,162,0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(245,242,233,0.8);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-hamburger:focus-visible { outline: 2px solid rgba(232,212,162,0.5); outline-offset: 3px; }


/* ══════════════════════════════════════════════════════════════════════
   06c. NAVIGATION — MOBILE OVERLAY
   ══════════════════════════════════════════════════════════════════════ */

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(9,19,10,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99;
  padding: 32px 24px 48px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  overflow-y: auto;
}
.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(245,242,233,0.07);
}
.nav-mobile-links a {
  display: block;
  padding: 18px 0;
  font-size: 26px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: rgba(245,242,233,0.85);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a:active { color: var(--js); }

.nav-mobile-email {
  display: inline-block;
  margin-top: 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--js);
  text-decoration: none;
  border: 1px solid rgba(232,212,162,0.3);
  padding: 13px 28px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-email:hover { background: var(--js); color: var(--dark); }


/* ══════════════════════════════════════════════════════════════════════
   07a. HERO SECTION — CONTAINER, CANVAS & DECORATIVE OVERLAYS
   ══════════════════════════════════════════════════════════════════════ */

#hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  overflow: hidden;
}

#hero-plasma {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

#hero > *:not(#hero-plasma):not(.geo):not(.hero-overlay-glow-right):not(.hero-overlay-glow-left) {
  position: relative;
  z-index: 1;
}

.hero-overlay-glow-right {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(36,90,31,0.28) 0%, transparent 70%);
  top: -100px;
  right: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-overlay-glow-left {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232,212,162,0.06) 0%, transparent 70%);
  bottom: 100px;
  left: 0;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}


/* ══════════════════════════════════════════════════════════════════════
   07b. HERO SECTION — CONTENT & TYPOGRAPHY
   ══════════════════════════════════════════════════════════════════════ */

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 48px 60px;
}

.hero-text {
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vs);
  margin-bottom: 28px;
}
.hero-eyebrow::before { display: none; }

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ecru);
  margin-bottom: 32px;
}
.hero-h1 em { font-style: italic; color: var(--js); }

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(245,242,233,0.55);
  max-width: 580px;
  margin: 0 auto 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ══════════════════════════════════════════════════════════════════════
   07c. HERO SECTION — IMAGE & WAVE AURA
   ══════════════════════════════════════════════════════════════════════ */

.hero-image-wrap {
  width: 100%;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.hero-image-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-wave-aura {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}


/* ══════════════════════════════════════════════════════════════════════
   07d. HERO SECTION — PILLARS STRIP
   ══════════════════════════════════════════════════════════════════════ */

.hero-pillars {
  border-top: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-pillar {
  padding: 28px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hero-pillar:last-child { border-right: none; }

.pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--js);
  opacity: 0.7;
  flex-shrink: 0;
  padding-top: 3px;
}
.pillar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,242,233,0.85);
  margin-bottom: 4px;
}
.pillar-desc {
  font-size: 12px;
  color: rgba(245,242,233,0.4);
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════════════════
   08. ECOSYSTEM / TICKER SECTION
   ══════════════════════════════════════════════════════════════════════ */

#ecosystem {
  background: var(--ecru);
  padding: 0;
}

.marquee-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.marquee-track {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  background: var(--dark);
}
.marquee-inner {
  display: inline-flex;
  gap: 48px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--js);
}


/* ══════════════════════════════════════════════════════════════════════
   09a. APPS SECTION — MYDHIKR SHOWCASE — LAYOUT GRID
   ══════════════════════════════════════════════════════════════════════ */

#apps {
  background: var(--ecru);
  color: var(--text);
  padding: 0;
}

.mydhikr-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--ecru);
  overflow: hidden;
}


/* ══════════════════════════════════════════════════════════════════════
   09b. APPS SECTION — SCREENSHOT DISPLAY
   ══════════════════════════════════════════════════════════════════════ */

.mydhikr-screens {
  position: relative;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px 0;
  overflow: hidden;
}

.screen-main {
  height: 520px;
  width: auto;
  object-fit: contain;
  border-radius: 24px 24px 0 0;
  box-shadow: none;
  z-index: 2;
}
.screen-secondary,
.screen-tertiary {
  height: 420px;
  width: auto;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
  opacity: 0.75;
  background: transparent;
  z-index: 1;
}
.screen-tertiary { display: none; }


/* ══════════════════════════════════════════════════════════════════════
   09c. APPS SECTION — APP CONTENT & STATS
   ══════════════════════════════════════════════════════════════════════ */

.mydhikr-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.app-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--vp);
  border: 1px solid var(--vp);
  padding: 4px 12px;
  border-radius: 2px;
  width: fit-content;
}
.app-badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vp);
  animation: pulse 2s ease-in-out infinite;
}

.mydhikr-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mydhikr-tagline {
  font-size: 18px;
  color: var(--vf);
  font-style: italic;
}
.mydhikr-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--tmid);
  max-width: 420px;
}

.mydhikr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.mstat {
  background: transparent;
  border-top: 1px solid rgba(36,90,31,0.15);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mstat-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}
.mstat-label {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--vs);
  text-transform: uppercase;
}

/* Apps section ghost button override */
#apps .btn-ghost { border-color: rgba(9,19,10,0.25); color: var(--tmid); }
#apps .btn-ghost:hover { color: var(--vp); border-color: var(--vp); }

/* Store buttons ctas row */
.apps-ctas { margin-top: 8px; }


/* ══════════════════════════════════════════════════════════════════════
   09d. APPS SECTION — STORE BUTTONS
   ══════════════════════════════════════════════════════════════════════ */

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-btn:hover        { transform: translateY(-2px); }
.store-btn:active       { transform: translateY(0); }
.store-btn:focus-visible { outline: 2px solid var(--vp); outline-offset: 3px; }

.store-btn-apple {
  background: var(--dark);
  color: var(--ecru);
  box-shadow: 0 2px 12px rgba(9,19,10,0.18);
}
.store-btn-apple:hover { box-shadow: 0 6px 20px rgba(9,19,10,0.28); }

.store-btn-gplay {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(9,19,10,0.25);
}
.store-btn-gplay:hover { border-color: var(--vp); }

.store-btn-sub {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1;
}
.store-btn-main {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: -1px;
}


/* ══════════════════════════════════════════════════════════════════════
   10. VISION / MISSION SECTION
   ══════════════════════════════════════════════════════════════════════ */

#vision {
  background: var(--ecru);
  padding: 120px 48px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.vision-card {
  background: var(--vpale);
  padding: 44px 40px;
  transition: background 0.3s;
}
.vision-card:hover { background: #fff; }

.vision-icon {
  width: 38px;
  height: 38px;
  color: var(--vf);
  margin-bottom: 20px;
}
.vision-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.vision-body {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.76;
  color: var(--tmid);
}


/* ══════════════════════════════════════════════════════════════════════
   11. PIPELINE — COMING SOON SECTION
   ══════════════════════════════════════════════════════════════════════ */

#pipeline {
  background: var(--dark2);
  padding: 120px 48px;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.pipeline-card {
  background: rgba(255,255,255,0.03);
  padding: 44px 40px;
  transition: background 0.3s;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.pipeline-card:hover { background: rgba(255,255,255,0.06); }

.pipeline-badge {
  display: inline-block;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--js);
  border: 1px solid rgba(232,212,162,0.3);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.pipeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}
.pipeline-icon-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.pipeline-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ecru);
  margin-bottom: 12px;
}
.pipeline-body {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.76;
  color: rgba(245,242,233,0.45);
}


/* ══════════════════════════════════════════════════════════════════════
   12. CTA / FOOTER HERO SECTION
   ══════════════════════════════════════════════════════════════════════ */

#cta {
  padding: 0;
  background: none;
}

.cta-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 60px;
  background-image: url('assets/images/medina.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #f5f2eb;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,242,235,0.72);
  z-index: 0;
}
.cta-section > * { position: relative; z-index: 1; }

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin-bottom: 16px;
}
.cta-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}
.cta-h2 em { font-style: italic; color: var(--vp); }

.cta-sub {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--dark);
  opacity: 0.65;
  margin-bottom: 44px;
}


/* ══════════════════════════════════════════════════════════════════════
   13. FOOTER BAR
   ══════════════════════════════════════════════════════════════════════ */

footer {
  background: var(--dark2);
  padding: 28px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  height: 60px;
  width: 60px;
  opacity: 0.65;
  display: block;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245,242,233,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover        { color: var(--js); }
.footer-links a:focus-visible { outline: 2px solid rgba(232,212,162,0.4); outline-offset: 3px; border-radius: 2px; }

.footer-copy {
  font-size: 11.5px;
  color: rgba(245,242,233,0.22);
}


/* ══════════════════════════════════════════════════════════════════════
   14. RESPONSIVE — ≤ 1280px (Wide Desktop Clamp)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1280px) {
  .nav-inner      { padding: 0 32px; }
  .hero-content   { padding: 80px 32px 60px; }
  #vision         { padding-left: 32px; padding-right: 32px; }
  #pipeline       { padding-left: 32px; padding-right: 32px; }
}


/* ══════════════════════════════════════════════════════════════════════
   15. RESPONSIVE — ≤ 1080px (Large Tablet / Small Laptop)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1080px) {
  /* MyDhikr: empile verticalement */
  .mydhikr-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mydhikr-screens {
    height: 486px;
    padding: 32px 24px 0;
    gap: 12px;
  }
  .screen-main      { height: 432px; }
  .screen-secondary { display: none; }
  .screen-tertiary  { display: block; height: 432px; border-radius: 24px 24px 0 0; opacity: 1; }

  .mydhikr-content { padding: 40px 48px 56px; }

  .mydhikr-stats { grid-template-columns: repeat(2, 1fr); }

  /* Pipeline: 2 colonnes */
  .pipeline-grid { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════════════════════════════════
   16. RESPONSIVE — ≤ 900px (Tablet / iPad Landscape — hamburger activé)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* Navigation: affiche le hamburger, masque les liens desktop */
  .nav-inner     { padding: 0 24px; }
  .nav-links     { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile    { display: block; }

  /* Hero */
  .hero-content  { padding: 60px 24px 40px; }
  .hero-pillars  { grid-template-columns: 1fr 1fr; }
  .hero-pillar   { padding: 20px 24px; }

  /* Sections */
  #vision   { padding: 80px 24px; }
  #pipeline { padding: 80px 24px; }
  .cta-section { padding: 60px 24px 48px; }
  footer    { padding: 24px 24px; }

  /* Grilles */
  .vision-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}


/* ══════════════════════════════════════════════════════════════════════
   17. RESPONSIVE — ≤ 768px (Tablet Portrait)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* MyDhikr content */
  .mydhikr-content { padding: 32px 28px 48px; }
  .mydhikr-body    { max-width: 100%; }
  .mydhikr-tagline { font-size: 16px; }

  /* Hero image */
  .hero-wave-aura { width: 600px; height: 280px; }
  .hero-image-wrap img { max-height: 540px; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }

  /* CTA: réduire max-width */
  .cta-inner { max-width: 100%; }

  /* MyDhikr screens */
  .mydhikr-screens { height: 405px; }
  .screen-main, .screen-tertiary { height: 358px; }
}


/* ══════════════════════════════════════════════════════════════════════
   18. RESPONSIVE — ≤ 600px (Mobile Paysage / Grand Téléphone)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  /* Hero pillars: 1 colonne */
  .hero-pillars { grid-template-columns: 1fr; }
  .hero-pillar  { padding: 16px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-pillar:last-child { border-bottom: none; }

  /* Grilles: 1 colonne */
  .vision-grid   { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: 1fr; }

  /* MyDhikr stats */
  .mydhikr-stats   { grid-template-columns: 1fr 1fr; }
  .mydhikr-screens { height: 351px; gap: 8px; }
  .screen-main, .screen-tertiary { height: 310px; }

  /* Hero CTAs: centrés et pleine largeur */
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Store buttons: empilés verticalement, centrés, même largeur (60% du conteneur) */
  .apps-ctas {
    flex-direction: column !important;
    align-items: center;
    gap: 10px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .apps-ctas .store-btn {
    width: 100%;
    justify-content: center;
  }

  /* Sections */
  #vision   { padding: 64px 20px; }
  #pipeline { padding: 64px 20px; }
  .cta-section { padding: 56px 20px 40px; min-height: 55vh; }
}


/* ══════════════════════════════════════════════════════════════════════
   19. RESPONSIVE — ≤ 480px (Mobile Portrait)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  /* Hero */
  .hero-content    { padding: 48px 20px 32px; }
  .hero-sub        { font-size: 14px; }
  .hero-eyebrow    { font-size: 10px; margin-bottom: 20px; }
  .hero-image-wrap { margin-top: 32px; }
  .hero-image-wrap img { max-height: 400px; }
  .hero-wave-aura  { display: none; }

  /* MyDhikr */
  .mydhikr-screens { height: 297px; padding: 24px 10px 0; gap: 6px; }
  .screen-main, .screen-tertiary { height: 257px; border-radius: 16px 16px 0 0; }
  .mydhikr-content { padding: 28px 20px 40px; gap: 16px; }
  .mydhikr-body    { font-size: 14px; }

  /* Store buttons: même taille sur petit mobile */
  .apps-ctas .store-btn { width: 100%; max-width: none; justify-content: center; }

  /* Cards */
  .pipeline-card { padding: 32px 24px; }
  .vision-card   { padding: 32px 24px; }

  /* Footer */
  .footer-links { gap: 16px; }
  .footer-copy  { font-size: 11px; }

  /* Nav logo */
  .nav-logo img { height: 24px; }
}


/* ══════════════════════════════════════════════════════════════════════
   20. RESPONSIVE — ≤ 360px (Petit Mobile)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 360px) {
  .nav-inner          { padding: 0 16px; }
  .hero-content       { padding: 40px 16px 28px; }
  #vision             { padding: 52px 16px; }
  #pipeline           { padding: 52px 16px; }
  .cta-section        { padding: 48px 16px 36px; }
  footer              { padding: 20px 16px; }
  .pipeline-card,
  .vision-card        { padding: 28px 20px; }
  .mydhikr-content    { padding: 24px 16px 36px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { max-width: 100%; }
}


/* ══════════════════════════════════════════════════════════════════════
   20+. NAV DROPDOWN
   ══════════════════════════════════════════════════════════════════════ */

.nav-has-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-trigger .caret {
  width: 10px; height: 6px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.nav-has-dropdown:hover .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(9,19,10,0.97);
  border: 1px solid rgba(67,130,59,0.22);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 300;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(67,130,59,0.22);
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: rgba(245,242,233,0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: rgba(67,130,59,0.14);
  color: var(--js);
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(245,242,233,0.07);
  margin: 6px 8px;
}

.nav-badge-live {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #09130a;
  background: var(--vf);
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.nav-badge-soon {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245,242,233,0.4);
  background: rgba(255,255,255,0.07);
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.nav-badge-dev {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--js);
  background: rgba(232,212,162,0.15);
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Mobile nav groups */
.nav-mobile-group {
  padding: 20px 0 12px;
  border-bottom: 1px solid rgba(245,242,233,0.07);
  margin-bottom: 4px;
}
.nav-mobile-group-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf);
  margin-bottom: 12px;
  opacity: 0.9;
}
.nav-mobile-app-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,242,233,0.05);
  font-size: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: rgba(245,242,233,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-app-link:hover { color: var(--js); }
.nav-mobile-cta {
  display: inline-block;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--js);
  text-decoration: none;
  border: 1px solid rgba(232,212,162,0.3);
  padding: 13px 28px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-cta:hover { background: var(--js); color: var(--dark); }

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}
.footer-legal a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(9,19,10,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--tmid); }


/* ══════════════════════════════════════════════════════════════════════
   21. INNER PAGE LAYOUT
   ══════════════════════════════════════════════════════════════════════ */

.inner-hero {
  background: var(--dark);
  padding: 140px 40px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(67,130,59,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.inner-hero > * { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,233,0.35);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: rgba(245,242,233,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--vf); }
.breadcrumb-sep { opacity: 0.3; font-size: 12px; }

.inner-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vf);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.inner-eyebrow::before, .inner-eyebrow::after {
  content: '';
  width: 20px; height: 1px;
  background: var(--vf);
  opacity: 0.6;
}

.inner-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: var(--ecru);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.inner-h1 em { font-style: italic; color: var(--js); }

.inner-lead {
  font-size: 1.05rem;
  color: rgba(245,242,233,0.58);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.78;
}

.inner-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}
.inner-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 64px 0 20px;
}
.inner-body h2:first-child { margin-top: 0; }
.inner-body h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vp);
  margin: 44px 0 14px;
}
.inner-body p {
  font-size: 1rem;
  line-height: 1.84;
  color: var(--tmid);
  margin-bottom: 18px;
}
.inner-body strong { color: var(--dark); font-weight: 700; }

/* Hub page grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 52px;
}
.hub-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px 28px 24px;
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}
.hub-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}
.hub-card-badge.live { background: rgba(67,130,59,0.1); color: var(--vp); }
.hub-card-badge.soon { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.38); }
.hub-card-badge.dev  { background: rgba(232,212,162,0.28); color: #6b5a2a; }

.hub-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 14px;
}
.hub-card-icon-placeholder {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: rgba(245,242,233,0.7);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.hub-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.hub-card-desc {
  font-size: 0.84rem;
  color: var(--tmid);
  line-height: 1.65;
  flex: 1;
}
.hub-card-arrow {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vf);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FAQ */
.faq-section { margin-top: 72px; }
.faq-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
}
.faq-a {
  font-size: 0.9rem;
  color: var(--tmid);
  line-height: 1.78;
}

/* App stat strip */
.app-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 36px 0;
  padding: 28px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
}
.app-stat-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.app-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tmid);
  margin-top: 4px;
}

/* Coming soon page specifics */
.cs-notify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--js);
  text-decoration: none;
  border: 1px solid rgba(232,212,162,0.3);
  padding: 12px 24px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.cs-notify:hover { background: var(--js); color: var(--dark); }

/* Inner page back to section */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vf);
  text-decoration: none;
  margin-bottom: 48px;
}
.back-link:hover { opacity: 0.7; }

/* Mission page pillars */
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 48px 0;
}
.mission-pillar {
  background: white;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.07);
}
.mission-pillar-num {
  font-size: 2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  color: rgba(67,130,59,0.3);
  line-height: 1;
  margin-bottom: 12px;
}
.mission-pillar-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vp);
  margin-bottom: 10px;
}
.mission-pillar-body {
  font-size: 0.9rem;
  color: var(--tmid);
  line-height: 1.7;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.contact-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 28px;
}
.contact-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf);
  margin-bottom: 10px;
}
.contact-card-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.contact-card-value:hover { color: var(--vp); }
.contact-card-sub {
  font-size: 0.82rem;
  color: var(--tmid);
  margin-top: 6px;
  line-height: 1.6;
}

/* Legal pages */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.legal-body h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 40px 0 12px;
}
.legal-body p, .legal-body li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--tmid);
  margin-bottom: 14px;
}

/* Responsive inner pages */
@media (max-width: 768px) {
  .inner-hero { padding: 120px 24px 64px; }
  .inner-body { padding: 60px 24px 80px; }
  .hub-grid { grid-template-columns: 1fr; gap: 14px; }
  .mission-pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .app-stats { gap: 20px; }
  .legal-body { padding: 60px 24px 80px; }
}
@media (max-width: 480px) {
  .inner-hero { padding: 110px 20px 56px; }
  .inner-body { padding: 48px 20px 64px; }
}
