/* ─────────────────────────────────────────────
   StoriaPod Landing Page — matches Figma design
   ───────────────────────────────────────────── */

@font-face {
  font-family: "MadaniArabic";
  src: url("/fonts/MadaniArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MadaniArabic";
  src: url("/fonts/MadaniArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MadaniArabic";
  src: url("/fonts/MadaniArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --lp-bg:          #1a1a1d;
  --lp-bg-card:     #252525;
  --lp-bg-soft:     #2d2d31;
  --lp-text:        #fffcf2;
  --lp-text-muted:  #b1ada3;
  --lp-text-dim:    #6f6b63;
  --lp-gold:        #eedc82;
  --lp-burgundy:    #800020;
  --lp-border:      #3a383f;
  --lp-line:        rgba(238, 220, 130, 0.12);
  --lp-font:        "MadaniArabic", "Segoe UI", sans-serif;
  --lp-max:         1200px;
}

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

html, body { height: 100%; }

.landing-body {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Top Nav ─────────────────────────────────── */

.lp-topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  background: rgba(20, 20, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-topnav__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
}

.lp-topnav__logo {
  width: 144px;
  height: 56px;
  object-fit: contain;
}

/* ── Hero ────────────────────────────────────── */

.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #141416;
  padding-top: 80px;
  overflow: hidden;
}

.lp-hero__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 80px);
}

/* ── Image (left column) ── */

.lp-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  background: #141416;
  padding: 40px 24px;
}

.lp-hero__image {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Text (right column) ── */

.lp-hero__text {
  padding: 64px 72px 64px 40px;
  direction: rtl;
  text-align: right;
}

.lp-hero__headline {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--lp-text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.lp-hero__sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lp-text-muted);
  margin-bottom: 36px;
  max-width: 420px;
  margin-right: 0;
  margin-left: auto;
}

.lp-hero__cta-label {
  font-size: 0.88rem;
  color: var(--lp-text-muted);
  margin-bottom: 16px;
  direction: rtl;
}

.lp-hero__badges {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ── Coming Soon ── */

.lp-hero__coming-soon {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-gold);
  letter-spacing: 0.03em;
  margin-top: 8px;
}

/* ── About Page ── */

.lp-about {
  min-height: 100vh;
  padding-top: 80px;
  background: var(--lp-bg);
  display: flex;
  align-items: center;
}

.lp-about__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.lp-about__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--lp-gold);
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(238, 220, 130, 0.3);
  border-radius: 999px;
  background: rgba(238, 220, 130, 0.06);
  margin-bottom: 20px;
}

.lp-about__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lp-about__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--lp-text-muted);
  max-width: 560px;
  margin-bottom: 64px;
}

.lp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp-about__card {
  background: var(--lp-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
}

.lp-about__card-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--lp-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-about__email {
  font-size: 1rem;
  color: var(--lp-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 220, 130, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.15s, color 0.15s;
}

.lp-about__email:hover {
  color: var(--lp-gold);
  border-color: var(--lp-gold);
}

.lp-about__address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--lp-text-muted);
}

.lp-about__address strong {
  color: var(--lp-text);
  font-weight: 500;
}

@media (max-width: 600px) {
  .lp-about__grid { grid-template-columns: 1fr; }
  .lp-about__inner { padding: 48px 24px; }
}

/* ── Footer ──────────────────────────────────── */

.lp-footer {
  background: #111113;
  border-top: 1px solid var(--lp-line);
  padding: 64px 40px 36px;
  direction: rtl;
}

.lp-footer__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

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

.lp-footer__logo {
  width: 247px;
  height: 96px;
  object-fit: contain;
}

.lp-footer__tagline {
  font-size: 0.8rem;
  color: var(--lp-text-dim);
}

.lp-footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.lp-footer__links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}

.lp-footer__links a:hover { color: var(--lp-gold); }

.lp-footer__bottom {
  max-width: var(--lp-max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.76rem;
  color: var(--lp-text-dim);
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .lp-hero__visual {
    min-height: 55vw;
    order: 1;
  }

  .lp-hero__text {
    order: 2;
    padding: 48px 24px;
  }

  .lp-hero__sub { max-width: 100%; }

  .lp-hero__badges { justify-content: flex-start; }

  .lp-footer { padding: 36px 24px 24px; }

  .lp-footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }

  .lp-footer__links { gap: 18px; }

  .lp-topnav__inner { padding: 0 24px; }
}
