:root{
  --bg:#07140d;
  --green-900:#0d1f14;
  --green-800:#123222;
  --green-700:#1f4734;
  --gold:#d1ae57;
  --gold-soft:#efd792;
  --gold-dim:#9e8040;
  --cream:#f4efe5;
  --white:#fff;
  --text:#fefdf8;
  --muted:rgba(255,255,255,.68);
  --muted-dark:#667667;
  --panel:rgba(255,255,255,.08);
  --panel-border:rgba(255,255,255,.14);
  --shadow:0 20px 60px rgba(0,0,0,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Tajawal',sans-serif;background:var(--cream);color:#102218;overflow-x:hidden}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
a{text-decoration:none;color:inherit}

.container{width:min(1180px,calc(100% - 32px));margin:auto}
.page{display:none}
.page.is-active{display:block}
#read-progress-top{position:fixed;top:0;left:0;height:2px;width:0;background:linear-gradient(90deg,var(--gold),var(--gold-soft));z-index:9999}

.nav-shell{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(7,20,13,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(209,174,87,.18);
}

.nav{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  background:none;
  border:0;
  color:#fff;
  text-align:start;
}

.brand-icon{width:42px;height:42px}

.brand-ar{
  display:block;
  font-family:'Amiri',serif;
  font-size:1.55rem;
  color:var(--gold-soft);
  line-height:1;
}

.brand-en{
  display:block;
  font-family:'Cinzel',serif;
  font-size:.62rem;
  letter-spacing:2px;
  color:rgba(255,255,255,.55);
  margin-top:3px;
}

.nav-links{display:flex;align-items:center;gap:6px}

.nav-link,
.lang-toggle,
.menu-toggle{
  border:0;
  background:none;
  color:rgba(255,255,255,.74);
  padding:10px 14px;
  border-radius:14px;
  transition:.25s;
}

.nav-link:hover,
.nav-link.is-active,
.lang-toggle:hover{
  color:var(--gold-soft);
  background:rgba(209,174,87,.11);
}

.menu-toggle{display:none;font-size:1.35rem}
.nav-actions{display:flex;align-items:center;gap:10px}

.live-pill{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,78,78,.12);
  border:1px solid rgba(255,78,78,.28);
  padding:8px 14px;
  border-radius:999px;
  color:#ffd3d3;
  font-size:.86rem;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff4d4d;
  box-shadow:0 0 0 0 rgba(255,77,77,.45);
  animation:pulse 1.6s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,77,77,.45)}
  70%{box-shadow:0 0 0 10px rgba(255,77,77,0)}
  100%{box-shadow:0 0 0 0 rgba(255,77,77,0)}
}

/* HERO SPLIT */
.hero-split{
  position:relative;
  height:430px;
  overflow:hidden;
  background:#07140d;
}

.hero-split-bg{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:1fr 1fr;
}

.hero-half{
  position:relative;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  filter:saturate(1.12) contrast(1.10) brightness(.96);
  transform:scale(1.02);
  opacity:1;
  transition:
    filter .9s ease,
    transform 1.4s ease,
    opacity 1s ease;
}

.hero-split-bg.is-state-a .hero-left{
  background-image:url('../images/haram-slide-2.jpg');
}

.hero-split-bg.is-state-a .hero-right{
  background-image:url('../images/haram-slide-1.jpg');
}

.hero-split-bg.is-state-b .hero-left{
  background-image:url('../images/haram-slide-1.jpg');
}

.hero-split-bg.is-state-b .hero-right{
  background-image:url('../images/haram-slide-2.jpg');
}


.hero-split-bg.is-swapping .hero-half{
  opacity:.28;
  transform:scale(1.08);
  filter:saturate(1.22) contrast(1.14) brightness(.88);
}

.hero-split-bg.is-state-a .hero-half,
.hero-split-bg.is-state-b .hero-half{
  animation:heroBreath 4.2s ease-in-out infinite;
}

.hero-split-bg.is-state-a .hero-right,
.hero-split-bg.is-state-b .hero-left{
  animation-delay:.35s;
}

@keyframes heroBreath{
  0%,100%{transform:scale(1.02)}
  50%{transform:scale(1.06)}
}

.hero-split-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(4,11,8,.10),
      rgba(5,13,10,.22) 45%,
      rgba(5,13,10,.42)
    ),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.05), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(209,174,87,.08), transparent 22%),
    radial-gradient(circle at 50% 85%, rgba(209,174,87,.08), transparent 30%);
}

.hero-center-line{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  z-index:2;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.45) 16%,
    rgba(209,174,87,.95) 50%,
    rgba(255,255,255,.45) 84%,
    rgba(255,255,255,0)
  );
  box-shadow:0 0 18px rgba(209,174,87,.20);
}

.hero-center-badge{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  min-width:94px;
  height:94px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(7,20,13,.72);
  border:1px solid rgba(209,174,87,.38);
  color:var(--gold-soft);
  font-family:'Amiri',serif;
  font-size:1.85rem;
  letter-spacing:.5px;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  backdrop-filter:blur(12px);
}

.hero-content-section{
  position:relative;
  z-index:5;
  margin-top:-18px;
  padding-bottom:30px;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:22px;
  align-items:start;
}

.glass-panel{
  background:linear-gradient(180deg, rgba(255,248,236,.92), rgba(245,238,225,.88));
  border:1px solid rgba(183,150,73,.20);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  backdrop-filter:blur(14px);
  border-radius:28px;
}

.hero-copy-panel{
  padding:30px;
  color:#173320;
}

.hero-showcase{
  padding:20px;
  color:#fff;
  background:linear-gradient(180deg, rgba(20,38,28,.84), rgba(12,27,19,.80));
  border:1px solid rgba(255,255,255,.12);
}

.eyebrow,
.section-mini{
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-size:.74rem;
  color:#b89235;
  font-weight:800;
}

.hero-copy h1{
  font-family:'Amiri',serif;
  font-size:clamp(2.3rem,4.6vw,4.4rem);
  line-height:1.14;
  margin:10px 0 12px;
  color:#102d1f;
}

.hero-copy h1 em{
  font-style:normal;
  color:#c89f3d;
}

.hero-desc{
  font-size:1rem;
  line-height:1.9;
  color:#5d685f;
  max-width:58ch;
  margin-bottom:20px;
}

.hero-actions,
.demo-actions,
.share-row,
.listen-toolbar{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  border:0;
  border-radius:999px;
  padding:13px 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:.24s;
  font-weight:700;
}

.btn-gold{
  background:linear-gradient(135deg,#cfa847,#efd792);
  color:#182515;
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(209,174,87,.25);
}

.btn-outline,
.btn-soft{
  background:#173320;
  color:#fff;
  border:1px solid rgba(23,51,32,.12);
}

.btn-outline:hover,
.btn-soft:hover{
  background:#224a31;
  border-color:#224a31;
  color:#fff;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:18px;
}

.hero-stats div{
  padding:14px 10px;
  border-radius:18px;
  background:rgba(23,51,32,.04);
  border:1px solid rgba(23,51,32,.08);
  text-align:center;
}

.hero-stats strong{
  display:block;
  color:#c89f3d;
  font-size:1.45rem;
  font-family:'Amiri',serif;
}

.hero-stats span{
  font-size:.84rem;
  color:#5e675f;
}

.card-header-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.live-badge,
.clock-pill,
.count-box{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(23,51,32,.08);
  border:1px solid rgba(23,51,32,.10);
  color:#173320;
}

.hero-showcase .live-badge{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.arabic-quote,
.arabic-live,
.preview-text,
.translated-box{
  font-family:'Amiri',serif;
  line-height:2.05;
}

.live-title-row h3,
#hero-live-title{
  margin:8px 0 0;
  font-family:'Amiri',serif;
  color:#fff;
  font-size:1.45rem;
}

.arabic-quote{
  font-size:1.18rem;
  color:#fff;
  background:rgba(209,174,87,.10);
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(209,174,87,.22);
  line-height:2;
}

.translation-list{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.translation-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:rgba(255,255,255,.07);
  padding:13px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
}

.lang-card,
.archive-card,
.about-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:rgba(255,255,255,.04);
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

.translation-row strong,
.lang-card strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
}

.translation-row p{
  margin:0;
  color:rgba(255,255,255,.88);
  line-height:1.8;
}

.lang-card p{
  margin:0;
  color:rgba(255,255,255,.75);
  line-height:1.8;
}

.flag-box{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  background:rgba(209,174,87,.12);
  border-radius:14px;
  flex:none;
}

.section-light{
  background:var(--cream);
  padding:28px 0 78px;
}

.alt-light{background:linear-gradient(180deg,#f2ead8,#f7f1e7)}
.page-dark{background:linear-gradient(180deg,#09140f,#0f2418 50%,#11291c);color:#fff;min-height:100vh}
.green-bg{background:linear-gradient(180deg,#0b1a12,#133323)}
.page-pad{padding:60px 0 80px}

.section-head{margin-bottom:28px}
.section-head.centered{text-align:center}
.section-head.narrow{max-width:760px;margin-inline:auto auto 28px}

.section-head h2{
  font-family:'Amiri',serif;
  font-size:clamp(1.9rem,3vw,3rem);
  margin:10px 0 8px;
  color:#173320;
}

.section-head.light h2{color:#fff}

.section-head p{
  max-width:72ch;
  line-height:1.95;
  color:var(--muted-dark);
}

.section-head.light p{color:rgba(255,255,255,.72)}

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

.feature-card{
  background:#fff;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(16,34,24,.08);
  box-shadow:0 16px 34px rgba(13,31,20,.06);
}

.feature-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--green-700),var(--gold));
  display:grid;
  place-items:center;
  font-size:1.4rem;
  margin-bottom:14px;
}

.feature-card h3{
  margin:0 0 10px;
  font-family:'Amiri',serif;
  font-size:1.35rem;
  color:#173320;
}

.feature-card p{
  margin:0;
  line-height:1.9;
  color:#556658;
}

.page-head{
  padding:24px 28px;
  margin-bottom:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.page-head h2{
  margin:10px 0;
  font-family:'Amiri',serif;
  font-size:2rem;
  color:#173320;
}

.page-head p{
  margin:0;
  color:#4e5d54;
  max-width:60ch;
  line-height:1.9;
}

.live-grid{
  display:grid;
  grid-template-columns:minmax(0,1.24fr) 360px;
  gap:20px;
}

.live-main-panel{padding:18px}

.video-shell{
  position:relative;
  padding-top:56.25%;
  border-radius:24px;
  overflow:hidden;
  background:#000;
  margin-bottom:18px;
}

.video-shell iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.live-title-row{margin-bottom:16px}

.live-title-row h3{
  margin:8px 0 0;
  font-family:'Amiri',serif;
  color:#173320;
  font-size:1.45rem;
}

.arabic-live{
  padding:18px;
  background:rgba(23,51,32,.04);
  border-radius:22px;
  border:1px solid rgba(23,51,32,.08);
  font-size:1.2rem;
  color:#173320;
}

.translator-shell{
  margin-top:18px;
  padding:20px;
  border-radius:24px;
  background:rgba(23,51,32,.03);
  border:1px solid rgba(23,51,32,.08);
}

.translator-head h3{
  margin:0 0 8px;
  font-family:'Amiri',serif;
  font-size:1.4rem;
  color:#173320;
}

.muted{color:#5a675f;line-height:1.85}

.lang-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0 16px;
}

.lang-tabs.stacked{margin-top:18px}

.lang-tab{
  background:rgba(23,51,32,.06);
  color:#173320;
  border:1px solid rgba(23,51,32,.10);
  padding:10px 14px;
  border-radius:999px;
}

.lang-tab.is-active{
  background:rgba(209,174,87,.16);
  border-color:rgba(209,174,87,.35);
  color:#9e8040;
}

.translated-box{
  min-height:130px;
  background:rgba(255,255,255,.85);
  border-radius:22px;
  padding:18px;
  color:#173320;
  border:1px solid rgba(23,51,32,.08);
  font-size:1.18rem;
}

.live-side{display:grid;gap:18px}

.info-card{
  padding:22px;
  color:#173320;
}

.info-card h3{
  margin:10px 0 8px;
  font-family:'Amiri',serif;
  font-size:1.45rem;
  color:#173320;
}

.info-card p{margin:0;line-height:1.9}

.progress-labels{
  display:flex;
  justify-content:space-between;
  color:#5a675f;
  margin-top:16px;
  margin-bottom:8px;
}

.progress{
  height:8px;
  background:rgba(23,51,32,.08);
  border-radius:999px;
  overflow:hidden;
}

.progress span{
  display:block;
  height:100%;
  width:76%;
  background:linear-gradient(90deg,var(--gold),var(--gold-soft));
}

.archive-tools{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.field{
  width:100%;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(16,34,24,.12);
  border-radius:18px;
  padding:14px 16px;
  color:#173320;
  outline:none;
}

.page-dark .field{
  background:rgba(255,255,255,.92);
  color:#173320;
  border-color:rgba(255,255,255,.20);
}

.page-dark .field::placeholder{color:#6d776f}
.select-field{appearance:none}

.archive-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.archive-card{
  display:block;
  padding:0;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(20,38,28,.84), rgba(12,27,19,.80));
  border:1px solid rgba(255,255,255,.10);
}

.archive-card-head{
  padding:18px 18px 12px;
  background:rgba(255,255,255,.05);
}

.archive-card-body{padding:0 18px 18px}

.archive-card h3{
  margin:8px 0 8px;
  font-family:'Amiri',serif;
  font-size:1.45rem;
  color:#fff;
}

.archive-meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin:12px 0;
  color:rgba(255,255,255,.74);
}

.archive-summary{
  color:rgba(255,255,255,.82);
  line-height:1.9;
  margin-bottom:14px;
}

.archive-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.small-btn{
  background:rgba(209,174,87,.12);
  border:1px solid rgba(209,174,87,.22);
  color:var(--gold-soft);
  padding:10px 14px;
  border-radius:999px;
}

.small-btn.secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.10);
  color:#fff;
}

.listen-grid,
.translation-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) .85fr;
  gap:18px;
}

.light-panel{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px);
  border:1px solid rgba(16,34,24,.08);
  box-shadow:0 14px 34px rgba(13,31,20,.08);
  color:#173320;
}

.light-panel .muted{color:#4d5f50}

.listen-main,
.listen-side{padding:24px}

.listen-main h2,
.light-panel h2{
  font-family:'Amiri',serif;
  font-size:2rem;
  margin:10px 0 10px;
  color:#173320;
}

.listen-sermon-meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:16px 0;
}

.listen-sermon-meta>div{
  padding:14px;
  border-radius:18px;
  background:rgba(13,31,20,.04);
}

.meta-label{
  display:block;
  font-size:.85rem;
  color:#6b776f;
  margin-bottom:8px;
}

.preview-text{
  padding:18px;
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(16,34,24,.08);
  font-size:1.24rem;
  color:#173320;
  min-height:170px;
}

.status-box{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(13,31,20,.05);
  color:#173320;
}

audio{width:100%;margin-top:14px}

.listen-archive-list{
  display:grid;
  gap:12px;
  margin-top:14px;
  max-height:560px;
  overflow:auto;
  padding-right:2px;
}

.listen-item{
  padding:16px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(16,34,24,.08);
  cursor:pointer;
  transition:.2s;
}

.listen-item:hover,
.listen-item.is-active{
  border-color:rgba(209,174,87,.45);
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(13,31,20,.07);
}

.listen-item h4{
  margin:6px 0 8px;
  font-family:'Amiri',serif;
  font-size:1.2rem;
}

.listen-item p{
  margin:0;
  color:#57695b;
  line-height:1.75;
}

.team-grid,
.about-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.team-card{
  padding:28px;
  text-align:center;
}

.team-card h3{
  font-family:'Amiri',serif;
  font-size:1.7rem;
  color:#173320;
  margin:0 0 10px;
}

.team-card p{
  margin:0;
  line-height:1.9;
  color:#57695b;
}

.about-card{
  display:block;
  background:#fff;
  color:#173320;
  border:1px solid rgba(16,34,24,.08);
}

.about-card h3{
  font-family:'Amiri',serif;
  margin:0 0 10px;
  font-size:1.35rem;
}

.about-card p{
  margin:0;
  line-height:1.9;
  color:#566659;
}

.pitch-mini-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

.pitch-mini-cards div{
  background:#fff;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(16,34,24,.08);
}

.pitch-mini-cards strong{
  display:block;
  color:#173320;
  margin-bottom:6px;
}

.pitch-mini-cards span{
  color:#566659;
  line-height:1.7;
}

.footer{
  background:#08140e;
  color:#fff;
  padding:26px 0;
  border-top:1px solid rgba(209,174,87,.15);
}

.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.footer p{
  margin:6px 0 0;
  color:rgba(255,255,255,.68);
}

[dir='ltr'] body,
[dir='ltr'] .brand,
[dir='ltr'] .nav,
[dir='ltr'] .card-header-row,
[dir='ltr'] .page-head,
[dir='ltr'] .progress-labels,
[dir='ltr'] .hero-stats,
[dir='ltr'] .archive-tools,
[dir='ltr'] .listen-toolbar,
[dir='ltr'] .hero-grid,
[dir='ltr'] .live-grid,
[dir='ltr'] .listen-grid,
[dir='ltr'] .translation-grid,
[dir='ltr'] .team-grid,
[dir='ltr'] .about-grid,
[dir='ltr'] .listen-sermon-meta,
[dir='ltr'] .footer-row{
  direction:ltr;
}

[dir='ltr'] .section-head p,
[dir='ltr'] .hero-desc,
[dir='ltr'] .muted,
[dir='ltr'] .preview-text,
[dir='ltr'] .translated-box,
[dir='ltr'] .arabic-live,
[dir='ltr'] .arabic-quote{
  text-align:left;
}


.live-caption-panel{
  margin:18px 0 22px;
  padding:20px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(23,51,32,.05), rgba(23,51,32,.02));
  border:1px solid rgba(23,51,32,.08);
}

.live-caption-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.live-caption-head h3{
  margin:8px 0 0;
  font-family:'Amiri',serif;
  color:#173320;
  font-size:1.4rem;
}

.live-caption-status,
.caption-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(209,174,87,.10);
  border:1px solid rgba(209,174,87,.20);
  color:#8a6e32;
  font-size:.88rem;
  font-weight:700;
}

.live-caption-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.live-caption-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.caption-card{
  background:#fff;
  border:1px solid rgba(23,51,32,.08);
  border-radius:20px;
  padding:16px;
}

.caption-card-label{
  display:block;
  color:#8a6e32;
  font-size:.8rem;
  font-weight:800;
  margin-bottom:10px;
}

.caption-text{
  min-height:110px;
}

.live-caption-note{
  margin:14px 0 0;
  color:#5b675f;
  line-height:1.9;
}

.quran-caption-box{
  margin-bottom:14px;
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(209,174,87,.12), rgba(209,174,87,.06));
  border:1px solid rgba(209,174,87,.20);
}

.quran-label{
  color:#8a6e32;
  font-weight:800;
  margin-bottom:10px;
}

.quran-arabic{
  font-family:'Amiri',serif;
  font-size:1.45rem;
  line-height:2;
  color:#173320;
  margin-bottom:8px;
}

.quran-translation{
  color:#46554b;
  line-height:1.9;
}

@media (max-width: 1100px){
  .hero-grid,
  .live-grid,
  .listen-grid,
  .translation-grid{
    grid-template-columns:1fr;
  }

  .live-side{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width: 820px){
  .menu-toggle{display:inline-flex}

  .nav-links{
    position:absolute;
    top:74px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    gap:6px;
    background:rgba(7,20,13,.97);
    padding:14px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
  }

  .nav-links.is-open{display:flex}

  .feature-grid,
  .archive-grid,
  .team-grid,
  .about-grid,
  .pitch-mini-cards,
  .live-side{
    grid-template-columns:1fr;
  }

  .hero-split{
    height:310px;
  }

  .hero-center-badge{
    min-width:74px;
    height:74px;
    font-size:1.45rem;
  }

  .hero-content-section{
    margin-top:8px;
    padding-bottom:20px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .hero-copy-panel,
  .hero-showcase{
    padding:18px;
  }

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

@media (max-width: 640px){
  .nav{height:68px}
  .brand-ar{font-size:1.35rem}
  .container{width:min(100% - 20px,1180px)}

  .hero-split{
    height:250px;
  }

  .hero-center-line{
    width:1px;
  }

  .hero-center-badge{
    min-width:62px;
    height:62px;
    font-size:1.2rem;
    padding:0 14px;
  }

  .hero-content-section{
    margin-top:6px;
    padding-bottom:14px;
  }

  .hero-grid{
    gap:14px;
  }

  .live-caption-grid{
    grid-template-columns:1fr;
  }

  .hero-copy-panel,
  .hero-showcase,
  .page-head,
  .listen-main,
  .listen-side,
  .light-panel,
  .live-main-panel,
  .info-card{
    padding:18px;
  }

  .hero-copy h1{
    font-size:2.15rem;
    line-height:1.18;
  }

  .hero-desc,
  .section-head p,
  .page-head p,
  .archive-summary,
  .about-card p,
  .team-card p,
  .muted{
    font-size:.96rem;
    line-height:1.85;
  }

  .btn{width:100%}

  .hero-actions .btn,
  .demo-actions .btn{
    flex:1 1 100%;
  }

  .hero-stats,
  .listen-sermon-meta{
    grid-template-columns:1fr 1fr;
  }

  .live-pill{display:none}

  .arabic-quote{
    font-size:1.05rem;
    line-height:1.9;
    padding:14px;
  }
}