/* ============================================================
   HYER UNIVERSITY — prototype styles
   Brand: Hyer purple #624F9F / navy #203864 / gold #FFB81C
   Type: Oswald (display) + Figtree (body, Avenir Next stand-in)
   ============================================================ */

:root {
  --purple: #624F9F;
  --purple-dark: #4A3B7C;
  --purple-light: #988CBC;
  --navy: #203864;
  --ink: #16213E;
  --ink-2: #1B2A52;
  --gold: #FFB81C;
  --gold-deep: #E8A200;
  --blue: #4D79AC;
  --paper: #F7F7FA;
  --white: #FFFFFF;
  --text: #2B2B3A;
  --text-soft: #5E5E70;
  --line: #E6E4EF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(32, 56, 100, 0.10);
  --shadow-lg: 0 24px 60px rgba(32, 56, 100, 0.18);
  --display: "Oswald", "Avenir Next Condensed", sans-serif;
  --body: "Figtree", "Avenir Next", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep);
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.on-dark .kicker { color: var(--gold); }

h1, h2, h3 { font-family: var(--display); text-transform: uppercase; line-height: 1.05; }
h1 { font-size: clamp(44px, 6.4vw, 84px); font-weight: 700; letter-spacing: 0.01em; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 600; color: var(--navy); }
h3 { font-size: 19px; font-weight: 600; letter-spacing: 0.05em; color: var(--navy); }
.on-dark h2, .on-dark h3 { color: var(--white); }
.accent { color: var(--gold); }
.accent-purple { color: var(--purple); }

.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-soft); max-width: 640px; }
.on-dark .lede { color: rgba(255,255,255,0.82); }

/* ---------- notice bar ---------- */
.notice {
  background: var(--ink); color: rgba(255,255,255,0.85);
  font-size: 13px; text-align: center; padding: 9px 16px;
}
.notice strong { color: var(--gold); font-weight: 600; }
.notice a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.notice a:hover { color: var(--gold); }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand .u-lockup { display: flex; flex-direction: column; border-left: 2px solid var(--gold); padding-left: 12px; }
.brand .u-word {
  font-family: var(--display); font-weight: 600; font-size: 17px;
  letter-spacing: 0.18em; color: var(--navy); text-transform: uppercase; line-height: 1.1;
}
.brand .u-tag { font-size: 10px; letter-spacing: 0.34em; color: var(--purple); text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--text-soft);
  padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 8px 24px rgba(255,184,28,0.35); }
.btn-gold:hover { background: #FFC542; }
.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 8px 24px rgba(98,79,159,0.30); }
.btn-purple:hover { background: var(--purple-dark); }
.btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { border-color: var(--purple); color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--ink) 0%, var(--navy) 55%, var(--purple-dark) 130%);
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22; mix-blend-mode: luminosity;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1200px 500px at 85% -10%, rgba(255,184,28,0.16), transparent 60%),
              radial-gradient(900px 600px at -10% 110%, rgba(98,79,159,0.45), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: clamp(80px, 11vw, 150px) 0 clamp(64px, 8vw, 110px); }
.hero .lede { margin: 26px 0 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 0; margin-top: 60px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats .stat { padding: 24px 44px 4px 0; margin-right: 44px; }
.hero-stats .num {
  font-family: var(--display); font-weight: 600; font-size: 40px; color: var(--gold); line-height: 1;
}
.hero-stats .lbl { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ---------- sections ---------- */
section { padding: clamp(64px, 8vw, 110px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { margin: 14px 0 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.bg-paper { background: var(--paper); }
.bg-navy { background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 70%); color: #fff; }
.bg-purple { background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 80%); color: #fff; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--purple-light); }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(98,79,159,0.10); font-size: 24px; margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--text-soft); }

.card-gold .icon { background: rgba(255,184,28,0.16); }

/* dark cards */
.bg-navy .card, .bg-purple .card {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14);
}
.bg-navy .card:hover, .bg-purple .card:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.35); border-color: var(--gold); }
.bg-navy .card p, .bg-purple .card p { color: rgba(255,255,255,0.72); }
.bg-navy .card .icon, .bg-purple .card .icon { background: rgba(255,184,28,0.14); }

/* ---------- lucide icon sizing ---------- */
.icon svg { width: 26px; height: 26px; color: var(--purple); }
.card-gold .icon svg { color: var(--gold-deep); }
.bg-navy .card .icon svg, .bg-purple .card .icon svg { color: var(--gold); }
.bubble svg { width: 40px; height: 40px; color: #fff; }
.chip svg { width: 18px; height: 18px; color: var(--gold); }
.badge-float .dot svg { width: 20px; height: 20px; color: var(--ink); }
.form-success .big svg { width: 56px; height: 56px; color: var(--gold-deep); }

/* ---------- audience compare ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.compare-col { border-radius: 22px; padding: clamp(28px, 3.5vw, 42px); }
.compare-col.biz { background: linear-gradient(150deg, var(--ink), var(--navy)); color: #fff; box-shadow: var(--shadow-lg); }
.compare-col.stu { background: var(--white); border: 2px solid var(--gold); box-shadow: var(--shadow); }
.aud-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 18px;
}
.biz .aud-pill { background: var(--gold); color: var(--ink); }
.stu .aud-pill { background: var(--navy); color: #fff; }
.compare-col .big-h { font-size: clamp(22px, 2.3vw, 30px); margin-bottom: 6px; }
.biz .big-h { color: #fff; }
.compare-sub { font-size: 15px; margin-bottom: 14px; }
.biz .compare-sub { color: rgba(255,255,255,0.72); }
.stu .compare-sub { color: var(--text-soft); }
.compare .row { display: flex; gap: 14px; padding: 15px 0; align-items: flex-start; border-bottom: 1px solid transparent; }
.biz .row { border-color: rgba(255,255,255,0.12); }
.stu .row { border-color: var(--line); }
.compare .row:last-of-type { border-bottom: 0; }
.compare .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; }
.biz .ic { background: rgba(255,184,28,0.16); color: var(--gold); }
.stu .ic { background: rgba(255,184,28,0.22); color: var(--ink); }
.compare .ic svg { width: 20px; height: 20px; }
.compare .row strong { font-family: var(--display); text-transform: uppercase; font-size: 15.5px; letter-spacing: 0.05em; font-weight: 600; display: block; line-height: 1.3; }
.biz .row strong { color: #fff; }
.stu .row strong { color: var(--navy); }
.compare .row p { font-size: 14px; margin-top: 3px; line-height: 1.5; }
.biz .row p { color: rgba(255,255,255,0.68); }
.stu .row p { color: var(--text-soft); }
.compare-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 700; }
.biz .compare-cta { color: var(--gold); }
.stu .compare-cta { color: var(--purple); }
.compare-cta:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- industry badges ---------- */
.industries { display: flex; justify-content: center; gap: clamp(18px, 4vw, 54px); flex-wrap: wrap; }
.ind { text-align: center; width: 120px; }
.ind .bubble {
  width: 92px; height: 92px; margin: 0 auto 12px; border-radius: 50%;
  display: grid; place-items: center; font-size: 34px; color: #fff;
  box-shadow: var(--shadow); transition: transform 0.25s ease;
}
.ind:hover .bubble { transform: scale(1.08) rotate(-3deg); }
.ind .lbl { font-family: var(--display); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--navy); }
.on-dark .ind .lbl { color: #fff; }
.b-navy { background: var(--navy); } .b-green { background: #4E7A3C; } .b-teal { background: #2E6E62; }
.b-purple { background: var(--purple); } .b-orange { background: #C96A1B; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 26px 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 0; }
.step .n {
  counter-increment: step; width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold); display: grid; place-items: center;
  font-family: var(--display); font-size: 22px; font-weight: 600;
}
.step .n::before { content: counter(step); }
.step h3 { margin-bottom: 4px; }
.step p { color: var(--text-soft); font-size: 15.5px; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split .photo {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
}
.split .photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.photo .badge-float {
  position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,0.95);
  border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); font-size: 14.5px;
}
.photo .badge-float .dot { width: 38px; height: 38px; border-radius: 10px; background: var(--gold); display: grid; place-items: center; font-size: 18px; }

/* ---------- audience cards ---------- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.aud-card {
  position: relative; border-radius: 20px; overflow: hidden; color: #fff;
  min-height: 420px; display: flex; align-items: flex-end; box-shadow: var(--shadow-lg);
}
.aud-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.aud-card:hover .bg { transform: scale(1.05); }
.aud-card .tint { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,33,62,0.94) 15%, rgba(22,33,62,0.25) 65%); }
.aud-card.purple .tint { background: linear-gradient(to top, rgba(74,59,124,0.95) 15%, rgba(74,59,124,0.25) 65%); }
.aud-card .content { position: relative; z-index: 2; padding: 34px; }
.aud-card .content h3 { font-size: 30px; color: #fff; margin: 8px 0 10px; }
.aud-card .content p { color: rgba(255,255,255,0.85); font-size: 15.5px; margin-bottom: 20px; max-width: 400px; }
.aud-card .tag {
  font-family: var(--display); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.aud-card .go { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--gold); }
.aud-card .go .arr { transition: transform 0.25s ease; }
.aud-card:hover .go .arr { transform: translateX(6px); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; position: relative; padding: 8px 0; }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.chip {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; border-radius: 999px; padding: 12px 24px; font-weight: 600; font-size: 15px;
}
.chip .e { font-size: 18px; }

/* ---------- campus stats ---------- */
.campuses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.campus {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 30px 26px; text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.campus:hover { border-color: var(--gold); transform: translateY(-4px); }
.campus .abbr { font-family: var(--display); font-size: 30px; font-weight: 700; color: var(--gold); }
.campus .students { font-family: var(--display); font-size: 44px; font-weight: 600; color: #fff; line-height: 1.1; margin: 8px 0 2px; }
.campus .sub { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.campus.hl { border-color: var(--gold); background: rgba(255,184,28,0.10); position: relative; }
.campus.hl .pilot-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px;
}

/* ---------- checklist ---------- */
.checklist li {
  display: flex; gap: 14px; padding: 12px 0; font-size: 16px; align-items: flex-start;
  border-bottom: 1px dashed var(--line);
}
.checklist li:last-child { border-bottom: 0; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  background: var(--gold); color: var(--ink); display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
}
.on-dark .checklist li { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.88); }

/* ---------- form ---------- */
.form-card {
  background: var(--white); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 44px); color: var(--text);
}
.form-card h3, .on-dark .form-card h3 { font-size: 24px; margin-bottom: 6px; color: var(--navy); }
.form-note { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; }
.form-note .hub { color: var(--purple); font-weight: 700; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.f-field { display: flex; flex-direction: column; gap: 6px; }
.f-field.full { grid-column: 1 / -1; }
.f-field label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; }
.f-field input, .f-field select, .f-field textarea {
  font-family: var(--body); font-size: 15px; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--paper);
  transition: border-color 0.2s ease; outline: none; color: var(--text);
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--purple); background: #fff; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success .big { font-size: 44px; margin-bottom: 12px; }
.form-success h3 { color: var(--navy); }

/* ---------- ribbon CTA ---------- */
.ribbon { text-align: center; }
.ribbon h2 { margin: 14px 0 18px; }
.ribbon .btn { margin-top: 12px; }

/* ---------- footer ---------- */
footer.site {
  background: var(--ink); color: rgba(255,255,255,0.7); padding: 60px 0 30px; font-size: 14px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
.foot-brand img { height: 36px; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 14px; }
.foot-brand p { max-width: 280px; }
footer h4 {
  font-family: var(--display); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
footer li { margin-bottom: 10px; }
footer a:hover { color: #fff; }
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px; padding: 9px 16px; font-weight: 600; color: #fff; font-size: 13px;
  transition: border-color 0.2s ease;
}
.store:hover { border-color: var(--gold); }
.foot-base {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.proto-tag {
  display: inline-block; background: rgba(255,184,28,0.15); color: var(--gold);
  border-radius: 6px; padding: 2px 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; } .reveal.d4 { transition-delay: 0.4s; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .split, .audience, .campuses { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav .btn { display: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .f-row { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat { padding-right: 24px; margin-right: 24px; }
  .foot-grid { grid-template-columns: 1fr; }
}
