/* ============================================================================
   IT Coach (itcoach.az) — isti, enerjili kodlama akademiyası
   Outfit + Plus Jakarta + JetBrains Mono · warm coral→pink→grape palitra
   ========================================================================== */

:root {
    --bg:      #FFFBF8;
    --bg-2:    #FFF3EC;
    --surface: #FFFFFF;
    --ink:     #1B1024;
    --muted:   #6B5E6E;
    --faint:   #9A8F9C;
    --border:  rgba(27, 16, 36, 0.10);
    --border-2:rgba(27, 16, 36, 0.16);

    /* Brend vurğuları */
    --coral: #FF5C39;
    --amber: #FF9E1A;
    --pink:  #FF3D8B;
    --grape: #8B5CF6;
    --grad:  linear-gradient(120deg, #FF5C39 0%, #FF3D8B 55%, #8B5CF6 100%);
    --grad-warm: linear-gradient(120deg, #FF9E1A, #FF5C39);

    /* Kurs accent default (data-accent ilə dəyişir) */
    --acc: #FF5C39; --acc2: #FF3D8B;

    --shadow-card: 0 1px 2px rgba(27,16,36,0.04), 0 16px 36px -22px rgba(27,16,36,0.22);
    --shadow-soft: 0 10px 30px -16px rgba(27,16,36,0.16);

    --display: "Outfit", system-ui, sans-serif;
    --body:    "Plus Jakarta Sans", system-ui, sans-serif;
    --mono:    "JetBrains Mono", ui-monospace, monospace;

    --radius: 20px; --radius-sm: 13px;
    --maxw: 1140px; --gutter: clamp(20px, 5vw, 46px);
}

[data-accent="coral"] { --acc: #FF5C39; --acc2: #FF3D8B; }
[data-accent="amber"] { --acc: #FF9E1A; --acc2: #FF5C39; }
[data-accent="grape"] { --acc: #8B5CF6; --acc2: #FF3D8B; }
[data-accent="pink"]  { --acc: #FF3D8B; --acc2: #8B5CF6; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.62; -webkit-font-smoothing: antialiased; overflow-x: hidden; position: relative; }
body::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(46% 38% at 84% -6%, rgba(255,92,57,0.10), transparent 60%),
        radial-gradient(40% 34% at 4% 2%, rgba(139,92,246,0.08), transparent 60%); }
body > * { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(255,92,57,0.18); }

/* Tipoqrafiya */
h1, h2, h3 { font-family: var(--display); line-height: 1.06; letter-spacing: -0.02em; margin: 0; font-weight: 700; color: var(--ink); }
.eyebrow { font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 9px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 3px; background: var(--grad); }
.section-title { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; }
.section-sub { color: var(--muted); margin: 12px 0 0; max-width: 54ch; font-size: 1.05rem; }

/* Düymələr */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: .98rem; padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease; line-height: 1; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -10px rgba(255,61,139,0.6); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(255,61,139,0.7); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-soft); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--coral); color: var(--coral); }
.btn--sm { padding: 9px 16px; font-size: .9rem; }
.btn--block { width: 100%; justify-content: center; }

/* Header / nav */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(150%) blur(14px); background: rgba(255,251,248,0.8); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--grad); color: #fff; font-family: var(--mono); font-size: .72rem; font-weight: 700; box-shadow: 0 6px 16px -6px rgba(255,61,139,0.6); }
.nav-menu { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 24px); }
.nav-menu a:not(.lang-switch):not(.btn) { font-weight: 500; font-size: .95rem; color: var(--muted); transition: color .15s; }
.nav-menu a:not(.lang-switch):not(.btn):hover { color: var(--ink); }
.nav-ext { color: var(--coral) !important; font-weight: 600 !important; }
.lang-switch { font-family: var(--mono); font-weight: 700; font-size: .78rem; border: 1.5px solid var(--border-2); border-radius: 999px; padding: 6px 11px !important; color: var(--ink) !important; }
.lang-switch:hover { border-color: var(--coral); color: var(--coral) !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 23px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero { position: relative; padding: clamp(68px, 11vw, 130px) 0 clamp(40px, 6vw, 64px); overflow: hidden; }
.aurora { position: absolute; inset: -25% -10% auto 16%; height: 120%; z-index: 0; filter: blur(66px); opacity: .7; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; }
.aurora .a1 { width: 40vw; height: 40vw; left: 48%; top: -6%; background: radial-gradient(circle, rgba(255,92,57,0.8), transparent 68%); }
.aurora .a2 { width: 34vw; height: 34vw; left: 66%; top: 8%; background: radial-gradient(circle, rgba(255,61,139,0.7), transparent 68%); }
.aurora .a3 { width: 28vw; height: 28vw; left: 40%; top: 0; background: radial-gradient(circle, rgba(139,92,246,0.6), transparent 66%); }
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-title { font-size: clamp(2.5rem, 6.6vw, 4.6rem); font-weight: 800; margin: 20px 0 0; letter-spacing: -0.035em; line-height: 1.04; }
.hero-sub { font-size: clamp(1.06rem, 2vw, 1.28rem); color: var(--muted); margin: 22px 0 0; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

/* Stats */
.stats-row { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(40px, 6vw, 64px); padding-top: 28px; border-top: 1px solid var(--border); }
.stat-box { display: flex; flex-direction: column; gap: 4px; }
.stat-k { font-family: var(--display); font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-v { color: var(--muted); font-size: .92rem; }

/* Sections */
.section { padding: clamp(54px, 8vw, 104px) 0; position: relative; }
.section-head { margin-bottom: 42px; }
.section--why { background: linear-gradient(180deg, var(--bg-2), transparent 55%); border-block: 1px solid var(--border); }

/* Kurs qalereyası */
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.course-card { position: relative; display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-card); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.course-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--acc), var(--acc2)); }
.course-card:hover { transform: translateY(-7px); box-shadow: 0 30px 60px -28px color-mix(in srgb, var(--acc) 55%, transparent); border-color: color-mix(in srgb, var(--acc) 35%, transparent); }
.course-top { display: flex; align-items: center; justify-content: space-between; }
.course-ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--acc), var(--acc2)); box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--acc) 60%, transparent); }
.course-ic svg { width: 26px; height: 26px; }
.course-soon { font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in srgb, var(--acc) 80%, #000); background: color-mix(in srgb, var(--acc) 14%, transparent); border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent); padding: 5px 10px; border-radius: 999px; }
.course-title { font-size: 1.45rem; font-weight: 700; margin-top: 4px; }
.course-tagline { color: var(--ink); opacity: .82; margin: 0; font-size: 1.02rem; }
.course-meta { font-family: var(--mono); font-size: .76rem; color: var(--muted); display: flex; gap: 8px; align-items: center; margin-top: 2px; }
.course-meta .dot { opacity: .5; }
.course-cta { font-family: var(--display); font-weight: 600; color: var(--acc); margin-top: 8px; display: inline-flex; gap: 7px; transition: gap .15s; }
.course-card:hover .course-cta { gap: 11px; }

/* Niyə */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-cell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-card); }
.why-no { font-family: var(--mono); font-weight: 700; font-size: 1rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why-cell h3 { font-size: 1.18rem; margin: 12px 0 8px; font-weight: 700; }
.why-cell p { color: var(--muted); margin: 0; font-size: .96rem; }

/* Necə işləyir */
.how-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: h; }
.how-step { position: relative; padding-top: 14px; }
.how-no { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.1rem; box-shadow: 0 10px 22px -8px rgba(255,61,139,0.5); }
.how-step h3 { font-size: 1.22rem; margin: 16px 0 8px; font-weight: 700; }
.how-step p { color: var(--muted); margin: 0; }

/* Studiya bandı */
.section--studio { }
.studio-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; background: var(--ink); color: #fff; border-radius: calc(var(--radius) + 6px); padding: clamp(30px, 5vw, 50px); position: relative; overflow: hidden; }
.studio-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 130% at 90% 10%, rgba(255,92,57,0.4), transparent 55%); pointer-events: none; }
.studio-band > * { position: relative; z-index: 1; }
.studio-title { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; }
.studio-sub { color: rgba(255,255,255,0.82); margin: 8px 0 0; max-width: 52ch; }
.studio-band .btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); }
.studio-band .btn--ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); color: #fff; }

/* Waitlist */
.section--waitlist { background: linear-gradient(180deg, var(--bg-2), transparent 60%); border-block: 1px solid var(--border); }
.waitlist-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 72px); align-items: start; }
.waitlist-intro { position: sticky; top: 100px; }
.waitlist-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-card); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--display); font-weight: 600; font-size: .92rem; }
.field input, .field select { font-family: var(--body); font-size: 1rem; color: var(--ink); padding: 13px 15px; border: 1.5px solid var(--border-2); border-radius: var(--radius-sm); background: var(--bg); transition: border-color .15s, box-shadow .15s, background .15s; }
.field input:focus, .field select:focus { border-color: var(--coral); background: #fff; outline: none; box-shadow: 0 0 0 4px rgba(255,92,57,0.13); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { padding: 12px 16px; border-radius: var(--radius-sm); margin: 0 0 18px; font-size: .95rem; border: 1px solid var(--border); }
.form-note--ok { background: rgba(34,197,94,0.1); color: #15803d; border-color: rgba(34,197,94,0.3); }
.form-note--err { background: rgba(255,61,139,0.08); color: #be185d; border-color: rgba(255,61,139,0.3); }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(30px, 6vw, 72px); align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); border-radius: 12px; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item[open] { background: linear-gradient(180deg, rgba(255,92,57,0.05), transparent 80%); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; padding: 22px 14px 22px 6px; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; display: grid; place-items: center; width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--border-2); color: var(--coral); font-size: 1.25rem; transition: transform .25s ease, background .2s, border-color .2s, color .2s; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); background: var(--grad); border-color: transparent; color: #fff; }
.faq-a { padding: 0 14px 24px 6px; color: var(--muted); max-width: 64ch; line-height: 1.65; }

/* Kurs detal səhifəsi */
.section--course-head { position: relative; overflow: hidden; padding-top: clamp(48px, 7vw, 80px); border-bottom: 1px solid var(--border); }
.aurora--course { inset: -40% -10% auto 30%; opacity: .5; }
.aurora--course .a1 { background: radial-gradient(circle, color-mix(in srgb, var(--acc) 70%, transparent), transparent 68%); }
.aurora--course .a2 { background: radial-gradient(circle, color-mix(in srgb, var(--acc2) 60%, transparent), transparent 68%); }
.course-narrow { max-width: 820px; position: relative; z-index: 2; }
.back-link { font-family: var(--mono); font-size: .82rem; color: var(--acc); }
.course-soon--head { display: inline-block; margin: 18px 0 0; }
.course-h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; margin: 12px 0 0; }
.course-lead { font-size: 1.2rem; color: var(--muted); margin: 16px 0 24px; max-width: 60ch; }
.course-facts { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 28px; }
.course-facts > div { display: flex; flex-direction: column; gap: 3px; }
.cf-k { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); }
.cf-v { font-family: var(--display); font-weight: 600; }
.course-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.block-title { font-size: 1.4rem; font-weight: 700; margin: 0 0 18px; }
.course-main .block-title:not(:first-child) { margin-top: 40px; }
.program-count { font-family: var(--mono); font-size: .76rem; font-weight: 500; color: var(--acc); margin-left: 10px; vertical-align: middle; }
.learn-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.learn-list li { display: flex; gap: 12px; color: var(--ink); }
.tick { display: grid; place-items: center; width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, var(--acc), var(--acc2)); color: #fff; font-size: .72rem; font-weight: 700; }
.module-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.module-list li { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--border); font-family: var(--display); font-weight: 600; }
.module-list li:last-child { border-bottom: 1px solid var(--border); }
.mod-no { font-family: var(--mono); color: var(--acc); font-weight: 700; }
.course-aside { position: sticky; top: 100px; }
.aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.aside-card h3 { font-size: 1.15rem; margin: 0 0 10px; }
.aside-card p { color: var(--muted); margin: 0 0 20px; }

.notfound { text-align: center; }
.notfound-code { font-family: var(--display); font-size: clamp(5rem, 18vw, 11rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: .9; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: clamp(44px,6vw,66px) 0 30px; background: var(--bg-2); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-brand { font-family: var(--display); font-size: 1.4rem; font-weight: 700; }
.footer-tag { color: var(--muted); margin: 8px 0 10px; max-width: 36ch; }
.footer-studio { font-family: var(--mono); font-size: .82rem; color: var(--coral); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: .95rem; }
.footer-links a:hover { color: var(--coral); }
.footer-base { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); font-family: var(--mono); font-size: .78rem; color: var(--faint); }

/* 5-ci accent + pillə nömrəsi */
[data-accent="blue"] { --acc: #3B82F6; --acc2: #06B6D4; }
.course-step { font-family: var(--mono); font-weight: 700; color: var(--acc); }

/* Daxili səhifə başlıq boşluğu */
.section--page { padding-top: clamp(54px, 8vw, 90px); }

/* ── İnstruktor səhifəsi ───────────────────────────────────────────────────── */
.section--ins-head { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); padding-top: clamp(50px, 7vw, 84px); }
.ins-head { position: relative; z-index: 2; display: flex; gap: clamp(22px, 4vw, 40px); align-items: center; flex-wrap: wrap; }
.ins-avatar { flex-shrink: 0; display: grid; place-items: center; width: 120px; height: 120px; border-radius: 28px; background: var(--grad); color: #fff; font-family: var(--display); font-weight: 800; font-size: 2.6rem; box-shadow: 0 20px 44px -18px rgba(255,61,139,0.6); }
.ins-name { font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin: 10px 0 0; }
.ins-role { font-family: var(--mono); color: var(--coral); font-size: .9rem; margin: 6px 0 0; }
.ins-lead { font-size: 1.18rem; color: var(--muted); margin: 14px 0 22px; max-width: 56ch; }
.ins-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.ins-bio { font-size: 1.08rem; line-height: 1.7; color: var(--ink); margin: 0 0 36px; }
.ins-exp { display: grid; gap: 0; margin-bottom: 36px; }
.exp-row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--border); }
.exp-row:last-child { border-bottom: 1px solid var(--border); }
.exp-period { font-family: var(--mono); font-size: .78rem; color: var(--coral); }
.exp-row strong { display: block; font-weight: 700; }
.exp-company { color: var(--muted); font-size: .92rem; }
.skill-groups { display: grid; gap: 18px; }
.skill-group { display: grid; grid-template-columns: 130px 1fr; gap: 14px; align-items: start; }
.skill-label { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); padding-top: 6px; }
.skill-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: .82rem; font-weight: 500; padding: 6px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--ink); }
.ins-aside { position: sticky; top: 100px; }

/* İki instruktorlu quruluş */
.ins-head--person { margin-bottom: 34px; }
.ins-avatar--sm { width: 92px; height: 92px; border-radius: 22px; font-size: 2rem; }
.ins-name--sm { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 0; }
.ins-lead--tight { margin-bottom: 0; font-size: 1.06rem; }
.section--person + .section--person { border-top: 1px solid var(--border); }
/* Aside dar olduğu üçün bacarıq qrupları alt-alta düzülür */
.skill-groups--aside .skill-group { grid-template-columns: 1fr; gap: 6px; }
.skill-groups--aside .skill-label { padding-top: 0; }
.aside-card--wide { max-width: 760px; }
.teach-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.teach-list li { display: flex; gap: 12px; color: var(--ink); font-size: .96rem; }
.aside-prereq { font-size: .9rem; color: var(--muted); margin: 0 0 18px; padding-top: 14px; border-top: 1px solid var(--border); }
.aside-prereq-k { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); display: block; margin-bottom: 4px; }

/* ── Bloq ──────────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.post-card { position: relative; display: flex; flex-direction: column; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-card); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -28px rgba(255,92,57,0.4); border-color: rgba(255,92,57,0.3); }
.post-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--grad); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-bottom: 6px; }
.post-date { font-family: var(--mono); font-size: .72rem; color: var(--coral); letter-spacing: .04em; }
.post-date--lead { display: block; margin: 22px 0 0; }
.post-card-title { font-size: 1.22rem; font-weight: 700; line-height: 1.25; }
.post-card-excerpt { color: var(--muted); margin: 0; flex: 1; font-size: .95rem; }
.post-narrow { max-width: 720px; }
.post-body { margin: 26px 0; font-size: 1.08rem; line-height: 1.75; color: var(--ink); }
.post-body p { margin: 0 0 20px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsiv */
@media (max-width: 900px) {
    .stats-row, .why-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; }
    .waitlist-wrap, .faq-wrap, .course-body, .ins-grid { grid-template-columns: 1fr; }
    .waitlist-intro, .faq-intro, .course-aside, .ins-aside { position: static; }
    .ins-head { gap: 20px; }
    .skill-group { grid-template-columns: 1fr; gap: 8px; }
    .skill-label { padding-top: 0; }
}
@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    .nav-menu { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 6px; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px var(--gutter) 24px; transform: translateY(-130%); transition: transform .25s ease; }
    .nav-menu.open { transform: translateY(0); }
    .course-grid, .stats-row, .why-grid, .blog-grid { grid-template-columns: 1fr; }
    .exp-row { grid-template-columns: 1fr; gap: 4px; }
    .studio-band, .waitlist-wrap { }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
