cat > ~/Documents/student-nation/style.css << 'EOF'
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C38;
  --deep: #0A0A0F;
  --dark: #111118;
  --card: #16161E;
  --card2: #1C1C26;
  --white: #F5F0E8;
  --muted: #9090A8;
  --green: #22C55E;
  --blue: #3B82F6;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--deep); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10,10,15,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,0,0.12);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.08em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--saffron); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--saffron); color: #000; padding: 0.55rem 1.4rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--saffron-light); }
.page-hero { padding: 10rem 4rem 5rem; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%); top: -100px; right: -50px; pointer-events: none; }
.page-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 1rem; }
.page-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 8vw, 7rem); line-height: 0.95; letter-spacing: 0.02em; }
.page-title .dim { color: var(--muted); }
.page-sub { font-size: 1.1rem; color: var(--muted); max-width: 560px; line-height: 1.7; margin-top: 1.5rem; }
section { padding: 6rem 4rem; }
.section-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 1rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: 0.02em; }
.section-title .dim { color: var(--muted); }
.btn-primary { background: var(--saffron); color: #000; padding: 0.9rem 2.2rem; border-radius: 100px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: transform 0.2s, background 0.2s; display: inline-block; }
.btn-primary:hover { transform: scale(1.05); background: var(--saffron-light); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 0.9rem 2.2rem; border-radius: 100px; font-weight: 500; font-size: 1rem; text-decoration: none; transition: border-color 0.2s, background 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--saffron); background: rgba(255,107,0,0.07); }
footer { background: #050508; border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-brand .logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); letter-spacing: 0.08em; display: block; margin-bottom: 1rem; }
.footer-brand .logo span { color: var(--saffron); }
.footer-brand p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: var(--card); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--saffron); }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(245,240,232,0.7); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom { background: #050508; border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 4rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section, .page-hero { padding: 5rem 1.5rem 3rem; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
EOF
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-wrap { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-tagline { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; font-style: italic; display: block; margin-top: -2px; }
.hero-tagline { display: inline-block; font-size: 1rem; color: var(--saffron); font-style: italic; font-family: 'Instrument Serif', serif; margin-top: 1rem; letter-spacing: 0.02em; }
