:root {
  --orange: #B35000;
  --charcoal: #111111;
  --warm-gray: #F5F3F0;
  --off-white: #FAF9F7;
  --white: #FFFFFF;
  --border: #E2DDD8;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #696969;
  --gs-teal: #2a7f6f;
  --gs-teal-light: #e8f4f1;
}

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

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0d2318 0%, #111111 45%, #0a2920 100%);
  color: #fff; padding: 4.5rem 3rem 4rem;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(42,127,111,0.22); border: 1px solid rgba(42,127,111,0.4);
  color: #7ecfc0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1rem; text-transform: uppercase;
}
.hero-title { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.75rem; }
.hero-title .gs-accent { color: #7ecfc0; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 540px; line-height: 1.65; margin-bottom: 1.75rem; }
.hero-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hero-chip { padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.hero-stats { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-stat {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1rem 1.5rem; text-align: center; min-width: 130px;
}
.hero-stat-num { font-size: 1.7rem; font-weight: 800; color: #7ecfc0; line-height: 1; margin-bottom: 0.3rem; }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); line-height: 1.3; }

/* ── QUICK LAUNCH ── */
.quick-launch { background: var(--charcoal); padding: 1rem 2rem; border-bottom: 1px solid #222; }
.ql-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ql-label { color: rgba(255,255,255,0.45); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-right: 0.5rem; }
.ql-btn {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.85rem; border-radius: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 500; transition: all 0.15s;
}
.ql-btn:hover { background: rgba(255,255,255,0.13); color: #fff; border-color: rgba(255,255,255,0.25); }

/* ── SCANTRON NOTICE ── */
.notice-band { background: #fffbea; border-bottom: 1px solid #f0d060; padding: 1.1rem 2rem; }
.notice-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; gap: 1rem; }
.notice-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.notice-title { font-size: 0.9rem; font-weight: 700; color: #7a5c00; margin-bottom: 0.3rem; }
.notice-desc { font-size: 0.84rem; color: #665000; line-height: 1.55; }

/* ── SECTIONS ── */
.section { padding: 4rem 2rem; }
.section-alt { background: var(--warm-gray); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; line-height: 1.2; }
.section-sub { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; max-width: 640px; margin-bottom: 2rem; }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon { font-size: 1.4rem; margin-bottom: 0.75rem; }
.feature-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── SETUP STEPS ── */
.gs-steps { display: grid; gap: 0; }
.gs-step { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.gs-step:last-child { border-bottom: none; }
.gs-step-num {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem;
  background: var(--orange); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800;
}
.gs-step-body { flex: 1; }
.gs-step-title { font-size: 0.975rem; font-weight: 700; margin-bottom: 0.4rem; }
.gs-step-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }
.gs-step-desc a { color: var(--orange); text-decoration: underline; }
.setup-note {
  margin-top: 2rem; padding: 1rem 1.25rem;
  background: rgba(42,127,111,0.07); border-left: 3px solid var(--gs-teal);
  border-radius: 0 8px 8px 0; font-size: 0.875rem; color: #2a4a40; line-height: 1.6;
}

/* ── GRADING WORKFLOW ── */
.workflow-list { display: grid; gap: 0; margin-top: 2rem; }
.workflow-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.workflow-item:last-child { border-bottom: none; }
.workflow-num { flex-shrink: 0; font-size: 1.4rem; font-weight: 800; color: rgba(42,127,111,0.3); line-height: 1; width: 2.5rem; }
.workflow-body { flex: 1; }
.workflow-title { font-size: 0.975rem; font-weight: 700; margin-bottom: 0.4rem; }
.workflow-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ── TRAINING ── */
.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.training-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.6rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.training-card-icon { font-size: 1.6rem; }
.training-card-title { font-size: 0.95rem; font-weight: 700; }
.training-card-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.btn-training {
  display: inline-flex; align-items: center; margin-top: 0.25rem;
  padding: 0.55rem 1.1rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  background: var(--gs-teal); color: white; transition: opacity 0.15s; align-self: flex-start;
}
.btn-training:hover { opacity: 0.88; }

/* ── SUPPORT ── */
.support-triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.support-card {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.6rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.support-icon { font-size: 1.6rem; }
.support-title { font-size: 0.95rem; font-weight: 700; }
.support-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.btn-support {
  display: inline-flex; align-items: center; margin-top: 0.5rem;
  padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.84rem; font-weight: 600;
  background: var(--orange); color: white; transition: background 0.15s; align-self: flex-start;
}
.btn-support:hover { background: #9a4400; }
.btn-support-outline {
  display: inline-flex; align-items: center; margin-top: 0.5rem;
  padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.84rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-primary); background: transparent;
  transition: border-color 0.15s, background 0.15s; align-self: flex-start;
}
.btn-support-outline:hover { border-color: var(--orange); background: var(--off-white); }

/* ── ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 120px; }
  .training-grid,
  .support-triptych { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 3.5rem 1.5rem; }
  .section { padding: 3rem 1.25rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .workflow-item { flex-direction: column; gap: 0.75rem; }
}
