/* ═══════════════════════════════════════════════
   ARIA HOMEPAGE STYLES
   Extracted from the platform stylesheet — homepage only.
   Self-contained so the marketing page evolves independently
   of the application (app.css).
═══════════════════════════════════════════════ */

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

:root {
  --navy: #0D2559;
  --royal: #1B4FD8;
  --amber: #FFCC00;
  --dark: #091547;
  --dark-navy: #091547;
  --light: #F4F6FB; --teal:#2F7E8C; --teal-tint:#EAF3F4;
  --border: #DDE3EF;
  --slate: #0D2559;
  --slate-light: #E5E7EB;
  --border-accent: #1B4FD8;
  --text: #1a2744;
  --green: #00A878;
  --white: #FFFFFF;
  --red: #E53E3E;
  --ink: #1E293B;
  --sky: #3B82F6;
  --panel: #F8FAFC;
  --warn: #F59E0B;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
}

/* ── SCREEN SYSTEM ── */
.screen { display: none; }
.screen.active { display: block; }

/* ── HOME SCREEN ── */
#home {
  background: var(--navy);
  min-height: 100vh;
}

.home-hero {
  padding: 60px 32px 50px;
  text-align: center;
}
.home-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}
.home-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.home-headline em { color: var(--amber); font-style: italic; }
.home-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 52px;
  font-weight: 300;
}
.home-sub strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ── PHASE BUTTONS ── */
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

.phase-card {
  background: var(--amber);
  border: none;
  border-radius: 16px;
  padding: 36px 28px 30px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  font-family: inherit;
}
.phase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255,204,0,0.15);
}

.pc-num-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.pc-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 0 6px rgba(13,37,89,0.15);
  flex-shrink: 0;
  line-height: 1;
}
.pc-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(13,37,89,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1.5px solid rgba(13,37,89,0.15);
}
.pc-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.pc-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pc-divider {
  width: 48px;
  height: 3px;
  background: rgba(13,37,89,0.2);
  border-radius: 2px;
  margin-bottom: 14px;
}
.pc-desc {
  font-size: 16px;
  color: rgba(13,37,89,0.65);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.pc-outputs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.pc-output {
  font-size: 14px;
  color: rgba(13,37,89,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pc-output::before {
  content: '✓';
  font-weight: 800;
  color: var(--navy);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-cta {
  background: var(--navy);
  color: var(--amber);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 8px;
  display: inline-block;
  margin-top: auto;
  text-align: center;
}

/* ── FOOTER ── */
.home-footer { background: rgba(0,0,0,0.25); border-top: 2px solid var(--amber); padding: 16px 32px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.3); }
.home-footer em { color: var(--amber); font-style: normal; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .home-headline { font-size: 40px; line-height: 1.15; }
  .home-sub { font-size: 16px; }
  .pc-title { font-size: 22px; }
  .phase-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 16px 24px; }
  .phase-card { padding: 20px; }
  .pc-num { font-size: 32px; width: 56px; height: 56px; }
  .home-hero { padding: 36px 20px 28px; }
}

@media (max-width: 600px) {
  .coach-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .coach-name { font-size: 26px !important; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .home-headline { font-size: 30px; }
}

@media print {
  .home-footer { display: none !important; }
}
