/* ============================================
   AMANAH COACH — Site Stylesheet
   Black / Cyan #29C3FF / Chrome-Silver
   ============================================ */

:root {
  --black: #0A0A0A;
  --black-raised: #111316;
  --cyan: #29C3FF;
  --cyan-dim: rgba(41, 195, 255, 0.14);
  --silver-hi: #C8CDD3;
  --silver-lo: #8E939B;
  --body: #E8EAED;
  --muted: #9BA1A8;
  --chrome: linear-gradient(180deg, #E8ECEF 0%, #C8CDD3 38%, #7E848C 62%, #B9BEC5 100%);
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--black);
  color: var(--body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.chrome-text {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cyan { color: var(--cyan); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }

/* Circular divider — echo of the logo ring */
.ring-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
}
.ring-divider::before,
.ring-divider::after {
  content: '';
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-lo));
}
.ring-divider::after {
  background: linear-gradient(90deg, var(--silver-lo), transparent);
}
.ring-divider .ring {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--silver-lo);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(41, 195, 255, 0.35);
}

/* ---------- Nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(142, 147, 155, 0.15);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo span {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cyan); }
.nav-links a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
@media (max-width: 640px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  background: var(--cyan);
  color: #041018 !important;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 rgba(41, 195, 255, 0);
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(41, 195, 255, 0.4);
}
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn.ghost {
  background: transparent;
  color: var(--cyan) !important;
  border: 1.5px solid var(--cyan);
  box-shadow: none;
}
.nav-links .btn { padding: 10px 22px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 110px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(41,195,255,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero h1 {
  font-size: clamp(40px, 7.2vw, 76px);
  margin: 0 auto 28px;
  max-width: 860px;
}
.hero h1 .robbed {
  color: var(--cyan);
  position: relative;
  white-space: nowrap;
}
.hero h1 .robbed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(41,195,255,0.7);
}
.hero p.sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero .tagline {
  margin-top: 56px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 640px) { .hero { padding: 72px 0 72px; } }

/* ---------- Sections ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 18px; }
.section-head p { color: var(--muted); }

/* Triple-A cards */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .triple-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--black-raised);
  border: 1px solid rgba(142,147,155,0.16);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.pillar:hover { border-color: rgba(41,195,255,0.5); transform: translateY(-3px); }
.pillar .pillar-letter {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.pillar h3 { font-size: 21px; margin-bottom: 12px; color: var(--body); }
.pillar p { font-size: 15.5px; color: var(--muted); }

/* The Five strip */
.five-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.five-strip .word {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid rgba(142,147,155,0.22);
  border-radius: 4px;
  background: var(--black-raised);
  color: var(--silver-hi);
  transition: border-color 0.2s, color 0.2s;
}
.five-strip .word:hover { border-color: var(--cyan); color: var(--cyan); }

/* Journey */
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(142,147,155,0.16);
  border-bottom: 1px solid rgba(142,147,155,0.16);
}
@media (max-width: 800px) { .journey { grid-template-columns: 1fr; } }
.journey .phase {
  padding: 44px 32px;
  border-right: 1px solid rgba(142,147,155,0.16);
}
.journey .phase:last-child { border-right: none; }
@media (max-width: 800px) {
  .journey .phase { border-right: none; border-bottom: 1px solid rgba(142,147,155,0.16); }
  .journey .phase:last-child { border-bottom: none; }
}
.journey h3 { font-size: 24px; margin-bottom: 12px; }
.journey .phase p { font-size: 15.5px; color: var(--muted); }

/* Founder */
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) { .founder-inner { grid-template-columns: 1fr; gap: 32px; } }
.founder-mark {
  display: flex;
  justify-content: center;
}
.founder-mark img {
  width: 100%;
  max-width: 340px;
  height: auto;
}
.founder-copy h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 20px; }
.founder-copy p { color: var(--muted); margin-bottom: 16px; }
.founder-copy .principle {
  border-left: 3px solid var(--cyan);
  padding: 14px 22px;
  background: var(--cyan-dim);
  color: var(--body);
  font-size: 16px;
  margin-top: 24px;
  border-radius: 0 6px 6px 0;
}

/* CTA band */
.cta-band {
  text-align: center;
  background: var(--black-raised);
  border-top: 1px solid rgba(142,147,155,0.16);
  border-bottom: 1px solid rgba(142,147,155,0.16);
}
.cta-band h2 { font-size: clamp(28px, 4.5vw, 46px); margin-bottom: 18px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 36px; }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 20px; max-width: 760px; margin: 0 auto; }
.post-card {
  display: block;
  background: var(--black-raised);
  border: 1px solid rgba(142,147,155,0.16);
  border-radius: 8px;
  padding: 32px 34px;
  text-decoration: none;
  transition: border-color 0.25s;
}
.post-card:hover { border-color: rgba(41,195,255,0.5); }
.post-card .date {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.post-card h3 { color: var(--body); font-size: 22px; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: 15.5px; }

/* Article */
.article { max-width: 720px; margin: 0 auto; }
.article h1 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 16px; }
.article .meta {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 40px;
}
.article h2 { font-size: 26px; margin: 44px 0 16px; }
.article p { margin-bottom: 20px; color: var(--body); }
.article ul, .article ol { margin: 0 0 20px 24px; color: var(--body); }
.article li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(142,147,155,0.15);
  padding: 48px 0;
  text-align: center;
}
footer .foot-tagline {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
footer p { color: var(--muted); font-size: 13.5px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--cyan); }

/* ---------- VSL ---------- */
.vsl-hero { text-align: center; padding: 72px 0 40px; }
.vsl-hero h1 { font-size: clamp(28px, 5vw, 50px); max-width: 800px; margin: 0 auto 16px; }
.vsl-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.video-frame {
  max-width: 860px;
  margin: 40px auto;
  aspect-ratio: 16 / 9;
  background: var(--black-raised);
  border: 1px solid rgba(142,147,155,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  box-shadow: 0 0 60px rgba(41,195,255,0.08);
}
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; border-radius: 10px; }

/* ---------- Product strip (homepage, above-the-fold product CTA) ---------- */
.product-strip {
  padding: 44px 0;
  background: var(--black-raised);
  border-top: 1px solid rgba(41,195,255,0.25);
  border-bottom: 1px solid rgba(142,147,155,0.16);
}
.product-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.product-copy h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 8px; }
.product-copy p { color: var(--muted); font-size: 15.5px; max-width: 480px; margin: 0; }
.product-strip .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 640px) {
  .product-strip-inner { flex-direction: column; align-items: flex-start; }
  .product-strip .btn { width: 100%; text-align: center; }
}

/* ---------- Journey strip (compact, replaces heavy 3-card grid) ---------- */
.journey-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.journey-strip .jword {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}
.journey-strip .jarrow { color: var(--silver-lo); font-size: 18px; }
.journey-line {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 15.5px;
}
