:root {
  --orange:        #B35000;
  --orange-light:  #D4600A;
  --orange-faint:  rgba(191,87,0,0.07);
  --orange-border: rgba(191,87,0,0.22);
  --charcoal:      #111111;
  --slate:         #1B2A3B;
  --slate-mid:     #243447;
  --warm-gray:     #F5F3F0;
  --off-white:     #FAF9F7;
  --white:         #FFFFFF;
  --border:        #E2DDD8;
  --border-mid:    #D0CAC3;
  --text-primary:  #1a1a1a;
  --text-secondary:#4a4a4a;
  --text-muted:    #696969;
  /* Canvas accent */
  --canvas-red:    #C01217;
  --canvas-dark:   #9B0E13;
  --canvas-mid:    #C01217;
  --canvas-faint:  rgba(229,23,29,0.06);
  --canvas-border: rgba(229,23,29,0.20);
  /* Supporting colors */
  --green:         #15803d;
  --green-faint:   rgba(21,128,61,0.07);
  --green-border:  rgba(21,128,61,0.22);
  --amber:         #d97706;
  --amber-faint:   rgba(217,119,6,0.08);
  --amber-border:  rgba(217,119,6,0.25);
  --blue:          #1d4ed8;
  --blue-faint:    rgba(29,78,216,0.07);
  --blue-border:   rgba(29,78,216,0.20);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SYSTEM BAR ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2d0a0a 0%, #111111 50%, #1a0808 100%);
  color: #fff;
  padding: 4.5rem 3rem 4rem;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; display: flex; gap: 3rem; align-items: flex-start; flex-wrap: wrap; }
.hero-left { flex: 1; min-width: 320px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fca5a5; margin-bottom: 0.9rem;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: #fca5a5; display: inline-block; }
.hero-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 0.9rem;
}
.hero-title span { color: #fca5a5; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 520px; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-canvas {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.3rem; border-radius: 6px;
  background: var(--canvas-red); color: #fff;
  text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: background 0.2s;
}
.btn-canvas:hover { background: var(--canvas-mid); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.3rem; border-radius: 6px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

.hero-checklist {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.25rem 1.4rem; min-width: 220px;
}
.hero-checklist-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.85rem;
}
.hero-check {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.78);
  padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-check:last-child { border-bottom: none; padding-bottom: 0; }
.hero-check-icon { font-size: 0.85rem; flex-shrink: 0; }

/* ── QUICK JUMP BAR ── */
.qj-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 2rem; position: sticky; top: 63px; z-index: 50;
}
.qj-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 0.35rem; overflow-x: auto;
  scrollbar-width: none; padding: 0.55rem 0;
}
.qj-inner::-webkit-scrollbar { display: none; }
.qj-chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.75rem; border-radius: 20px; white-space: nowrap;
  font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
  background: var(--warm-gray); border: 1px solid var(--border);
  text-decoration: none; transition: all 0.15s;
}
.qj-chip:hover { background: var(--canvas-faint); border-color: var(--canvas-border); color: var(--canvas-red); }

/* ── POLICY CALLOUT ── */
.policy-band {
  background: #fffbeb; border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a;
  padding: 1.1rem 2rem;
}
.policy-band-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.policy-band-icon { font-size: 1.2rem; flex-shrink: 0; }
.policy-band-text { font-size: 0.85rem; color: #78350f; line-height: 1.55; flex: 1; }
.policy-band-text strong { color: #92400e; }
.policy-band-link {
  font-size: 0.8rem; font-weight: 600; color: #b45309;
  text-decoration: none; white-space: nowrap;
  padding: 0.35rem 0.8rem; border: 1px solid #fcd34d; border-radius: 6px;
  background: rgba(252,211,77,0.15); transition: background 0.15s;
}
.policy-band-link:hover { background: rgba(252,211,77,0.3); }

/* ── PAGE WRAP ── */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem 5rem; }

/* ── SECTION HEADER ── */
.sec-hdr { margin-bottom: 1.75rem; }
.sec-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--canvas-red); margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.sec-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--canvas-red); display: inline-block; }
.sec-hdr h2 { font-family: 'Sora', 'Inter', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
.sec-hdr p { font-size: 0.93rem; color: var(--text-secondary); margin-top: 0.5rem; line-height: 1.65; max-width: 680px; }

/* ── SETUP STEPS ── */
.steps-grid { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0; padding: 1.5rem 1.75rem;
  border-bottom: none; position: relative;
}
.step-row:first-child { border-radius: 10px 10px 0 0; }
.step-row:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 10px 10px; }
.step-row:hover { background: #fafafa; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--canvas-red); color: #fff;
  font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.step-body { flex: 1; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 0.75rem; }
.step-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.step-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.8rem; font-weight: 600; color: var(--canvas-red);
  text-decoration: none; padding: 0.3rem 0.7rem;
  border: 1px solid var(--canvas-border); border-radius: 6px;
  background: var(--canvas-faint); transition: all 0.15s;
}
.step-link:hover { background: rgba(229,23,29,0.12); }
.step-note {
  font-size: 0.75rem; color: var(--text-muted);
  background: var(--warm-gray); border-radius: 4px; padding: 0.25rem 0.6rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.step-time {
  font-size: 0.72rem; color: var(--text-muted); font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; margin-top: 0.1rem;
}
.step-connector {
  position: absolute; left: 2.65rem; bottom: 0; width: 2px; height: 0;
  background: var(--canvas-border);
}
/* sub-steps */
.step-substeps { margin-top: 0.75rem; padding-left: 0.25rem; }
.step-substep {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55;
  padding: 0.3rem 0; border-bottom: 1px dashed var(--border);
}
.step-substep:last-child { border-bottom: none; }
.step-substep-bullet { color: var(--canvas-red); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ── SYLLABUS OPTIONS ── */
.syllabus-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.syllabus-option {
  background: var(--off-white); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.9rem 1rem;
}
.syllabus-option.recommended { border-color: var(--canvas-border); background: var(--canvas-faint); }
.syl-opt-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.syl-opt-label.rec { color: var(--canvas-red); }
.syl-opt-label.alt { color: var(--text-muted); }
.syl-opt-title { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.syl-opt-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.55; }
@media (max-width: 600px) { .syllabus-options { grid-template-columns: 1fr; } }

/* ── FEATURE GRID ── */
.features-section { margin-top: 3rem; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.75rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.25rem; transition: box-shadow 0.15s;
}
.feature-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.feature-icon {
  width: 36px; height: 36px; border-radius: 8px; margin-bottom: 0.75rem;
  background: var(--canvas-faint); border: 1px solid var(--canvas-border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.feature-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.35rem; }
.feature-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }
.feature-tip {
  margin-top: 0.65rem; font-size: 0.75rem; color: var(--canvas-red);
  font-weight: 600; display: flex; align-items: center; gap: 0.3rem;
}

/* ── INTEGRATIONS ── */
.integrations-section { margin-top: 3rem; }
.integrations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem;
}
.integration-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.1rem 1.1rem;
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.int-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 0.3rem;
}
.int-body {}
.int-name { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.int-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.55; }
.int-how { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.35rem; font-style: italic; }

/* ── ALERT CALLOUT ── */
.alert-callout {
  background: #fff7ed; border: 1.5px solid #fed7aa;
  border-left: 4px solid var(--orange); border-radius: 8px;
  padding: 1.1rem 1.25rem; margin: 2.5rem 0;
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.alert-callout-body h3 { font-size: 0.9rem; font-weight: 700; color: #9a3412; margin-bottom: 0.3rem; }
.alert-callout-body p { font-size: 0.83rem; color: #7c2d12; line-height: 1.6; }
.alert-callout-body a { color: #9a3412; font-weight: 600; }

/* ── POLICY SECTION ── */
.policy-section { margin-top: 3rem; }
.policy-box {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.policy-box-header {
  background: var(--warm-gray); padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.policy-box-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.policy-ext-link {
  font-size: 0.78rem; font-weight: 600; color: var(--orange); text-decoration: none;
}
.policy-box-body { padding: 1.4rem; }
.policy-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (max-width: 700px) { .policy-row { grid-template-columns: 1fr; } }
.policy-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
.policy-list { list-style: none; padding: 0; }
.policy-list li {
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6;
  padding: 0.3rem 0; border-bottom: 1px dashed var(--border);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before { content: '–'; color: var(--canvas-red); font-weight: 700; flex-shrink: 0; }
.ferpa-note {
  margin-top: 1.25rem; padding: 0.9rem 1rem;
  background: var(--blue-faint, rgba(29,78,216,0.06)); border: 1px solid var(--blue-border, rgba(29,78,216,0.2));
  border-radius: 8px; font-size: 0.82rem; color: #1e3a8a; line-height: 1.6;
}
.ferpa-note strong { color: #1e40af; }

/* ── HELP SECTION ── */
.help-section { margin-top: 3rem; }
.help-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; }
.help-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.help-card-icon { font-size: 1.4rem; }
.help-card-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.help-card-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.help-card-cta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.8rem; font-weight: 600; color: var(--orange); text-decoration: none;
  margin-top: 0.35rem;
}
.help-card-cta:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.8); }
/* ── SECTION DIVIDER ── */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0 0; }
