/* ============================================
   THE VAULT ACADEMY — styles.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── TOKENS ────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #161616;
  --black-border:#222222;
  --gold:        #D4AF37;
  --gold-light:  #E8C84A;
  --gold-dim:    rgba(212, 175, 55, 0.15);
  --gold-line:   rgba(212, 175, 55, 0.3);
  --white:       #ffffff;
  --grey-light:  #f0f0f0;
  --grey-mid:    #999999;
  --grey-dark:   #444444;

  --font-head:   'Sora', sans-serif;
  --font-body:   'DM Sans', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --nav-height:  72px;
  --section-pad: 100px;
  --section-pad-sm: 64px;

  --transition:  0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-mid);
  max-width: 560px;
  line-height: 1.75;
}

/* ── LAYOUT ─────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0 32px;
}

/* ── NAV ─────────────────────────────────────── */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-mid);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-cta--outline {
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid var(--grey-dark) !important;
}

.nav-cta--outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.mobile-guide-cta {
  background: transparent !important;
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1px solid var(--grey-dark) !important;
  margin-top: 16px;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  z-index: 1001;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--black-border);
  transition: color var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }

.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--gold);
  color: var(--black) !important;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border-bottom: none !important;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--grey-dark);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  font-size: 1rem;
  padding: 17px 36px;
}

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}

.footer-logo span { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--grey-dark);
}

.footer-bottom a {
  color: var(--grey-dark);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.4) 0%,
      rgba(10,10,10,0.55) 40%,
      rgba(10,10,10,0.85) 70%,
      rgba(10,10,10,0.98) 100%
    ),
    linear-gradient(to right,
      rgba(10,10,10,0.65) 0%,
      transparent 65%
    );
}

.hero-gold-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 60% 50% at 25% 65%, rgba(212,175,55,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg { display: none; }
.hero-grid { display: none; }
.hero-chart-wrap { display: none; }
.hero-chart-col { display: none; }
.hero-chart-svg { display: none; }

.hero-video-content {
  position: relative;
  z-index: 3;
  padding-bottom: 72px;
}

.hero-inner {
  display: block;
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── HERO STATS ──────────────────────────────── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 3;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-video-content { padding-bottom: 48px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats .stat-item:nth-child(3)::before { display: none; }
  .hero-stats .stat-item:nth-child(3),
  .hero-stats .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    margin-top: 24px;
  }
}

/* ── MARQUEE STRIP ──────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.marquee-inner span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}

.marquee-inner span.dot::after {
  content: '◆';
  margin-left: 32px;
}

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

/* ── PHILOSOPHY SECTION ─────────────────────── */
.philosophy {
  background: var(--black-soft);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-text p {
  color: var(--grey-mid);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.philosophy-text p strong {
  color: var(--white);
  font-weight: 600;
}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phil-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.phil-card:hover { border-color: var(--gold-line); }

.phil-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.phil-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.phil-card p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* ── WHAT YOU GET ───────────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.offering-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.offering-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.offering-card.featured {
  border-color: var(--gold-line);
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(212,175,55,0.04) 100%);
}

.offering-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.offering-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.offering-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.offering-card > p {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.offering-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.offering-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--grey-mid);
}

.offering-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.offering-price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.offering-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey-mid);
}

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials { background: var(--black-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--gold-line); }

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-handle {
  font-size: 0.75rem;
  color: var(--grey-dark);
  margin-top: 3px;
}

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.03) 100%);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  text-align: center;
  padding: var(--section-pad) 0;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--grey-mid);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ABOUT PAGE ─────────────────────────────── */
.about-hero {
  padding: 120px 0 80px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  line-height: 1.3;
}

.about-image-badge strong {
  display: block;
  font-size: 1.4rem;
}

.about-story p {
  color: var(--grey-mid);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-story p strong {
  color: var(--white);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* ── SERVICES PAGE ──────────────────────────── */
.services-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.services-hero .section-subtitle {
  margin: 0 auto;
}

.services-detail {
  margin-top: 80px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--black-border);
}

.service-row:last-child { border-bottom: none; }

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-visual {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.service-text h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-text p {
  color: var(--grey-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ── GUIDE LANDING PAGE ─────────────────────── */
.guide-hero {
  padding: 120px 0 80px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.guide-cover {
  background: linear-gradient(135deg, var(--black-card) 0%, #1a1500 100%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
  text-align: center;
}

.guide-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.12) 0%, transparent 60%);
}

.guide-cover-eyebrow {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.guide-cover h2 {
  font-size: 1.6rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.guide-cover-sub {
  font-size: 0.75rem;
  color: var(--grey-mid);
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.guide-cover-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.guide-price-box {
  background: var(--black-card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 32px;
  text-align: center;
}

.guide-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.guide-price-note {
  font-size: 0.8rem;
  color: var(--grey-mid);
  margin-top: 8px;
  margin-bottom: 24px;
}

.honest-box {
  background: var(--black-card);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 48px 0;
}

.honest-box h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.honest-box p {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.85;
}

.honest-box p + p { margin-top: 12px; }

.whats-inside {
  margin: 48px 0;
}

.whats-inside h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.inside-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inside-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

.inside-list li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.for-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.for-box h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.for-box ul { display: flex; flex-direction: column; gap: 10px; }

.for-box ul li {
  font-size: 0.875rem;
  color: var(--grey-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.for-box ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── COMMUNITY PAGE ─────────────────────────── */
.community-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
}

.channel-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.channel-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.channel-card.premium-card {
  border-color: var(--gold-line);
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(212,175,55,0.05) 100%);
}

.channel-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.channel-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.channel-card > p {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.channel-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
}

.channel-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey-mid);
}

.channel-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 32px;
}

.channel-features li {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--grey-mid);
}

.channel-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── BLOG PAGE ──────────────────────────────── */
.blog-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.blog-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-bottom: 1px solid var(--black-border);
}

.blog-card-body { padding: 24px; }

.blog-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--grey-dark);
}

/* ── CONTACT PAGE ───────────────────────────── */
.contact-hero {
  padding: 120px 0 80px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--grey-mid);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-item-text p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin: 0;
}

.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-dark); }

/* ── PAGE INNER ─────────────────────────────── */
.page-inner { padding: var(--section-pad) 0; }

/* ── 404 ────────────────────────────────────── */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found h1 {
  font-size: 8rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.not-found h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.not-found p {
  color: var(--grey-mid);
  margin-bottom: 32px;
}

/* ── SITEMAP ─────────────────────────────────── */
.sitemap-section { padding: var(--section-pad) 0; }

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

.sitemap-col h3 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sitemap-col ul { display: flex; flex-direction: column; gap: 12px; }

.sitemap-col a {
  font-size: 0.9rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

.sitemap-col a:hover { color: var(--white); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .philosophy-grid,
  .about-hero-grid,
  .guide-hero-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .service-row,
  .service-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .for-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: var(--section-pad-sm); }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 28px; }

  .offerings-grid,
  .channels-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-values { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .contact-form { padding: 28px 24px; }
  .offering-card { padding: 28px 24px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .not-found h1 { font-size: 5rem; }
}

/* ── HERO CHART ─────────────────────────────── */
.hero-chart-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 560px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .hero-chart-wrap {
    width: 55%;
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .hero-chart-wrap {
    display: none;
  }
}

/* ── STOCK IMAGE PANELS ─────────────────────── */
.img-panel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.chart-visual {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.chart-visual-inner {
  padding: 28px;
  position: relative;
}

/* Mini chart for about section */
.mini-chart-svg {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 16px;
}

/* ── SVG ICONS ──────────────────────────────── */
.icon-svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.phil-icon .icon-svg {
  width: 20px;
  height: 20px;
}

.channel-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.channel-icon .icon-svg {
  width: 28px;
  height: 28px;
}

.service-visual .icon-svg {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
}

.blog-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img .icon-svg {
  width: 40px;
  height: 40px;
}

.contact-item-icon .icon-svg {
  width: 20px;
  height: 20px;
}

.guide-cover-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.guide-cover-icon .icon-svg {
  width: 36px;
  height: 36px;
}

.check .icon-svg {
  width: 12px;
  height: 12px;
  display: block;
}
