/* ============================================
   CAROLYN FAIDLEY — SHARED STYLES
   ============================================ */

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

:root {
  --blue:    #1e90ff;
  --blue-dk: #1570cd;
  --gold:    #f5a623;
  --dark:    #0f172a;
  --mid:     #334155;
  --light:   #f8fafc;
  --white:   #ffffff;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  min-height: 100vh;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
}
.site-logo {
  height: 130px;
  width: auto;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1e90ff 100%);
  padding: 64px 24px 48px;
  text-align: center;
  color: var(--white);
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.hero-sub {
  font-size: 1.1rem;
  color: #bfdbfe;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- CONTENT SECTION ---- */
.content-section {
  padding: 56px 24px 72px;
}
.content-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ---- STEP BLOCKS ---- */
.step-block {
  width: 100%;
  max-width: 720px;
}
.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

/* ---- VIDEO ---- */
.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

/* ---- DIVIDER ---- */
.step-divider {
  text-align: center;
  padding: 32px 0;
  color: var(--blue);
}
.divider-arrow {
  font-size: 2rem;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ---- CTA CARD ---- */
.cta-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  text-align: center;
  border-top: 4px solid var(--blue);
}
.cta-logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-cta:hover {
  background: #e09410;
  transform: translateY(-2px);
}
.cta-privacy {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 14px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
}
.site-footer a { color: #93c5fd; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-copy { margin-bottom: 8px; }
.footer-links { margin-bottom: 8px; }
.footer-bss { font-size: 0.75rem; color: #64748b; }

/* ---- MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.75);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--dark); }
.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  text-align: center;
}
.modal-sub {
  font-size: 0.95rem;
  color: var(--mid);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}
.modal-privacy {
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 16px;
}

/* ---- SUBMISSION PAGE ---- */
.submission-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1e90ff 100%);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.submission-inner { max-width: 680px; margin: 0 auto; }
.submission-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}
.submission-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.submission-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  margin: 48px auto;
  max-width: 640px;
  text-align: left;
}
.submission-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.submission-steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.submission-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.5;
}
.submission-steps li .s-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.submission-note {
  background: #eff6ff;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .hero { padding: 48px 20px 36px; }
  .content-section { padding: 40px 16px 56px; }
  .cta-card { padding: 28px 20px; }
  .modal-box { padding: 32px 20px; }
  .submission-card { padding: 28px 20px; margin: 32px 16px; }
}
