/* GraphixPro — Design & AI Academy */

:root {
  --purple: #6B2BE2;
  --purple-deep: #4A1AAB;
  --magenta: #E91E63;
  --blue: #3FB8E0;
  --orange: #F6A22A;
  --bg: #0A0A0F;
  --bg-soft: #12121C;
  --surface: #1A1A26;
  --line: rgba(255,255,255,0.08);
  --text: #F5F5F7;
  --text-mute: rgba(245,245,247,0.62);
  --text-dim: rgba(245,245,247,0.42);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Typography */
.display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.h-xl { font-size: clamp(48px, 8vw, 128px); }
.h-lg { font-size: clamp(36px, 5vw, 72px); }
.h-md { font-size: clamp(28px, 3.5vw, 48px); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.gradient-text {
  background: linear-gradient(120deg, var(--purple) 0%, var(--magenta) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.italic-accent { font-style: italic; font-weight: 400; color: var(--magenta); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(10,10,15,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 38px; width: auto; }
.logo-text { display: none; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 14px; color: var(--text-mute); transition: color .2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px;
  background: var(--magenta); border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #1a0c00;
  box-shadow: 0 6px 26px rgba(246,162,42,0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(246,162,42,0.5); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.btn-magenta {
  background: var(--magenta);
  color: white;
  box-shadow: 0 6px 26px rgba(233,30,99,0.32);
}
.btn-magenta:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(233,30,99,0.5); }

.btn-arrow::after { content: '→'; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

.lang-curr {
  display: flex; align-items: center; gap: 8px;
}
.lang-curr select {
  background: transparent;
  color: var(--text-mute);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
}
.lang-curr select:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); position: relative; }
.hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text);
  transition: transform .3s;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: none;
  flex-direction: column;
  padding: 100px 28px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 32px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-nav .owl-peek { position: absolute; right: -40px; bottom: 20px; width: 240px; opacity: 0.4; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.broll {
  position: relative;
  height: 70vh; min-height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
}
.broll video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.broll-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.4) 60%, transparent 100%);
  pointer-events: none;
}
.broll-text { position: relative; z-index: 2; max-width: 640px; }
.broll-text p { color: var(--text-mute); font-size: 18px; margin-top: 14px; }
@media (max-width: 980px) { .broll { height: auto; padding: 80px 0; min-height: 0; } .broll-tint { background: linear-gradient(180deg, rgba(10,10,15,0.7), rgba(10,10,15,0.85)); } }

.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.55), rgba(10,10,15,0.78)),
    radial-gradient(circle at 25% 30%, rgba(107,43,226,0.32), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(233,30,99,0.24), transparent 55%);
  pointer-events: none;
}
.hero.has-video .hero-bg { display: none; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(107,43,226,0.35), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(233,30,99,0.28), transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(63,184,224,0.18), transparent 60%);
  pointer-events: none;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title { margin-bottom: 32px; }
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-mute);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-owl {
  position: absolute;
  right: 4%; top: 50%; transform: translateY(-50%);
  width: clamp(260px, 30vw, 460px);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 30px 60px rgba(63,184,224,0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 14px)); }
}

.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,15,0.4);
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-mute);
  display: flex; align-items: center; gap: 60px;
}
.marquee-track span::after {
  content: '✦';
  color: var(--magenta);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Workshop pill */
.workshop-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 12px 10px 20px;
  background: rgba(246,162,42,0.1);
  border: 1px solid rgba(246,162,42,0.32);
  border-radius: 999px;
  font-size: 13px;
  margin-top: 28px;
}
.workshop-pill .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange);
}
.workshop-pill .date { color: var(--text); font-weight: 600; }
.workshop-pill .reserve {
  background: var(--orange); color: #1a0c00;
  padding: 6px 14px; border-radius: 999px;
  font-weight: 600; font-size: 12px;
}

/* Sections */
section { padding: 120px 0; position: relative; }
.section-head { margin-bottom: 64px; max-width: 760px; }
.section-head .eyebrow { margin-bottom: 20px; }

/* About */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: start;
}
.about-text p { color: var(--text-mute); font-size: 17px; margin-bottom: 18px; }
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.aud-tile {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .25s, border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.aud-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(233,30,99,0.5);
  background: linear-gradient(135deg, var(--surface), rgba(233,30,99,0.06));
}
.aud-tile .icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  margin-bottom: 14px;
  font-size: 18px;
}
.aud-tile .label { font-weight: 600; font-size: 15px; }

/* Skills section */
.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 56px;
}
.skill-card {
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.skill-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(107,43,226,0.18), transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.skill-card:hover { transform: translateY(-6px); border-color: rgba(107,43,226,0.5); }
.skill-card:hover::before { opacity: 1; }
.skill-card > * { position: relative; }
.skill-card .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; color: var(--text-dim);
  margin-bottom: 32px;
}
.skill-card h3 { font-size: 24px; margin-bottom: 14px; font-family: 'Space Grotesk', sans-serif; }
.skill-card p { color: var(--text-mute); font-size: 15px; }

/* Courses */
.courses-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.course-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.course-card.has-cover { padding: 0; }
.course-card-cover {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.course-card-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,38,0.85));
}
.course-card.has-cover > .tag,
.course-card.has-cover > h3,
.course-card.has-cover > .desc,
.course-card.has-cover > .course-meta,
.course-card.has-cover > .fee-row { padding-left: 36px; padding-right: 36px; }
.course-card.has-cover > .tag { margin-top: 32px; }
.course-card.has-cover > .fee-row { padding-bottom: 36px; }
.course-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(63,184,224,0.18), transparent 70%);
  pointer-events: none;
}
.course-card:hover { transform: translateY(-4px); border-color: rgba(63,184,224,0.5); }
.course-card .tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  padding: 6px 12px; border: 1px solid rgba(246,162,42,0.32);
  border-radius: 999px; margin-bottom: 24px;
}
.course-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; margin-bottom: 16px;
}
.course-card .desc { color: var(--text-mute); margin-bottom: 28px; min-height: 68px; }
.course-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; padding-top: 20px; border-top: 1px dashed var(--line); }
.meta-item .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); display: block; margin-bottom: 4px; }
.meta-item .value { font-weight: 600; font-size: 15px; }
.fee-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.fee {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px; font-weight: 700;
  background: linear-gradient(120deg, var(--purple), var(--magenta));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.adobe-cert {
  margin-top: 22px;
  padding: 26px 32px;
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.adobe-cert h4 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin-bottom: 4px; }
.adobe-cert p { color: var(--text-mute); font-size: 14px; }
.adobe-cert .price { font-weight: 700; font-size: 20px; }

/* Faculty teaser */
.faculty-teaser {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 80px; align-items: center;
}
.faculty-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.faculty-photo img { width: 100%; height: 100%; object-fit: cover; }
.faculty-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.6));
}
.faculty-photo .badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--magenta); color: white;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.faculty-info ul { list-style: none; margin: 32px 0; }
.faculty-info li {
  padding: 14px 0; color: var(--text-mute);
  border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
}
.faculty-info li::before {
  content: '✦'; color: var(--magenta); flex-shrink: 0; margin-top: 2px;
}

/* CTA strip */
.cta-strip {
  padding: 100px 0;
  background: linear-gradient(120deg, rgba(107,43,226,0.18), rgba(233,30,99,0.18));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.cta-strip-inner { position: relative; text-align: center; }
.cta-strip h2 { margin-bottom: 18px; }
.cta-strip p { color: var(--text-mute); margin-bottom: 32px; font-size: 18px; }

/* Footer */
.site-footer {
  background: var(--bg-soft);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-mute); font-size: 14px; max-width: 260px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-mute); font-size: 14px; }
.footer-col a:hover { color: var(--text); }

.newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  margin-bottom: 12px;
}
.newsletter input:focus { outline: none; border-color: var(--magenta); }
.newsletter button { width: 100%; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--text-dim);
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.footer-socials a:hover { border-color: var(--magenta); background: rgba(233,30,99,0.08); }
.footer-socials svg { width: 16px; height: 16px; }

/* Register modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,10,0.78);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  padding: 44px;
  position: relative;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.modal h2 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; margin-bottom: 8px; }
.modal .sub { color: var(--text-mute); margin-bottom: 26px; font-size: 14px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color .2s;
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--magenta);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14px; }
.form-msg.success { background: rgba(63,184,224,0.1); border: 1px solid rgba(63,184,224,0.4); }
.form-msg.error { background: rgba(233,30,99,0.1); border: 1px solid rgba(233,30,99,0.4); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Page header (inner pages) */
.page-header {
  padding: 180px 0 80px;
  position: relative;
  background:
    radial-gradient(circle at 30% 50%, rgba(107,43,226,0.28), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(233,30,99,0.20), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-top: 22px; }
.page-header p { color: var(--text-mute); margin-top: 22px; max-width: 720px; font-size: 18px; }

/* Blog */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(233,30,99,0.45); }
.blog-cover {
  aspect-ratio: 16/10; position: relative;
  display: flex; align-items: flex-end; padding: 22px;
}
.blog-cover .cat {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: white; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.blog-cover::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}
.blog-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px; line-height: 1.25; margin-bottom: 12px;
}
.blog-body .ex { color: var(--text-mute); font-size: 14px; flex: 1; }
.blog-body .meta { display: flex; gap: 14px; margin-top: 18px; font-size: 12px; color: var(--text-dim); }

.post-content {
  max-width: 760px; margin: 0 auto;
}
.post-content p { font-size: 18px; line-height: 1.7; color: var(--text-mute); margin-bottom: 22px; }
.post-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; margin: 50px 0 22px; color: var(--text);
}
.post-content ul, .post-content ol { margin: 0 0 22px 22px; color: var(--text-mute); font-size: 17px; }
.post-content li { margin-bottom: 10px; line-height: 1.65; }
.post-content blockquote {
  border-left: 3px solid var(--magenta);
  padding: 14px 22px;
  margin: 22px 0;
  background: rgba(233,30,99,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-style: italic;
}
.post-content strong { color: var(--text); }

.post-hero {
  padding: 160px 0 60px;
  position: relative;
}
.post-hero .cover-bg {
  position: absolute; inset: 0; opacity: 0.7;
}
.post-hero .cover-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, var(--bg) 90%);
}
.post-hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.post-hero .post-meta { display: flex; gap: 14px; color: var(--text-mute); font-size: 14px; margin-top: 22px; }

/* Admin */
.admin-shell {
  min-height: 100vh; padding: 120px 0;
  background: var(--bg-soft);
}
.admin-card {
  max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px;
}

/* 404 */
.notfound {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 28px; text-align: center;
}
.notfound img { width: 220px; opacity: 0.75; margin-bottom: 30px; transform: rotate(-8deg); }
.notfound h1 { font-size: clamp(72px, 12vw, 160px); }
.notfound p { color: var(--text-mute); margin: 16px 0 30px; font-size: 18px; }

/* Inner-page sections */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.two-col h2 { margin-bottom: 22px; }
.two-col p { color: var(--text-mute); font-size: 17px; margin-bottom: 16px; }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 40px 0 0;
}
.stat {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 700;
  background: linear-gradient(120deg, var(--purple), var(--magenta));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lab { font-size: 13px; color: var(--text-mute); margin-top: 6px; }

.timeline {
  margin-top: 40px; position: relative; padding-left: 24px;
}
.timeline::before {
  content: ''; position: absolute; left: 4px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--purple), var(--magenta), var(--orange));
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 0 4px rgba(233,30,99,0.18);
}
.timeline-item .yr { font-family: 'Space Grotesk', sans-serif; color: var(--orange); font-size: 14px; letter-spacing: 0.1em; }
.timeline-item h4 { font-size: 18px; margin: 4px 0 6px; }
.timeline-item p { color: var(--text-mute); font-size: 14px; }

.logos-strip {
  display: flex; flex-wrap: wrap; gap: 18px 36px;
  align-items: center; margin-top: 32px;
}
.logos-strip .net {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; color: var(--text-mute);
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  transition: color .2s, border-color .2s;
}
.logos-strip .net:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
.contact-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s;
}
.contact-card:hover { border-color: rgba(233,30,99,0.4); transform: translateY(-3px); }
.contact-card .pin {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 22px;
}
.contact-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; margin-bottom: 12px; }
.contact-card .addr { color: var(--text-mute); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.contact-card .map-link { color: var(--blue); font-size: 13px; text-decoration: underline; }

.quick-contacts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 40px;
}
.qc {
  padding: 26px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 18px;
}
.qc .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(246,162,42,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.qc .lab { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.qc .val { font-weight: 600; font-size: 15px; }

.workshop-card {
  background: linear-gradient(120deg, rgba(246,162,42,0.12), rgba(233,30,99,0.10));
  border: 1px solid rgba(246,162,42,0.32);
  border-radius: var(--radius);
  padding: 44px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  margin-top: 28px;
}
.workshop-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; margin-bottom: 12px; }
.workshop-card p { color: var(--text-mute); margin-bottom: 18px; }
.workshop-card .ws-meta { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 20px; }

/* Responsive */
@media (max-width: 980px) {
  section { padding: 80px 0; }
  .nav, .lang-curr { display: none; }
  .hamburger { display: inline-flex; }
  .about-grid, .faculty-teaser { grid-template-columns: 1fr; gap: 40px; }
  .courses-grid, .skills-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-owl { display: none; }
  .two-col, .contact-grid, .workshop-card { grid-template-columns: 1fr; gap: 40px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .quick-contacts { grid-template-columns: 1fr; }
  .workshop-card { padding: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (min-width: 561px) and (max-width: 980px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .modal { padding: 30px 22px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .adobe-cert { flex-direction: column; align-items: flex-start; }
}

/* ─── FREE WORKSHOP CARD ─────────────────────────────────── */
.free-workshop-card {
  background: var(--surface);
  border: 1px solid rgba(107,43,226,0.28);
  border-radius: var(--radius);
  overflow: hidden;
}
.fw-header {
  padding: 40px 40px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}
.fw-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  padding: 6px 14px;
  border: 1px solid rgba(233,30,99,0.4);
  border-radius: 999px;
  background: rgba(233,30,99,0.06);
}
.fw-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.fw-topic {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
}
.fw-topic:last-child { border-right: 0; }
.fw-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
  font-weight: 700;
}
.fw-topic h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.fw-topic p { font-size: 14px; color: var(--text-mute); line-height: 1.6; }

.fw-dates-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 40px;
  flex-wrap: wrap;
}
.fw-dates {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}
.fw-date-chip {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}
.fw-date-chip .day {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 4px;
}
.fw-date-chip .full { font-size: 13px; color: var(--text-mute); }
.fw-time-fee { text-align: center; }
.fw-time-fee .time { font-size: 14px; color: var(--text-mute); margin-bottom: 4px; }
.fw-time-fee .fee-free {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--magenta);
}

@media (max-width: 860px) {
  .fw-topics { grid-template-columns: 1fr; }
  .fw-topic { border-right: 0; border-bottom: 1px solid var(--line); }
  .fw-topic:last-child { border-bottom: 0; }
  .fw-dates-row { flex-direction: column; align-items: flex-start; }
  .fw-header { padding: 28px 24px; }
}
@media (max-width: 560px) {
  .fw-header, .fw-topic, .fw-dates-row { padding-left: 20px; padding-right: 20px; }
  .fw-dates { flex-direction: column; }
}

/* ─── GPAY / UPI BLOCK ───────────────────────────────────── */
.gpay-block { margin-top: 20px; }
.gpay-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.gpay-divider::before,
.gpay-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.gpay-divider span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.gpay-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.gpay-qr img, .gpay-qr-placeholder {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.gpay-details { flex: 1; }
.gpay-upi {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
  word-break: break-all;
}
.gpay-upi strong { color: var(--purple); }
.gpay-note { font-size: 12px; color: var(--text-dim); line-height: 1.6; }

/* ─── FREE WORKSHOP HOMEPAGE HERO ────────────────────────── */
.fw-hero-section {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fw-hero-section.has-img .fw-hero-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.fw-hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.7) 55%, rgba(107,43,226,0.35) 100%),
    linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.65) 100%);
  pointer-events: none;
}
.fw-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(233,30,99,0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(107,43,226,0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(63,184,224,0.18) 0%, transparent 50%);
}
.fw-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.fw-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.fw-hero-section.has-img .fw-hero-inner { grid-template-columns: 1fr; }

/* Badge */
.fw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(233,30,99,0.12);
  border: 1px solid rgba(233,30,99,0.35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 28px;
}
.dot-magenta {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* Title */
.fw-hero-title {
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
  margin-bottom: 28px;
}

/* Sub */
.fw-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-mute);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Topics row */
.fw-hero-topics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.fw-hero-topic {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.fw-hero-topic-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--magenta);
  background: rgba(233,30,99,0.12);
  border-radius: 999px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.fw-hero-topic-title { font-weight: 600; }
.fw-hero-topic-tools {
  font-size: 11px;
  color: var(--text-dim);
  padding-left: 4px;
  border-left: 1px solid var(--line);
}
/* info card tools line */
.fw-phc-tools {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  margin: 3px 0 5px;
}

/* Date chips */
.fw-hero-dates {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.fw-hero-date, .fw-hero-time {
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  min-width: 80px;
  text-align: center;
}
.fw-hero-date--link {
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  display: block;
}
.fw-hero-date--link:hover {
  background: rgba(233,30,99,0.12);
  border-color: rgba(233,30,99,0.45);
  transform: translateY(-3px);
}
.fw-hero-pick {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 700;
  margin-top: 6px;
  opacity: 0;
  transition: opacity .2s ease;
}
.fw-hero-date--link:hover .fw-hero-pick { opacity: 1; }
.fw-hero-day {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 6px;
}
.fw-hero-dnum {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.fw-hero-time { min-width: 140px; }
.fw-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Right card stack (shown when no hero image) */
.fw-hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fw-stack-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.fw-stack-card:hover { transform: translateX(6px); border-color: rgba(107,43,226,0.4); }
.fw-stack-card--1 { border-left: 3px solid var(--magenta); }
.fw-stack-card--2 { border-left: 3px solid var(--purple); margin-left: 16px; }
.fw-stack-card--3 { border-left: 3px solid var(--blue); margin-left: 32px; }
.fw-stack-num {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 6px;
}
.fw-stack-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 6px;
}
.fw-stack-desc { font-size: 13px; color: var(--text-mute); line-height: 1.5; }

/* ─── FREE WORKSHOP COURSES-PAGE HERO ────────────────────── */
.fw-page-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.fw-page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(233,30,99,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 20%, rgba(107,43,226,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 90%, rgba(63,184,224,0.14) 0%, transparent 50%);
}
.fw-page-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.fw-page-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.fw-page-hero-title {
  font-size: clamp(44px, 6.5vw, 100px);
  line-height: 0.95;
  margin: 20px 0 28px;
}
.fw-page-hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-mute);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Right info card on courses page */
.fw-page-hero-card {
  background: var(--surface);
  border: 1px solid rgba(107,43,226,0.3);
  border-radius: var(--radius);
  overflow: hidden;
}
.fw-phc-inner { padding: 28px; }
.fw-phc-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 20px; font-weight: 600;
}
.fw-phc-topic {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.fw-phc-topic:last-of-type { border-bottom: 0; }
.fw-phc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--magenta);
  min-width: 24px;
  padding-top: 2px;
}
.fw-phc-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.fw-phc-desc { font-size: 12px; color: var(--text-mute); line-height: 1.5; }
.fw-phc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.fw-phc-free {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--magenta);
}
.fw-phc-age { font-size: 13px; color: var(--text-mute); }

/* ─── RESPONSIVE overrides for fw heroes ─────────────────── */
@media (max-width: 980px) {
  .fw-hero-inner,
  .fw-page-hero-inner { grid-template-columns: 1fr; }
  .fw-hero-card-stack,
  .fw-page-hero-card { display: none; }
  .fw-page-hero { padding: 110px 0 60px; }
  /* Topics wrap on tablet */
  .fw-hero-topics { flex-wrap: wrap; }
}

/* ── MOBILE: make date chips proper tap targets ── */
@media (max-width: 760px) {
  .fw-hero-section { padding: 110px 0 80px; }

  /* Topics: stack to show tools text */
  .fw-hero-topics { flex-direction: column; gap: 8px; }
  .fw-hero-topic {
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    white-space: normal;
    flex-wrap: wrap;
  }
  .fw-hero-topic-tools { border-left: 0; padding-left: 0; display: block; width: 100%; margin-top: 2px; }

  /* Date chips: full-width button style */
  .fw-hero-dates {
    flex-direction: column;
    gap: 10px;
  }
  .fw-hero-date--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: rgba(233,30,99,0.08);
    border: 1px solid rgba(233,30,99,0.32);
    text-decoration: none;
    min-width: 0;
    width: 100%;
  }
  .fw-hero-date, .fw-hero-time {
    text-align: left;
    min-width: 0;
    padding: 0;
    background: none;
    border: none;
  }
  .fw-hero-time { display: none; } /* move time info elsewhere on mobile */
  .fw-hero-dnum { font-size: 17px; }
  .fw-hero-day { margin-bottom: 3px; }

  /* Always show the "Register" nudge on mobile */
  .fw-hero-pick {
    opacity: 1;
    font-size: 12px;
    background: var(--magenta);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    margin-top: 0;
  }
  .fw-hero-date--link:hover { transform: none; }
  .fw-hero-date--link:active { background: rgba(233,30,99,0.18); }

  /* Show time inline after dates */
  .fw-hero-dates::after {
    content: attr(data-time);
    display: block;
    font-size: 13px;
    color: var(--text-mute);
    padding: 4px 0 0 2px;
  }
}
