/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0a0a0a; color: #e8e4e0; font-family: 'Georgia', 'Times New Roman', serif; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== TOKENS ===== */
:root {
  --gold: #D4AF37;
  --gold-hover: #b8962d;
  --red: #C0392B;
  --rose: #B76E79;
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #131313;
  --text: #e8e4e0;
  --text-secondary: #8a8480;
  --text-muted: #4a4540;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(212,175,55,0.2);
  --section-pad: 5rem 1.25rem;
}

/* ===== TYPOGRAPHY ===== */
.font-heading { font-family: 'Arial Black', 'Arial Bold', 'Helvetica Neue', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.accent { color: var(--gold); }
.accent-iris { color: var(--rose); }
.section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1rem; }
.section-desc { color: var(--text-secondary); max-width: 540px; }
.lead { font-size: 1.05rem; color: var(--text); margin-bottom: 1rem; line-height: 1.7; }
p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 0.875rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--gold); color: #0a0a0a;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: 2px solid var(--gold); transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--text);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: 2px solid rgba(255,255,255,0.2); transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-secondary-iris {
  display: inline-block; background: transparent; color: var(--text);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: 2px solid rgba(183,110,121,0.4); transition: border-color 0.2s, color 0.2s;
}
.btn-secondary-iris:hover { border-color: var(--rose); color: var(--rose); }
.btn-gold {
  display: inline-block; background: var(--gold); color: #0a0a0a;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.5rem; border: 2px solid var(--gold); transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-hover); }
.btn-large { padding: 1.1rem 3rem; font-size: 0.72rem; }

/* ===== HERO: PHOTO + TEXT PANEL (no overlap) ===== */
.hero {
  display: flex;
  flex-direction: column;
}

/* Photo section — faces 100% visible, zero text on top */
.hero-photo {
  position: relative;
  width: 100%;
  height: 62svh;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* corner labels on photo */
.hero-corner {
  position: absolute;
  top: 1.25rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-corner-left { left: 1.25rem; }
.hero-corner-right { right: 1.25rem; align-items: flex-end; }
.panel-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.panel-name {
  font-family: 'Arial Black', 'Arial Bold', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Text panel — solid dark background, zero photo interference */
.hero-text-panel {
  background: var(--bg);
  border-top: 1px solid var(--border-gold);
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-eyebrow-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.875rem;
  margin-bottom: 1.25rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-text-panel h1 {
  font-size: clamp(2.75rem, 10vw, 6rem);
  line-height: 0.9;
  margin-bottom: 0.75rem;
}
.hero-tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0.9;
}
.hero-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-secondary { width: 100%; text-align: center; font-size: 0.62rem; }

/* ===== STATS BAR ===== */
.stats-bar { background: #0e0c08; border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); padding: 1.5rem 1.25rem; }
.stats-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; max-width: 960px; margin: 0 auto; gap: 0; }
.stat { text-align: center; padding: 0.5rem 1.25rem; }
.stat-value { font-size: clamp(1.4rem, 4vw, 1.9rem); color: var(--text); }
.stat-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.2rem; }
.stat-div { width: 1px; height: 2.5rem; background: var(--border-gold); }

/* ===== CONCEPT SECTION ===== */
.concept-section { padding: var(--section-pad); }
.concept-grid { display: grid; gap: 2rem; }
.concept-text h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
.concept-body .lead { font-size: 1.05rem; }
.concept-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.concept-divider-line { flex: 1; height: 1px; background: var(--border-gold); }
.concept-divider-text { font-size: 0.6rem; letter-spacing: 0.18em; color: var(--gold); opacity: 0.6; white-space: nowrap; }

/* ===== TRACKS SECTION ===== */
.tracks-section { border-top: 1px solid var(--border); }

.track {
  display: flex;
  flex-direction: column;
}
.track-image {
  position: relative;
  overflow: hidden;
}
.track-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
}
.track-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 100%);
}
.iris-track-overlay {
  background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.55) 100%);
}
.track-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(192,57,43,0.4);
  padding: 0.35rem 0.75rem;
  background: rgba(192,57,43,0.1);
}
.track-image-badge-iris {
  border-color: rgba(183,110,121,0.4);
  background: rgba(183,110,121,0.1);
  left: auto;
  right: 1.5rem;
}
.track-content {
  padding: 3rem 1.25rem;
  background: var(--bg-elevated);
}
.track-content h2 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.5rem; }
.track-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.track-list li { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: baseline; gap: 0.6rem; }
.check { color: var(--red); font-size: 0.65rem; }
.check-iris { color: var(--rose); font-size: 0.65rem; }
.tracks-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.tracks-divider-icon { font-size: 2rem; color: var(--gold); opacity: 0.4; }

/* ===== FEATURES GRID ===== */
.features-section { padding: var(--section-pad); }
.features-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
.feature-card { background: var(--bg-card); padding: 2rem 1.75rem; }
.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: 'Arial Black', sans-serif;
}
.tj-icon { background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3); color: var(--red); }
.iris-icon { background: rgba(183,110,121,0.15); border: 1px solid rgba(183,110,121,0.3); color: var(--rose); }
.compound-icon { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); }
.feature-card h3 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; margin: 0; }

/* ===== PRICING ===== */
.pricing-section { padding: var(--section-pad); background: var(--bg-elevated); }
.pricing-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.price-card { border: 1px solid var(--border); padding: 2.5rem 2rem; background: var(--bg-card); position: relative; }
.price-card-iris { border-color: rgba(183,110,121,0.25); background: #120d0e; }
.price-card-featured { border-color: var(--gold); background: #0e0c06; }
.price-badge-top {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0a0a; font-size: 0.55rem; font-weight: 800;
  letter-spacing: 0.14em; padding: 0.3rem 1.25rem; white-space: nowrap;
}
.price-track-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem;
}
.price-track-tag-iris { color: var(--rose); }
.price-card-name { font-size: 1.4rem; color: var(--text); margin-bottom: 1.25rem; }
.price-amount { font-size: 2.75rem; color: var(--text); line-height: 1; margin-bottom: 0.25rem; }
.price-cents { font-size: 1.4rem; }
.price-mo { font-size: 0.9rem; color: var(--text-secondary); font-weight: 400; }
.price-period { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.price-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.price-features li { font-size: 0.875rem; color: var(--text-secondary); display: flex; align-items: baseline; gap: 0.5rem; }
.check-gold { color: var(--gold); font-size: 0.65rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: var(--section-pad); }
.testimonials-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem; }
.testimonial-quote { font-family: Georgia, serif; font-size: 3.5rem; color: var(--gold); opacity: 0.25; line-height: 0.8; margin-bottom: 0.75rem; }
.testimonial-card p { font-size: 0.9rem; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author .name { font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: 0.05em; }
.testimonial-author .role { font-size: 0.7rem; color: var(--text-muted); }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 6rem 1.25rem;
  text-align: center;
  background: #0e0c06;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); opacity: 0.6; margin-bottom: 1.5rem; }
.final-cta h2 { font-size: clamp(2.25rem, 7vw, 4rem); margin-bottom: 1.5rem; line-height: 0.95; }
.final-cta p { font-size: 1rem; max-width: 460px; margin: 0 auto 2.5rem; }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-pad); }
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--text); list-style: none; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding-bottom: 1.25rem; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }

/* ===== FOOTER ===== */
footer { background: #060604; border-top: 1px solid var(--border-gold); padding: 3rem 1.25rem; }
.footer-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.footer-brand { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.4rem; }
.footer-names { font-size: 0.7rem; letter-spacing: 0.14em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-social a { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { font-size: 0.68rem; color: var(--text-muted); line-height: 1.7; }

/* ===== SECTION INNER ===== */
.section-inner { max-width: 960px; margin: 0 auto; }

/* ===== DESKTOP ===== */
@media (min-width: 768px) {

  /* Hero: side by side on desktop */
  .hero { flex-direction: row; min-height: 92svh; }
  .hero-photo { width: 55%; height: auto; min-height: 92svh; flex-shrink: 0; }
  .hero-text-panel { width: 45%; padding: 4rem 3.5rem; justify-content: center; border-top: none; border-left: 1px solid var(--border-gold); }
  .hero-text-panel h1 { font-size: clamp(3rem, 5vw, 5.5rem); }
  .hero-tagline { font-size: 1rem; }
  .hero-ctas { flex-direction: row; max-width: none; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: auto; font-size: 0.66rem; }

  /* Concept: 2-col */
  .concept-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

  /* Tracks: image + content side by side */
  .track { flex-direction: row; min-height: 500px; }
  .track-image { width: 45%; flex-shrink: 0; }
  .track-image img { height: 100%; min-height: 500px; }
  .track-content { width: 55%; padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }

  /* Iris track: content first on desktop */
  .track-iris { flex-direction: row; }
  .track-content-iris { order: 1; }
  .track-image-iris { order: 2; }

  /* Features: 2x4 grid */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing: 3-col */
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials: 3-col */
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* Stats */
  .stat { padding: 0.5rem 2rem; }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-center h1 { font-size: clamp(6rem, 9vw, 10rem); }
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle-section { position: relative; overflow: hidden; }
.lifestyle-inner { position: relative; }
.lifestyle-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.4) 50%,
    rgba(10,10,10,0.65) 100%
  );
}
.lifestyle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
}
.lifestyle-quote {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.lifestyle-sub {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ===== REEL VIDEO SECTION ===== */
.reel-section { position: relative; overflow: hidden; }
.reel-wrap { position: relative; }
.reel-wrap video {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.6) 85%,
    rgba(10,10,10,0.9) 100%
  );
}
.reel-content {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.reel-label {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 0.25rem;
}
.reel-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

@media (min-width: 768px) {
  .lifestyle-inner img { height: 560px; }
  .reel-wrap video { height: 680px; }
}

/* ===== HERO SOCIAL ROW ===== */
.hero-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-social-link:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); color: var(--gold); }
.hero-social-divider {
  font-family: 'Arial Black', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.4;
  padding: 0 0.25rem;
}
