/* ============================================================
   AIPM ELEMENTS — shared structural rules
   Loaded AFTER the theme file (light or dark), so all var()
   references here resolve from whichever :root was set first.
   ============================================================ */

/* ---------- Social strip ---------- */
.social-strip {
    padding: 56px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}
.social-strip-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}
.social-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.3;
}
.social-stat strong {
    color: var(--white);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
}
.social-stat .yt {
    color: #FF0000;
    font-size: 18px;
    line-height: 1;
}
.social-stat .yt-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 26px;
    background: #FF0000;
    border-radius: 6px;
    flex-shrink: 0;
}
.social-stat .yt-box svg {
    width: 14px;
    height: 14px;
    fill: #FFFFFF;
}
.social-stat .star {
    color: #FBBF24;
    font-size: 22px;
    line-height: 1;
}
.social-stat .by-label {
    color: var(--gray-400);
    font-size: 16px;
    font-weight: 500;
}
.tool-image {
    max-width: 52px;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
p { margin-bottom: 0; }
ol, ul { padding-left: 0; }

/* ---------- Base elements ---------- */
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--gray-300);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
    padding-bottom: 76px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
hr.section-rule {
    border: 0 !important;
    border-top: 1px solid var(--line) !important;
    background-color: transparent !important;
    height: auto !important;
    opacity: 1 !important;
    margin: 0 !important;
}

/* ---------- Layout ---------- */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-y) 0; position: relative; overflow: hidden; }
.section--alt { background: var(--bg-2); }
.section-center { text-align: center; }

.glow-right::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 700px 400px at 78% 50%, rgba(59,130,246,0.07), transparent 70%);
    pointer-events: none;
}
.glow-center::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(59,130,246,0.08), transparent 70%);
    pointer-events: none;
}
.section > .wrap, .section > .wrap-narrow { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { color: var(--white); font-weight: 900; line-height: 1.08; letter-spacing: -0.025em; }
h1 { font-size: clamp(36px, 5.6vw, 68px); }
h2 { font-size: clamp(30px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.02em; }
h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }

.eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 20px;
}
.eyebrow-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px;
    border: 1px solid var(--blue-line);
    background: var(--blue-soft);
    border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 28px;
}
.eyebrow-pill .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 10px var(--blue);
    display: inline-block;
    animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--blue); }
    50% { opacity: 0.5; box-shadow: 0 0 14px var(--blue); }
}

.text-gradient-highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #2563EB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    padding-bottom: 0.08em;
    line-height: 1.15;
}
.lede {
    font-size: clamp(17px, 1.7vw, 22px);
    color: var(--gray-300);
    line-height: 1.55;
    font-weight: 400;
}
.small-meta { font-size: 13px; color: var(--gray-400); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-weight: 700; font-size: 15px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    white-space: nowrap;
    letter-spacing: -0.005em;
}
.btn-primary {
    background: var(--blue);
    color: #FFFFFF;
    box-shadow: 0 8px 28px rgba(59,130,246,0.32);
}
.btn-primary:hover {
    background: var(--blue-strong);
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(59,130,246,0.45);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--line-2);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-arrow::after { content: '→'; transition: transform .15s ease; font-weight: 600; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Nav (shared structure) ---------- */
.nav-row {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.brand {
    display: inline-flex; align-items: center;
    color: var(--white);
    transition: opacity .15s ease;
}
.brand:hover { opacity: 0.85; }
.brand svg, .brand img { height: 36px; width: auto; display: block; }
.nav-cta {
    height: 40px; padding: 0 18px;
    background: var(--blue);
    color: #FFFFFF;
    font-size: 14px; font-weight: 700;
    border-radius: var(--radius-pill);
    display: inline-flex; align-items: center; gap: 6px;
    transition: background .15s ease;
}
.nav-cta:hover { background: var(--blue-strong); }

/* ---------- Hero ---------- */
.hero {
    padding: 96px 0 72px;
    text-align: center;
    position: relative;
    background: var(--bg);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 800px 500px at 50% 0%, rgba(59,130,246,0.10), transparent 60%),
        radial-gradient(ellipse 600px 400px at 80% 80%, rgba(59,130,246,0.05), transparent 70%);
    pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero h1 { max-width: 1100px; margin: 0 auto 20px; }
.hero h1 br { display: block; }

.hero h1 .hero-h1-product {
    display: block;
    font-size: 1em;
    line-height: 1.06;
    margin-bottom: 18px;
}
.hero h1 .hero-h1-connector {
    display: block;
    font-size: 0.38em;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gray-400);
    margin-bottom: 8px;
    text-transform: none;
}
.hero h1 .hero-h1-audience {
    display: block;
    font-size: 0.64em;
    line-height: 1.12;
    font-weight: 800;
}
@media (max-width: 720px) {
    .hero h1 .hero-h1-connector { font-size: 13px; margin-bottom: 6px; }
    .hero h1 .hero-h1-audience { font-size: 0.78em; }
    .hero h1 .hero-h1-product { margin-bottom: 12px; }
}
.hero .lede { max-width: 640px; margin: 0 auto 28px; }

.hero-spec strong { color: var(--white); font-weight: 700; }
.hero-spec .dot { color: var(--gray-500); }

/* ---------- IC Strip (shared sub-rules) ---------- */
.ic-tier {
    padding: 22px 26px;
    position: relative;
}
.ic-tier--inner {
    border-right: 1px solid var(--line);
}
.ic-tier--inner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--blue);
}
.ic-tier-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
}
.ic-tier-price-row {
    display: flex; align-items: baseline; gap: 10px;
    margin-bottom: 8px;
}
.ic-tier-price {
    font-size: 30px; font-weight: 800;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1;
}
.ic-tier-meta strong { color: var(--white); font-weight: 700; }
.ic-tier--standard .ic-tier-price-row { margin-bottom: 0; }
.ic-tier--standard .ic-tier-meta {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 12px;
}

.hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
}
.hero-save-line {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}
.hero-save-line strong {
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 0.02em;
}
.hero-meta-links {
    display: flex; gap: 28px;
    justify-content: center; flex-wrap: wrap;
    margin-top: 20px;
}
.hero-meta-links a {
    color: var(--gray-400);
    font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color .15s ease;
}
.hero-meta-links a:hover { color: var(--blue); }
.hero-meta-links svg { width: 14px; height: 14px; }

/* ---------- Thumbnail placeholder ---------- */
.thumb-placeholder {
    max-width: 760px;
    margin: 48px auto 0;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    border: 1.5px dashed rgba(59,130,246,0.35);
    background: linear-gradient(180deg, rgba(59,130,246,0.04) 0%, rgba(59,130,246,0.08) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.thumb-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 500px 300px at 50% 50%, rgba(59,130,246,0.10), transparent 70%);
    pointer-events: none;
}
.thumb-placeholder-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
}
.thumb-placeholder-icon svg { width: 28px; height: 28px; }
.thumb-placeholder-label {
    font-size: 13px;
    color: var(--gray-400);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}
.thumb-placeholder-sub {
    font-size: 12px;
    color: var(--gray-500);
    max-width: 380px;
    text-align: center;
    line-height: 1.5;
}

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { margin: 0 auto 16px; }
.section-head p { color: var(--gray-300); font-size: 18px; line-height: 1.6; max-width: 600px; margin: 0 auto; }

/* ---------- Promise stats ---------- */
.promise-stats {
    display: flex; justify-content: center; align-items: flex-start;
    gap: 64px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.promise-stat { text-align: center; }
.promise-stat .n {
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 900; color: var(--white);
    letter-spacing: -0.035em; line-height: 1;
    margin-bottom: 8px;
}
.promise-stat .l {
    font-size: 12px; color: var(--gray-400);
    letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 600;
}

/* ---------- Pillars ---------- */
.pillars {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.pillar {
    padding: 28px 24px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color .2s ease, transform .2s ease;
}
.pillar:hover { border-color: var(--blue-line); transform: translateY(-2px); }
.pillar .pillar-meta { font-size: 11px; color: var(--blue); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.pillar h4 { color: var(--white); font-size: 16px; margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--gray-300); line-height: 1.6; }

/* ---------- Personas ---------- */
.personas {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.persona {
    padding: 32px 28px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color .2s ease;
}
.persona:hover { border-color: var(--blue-line); }
.persona h4 { font-size: 17px; margin-bottom: 14px; color: var(--white); }
.persona p { font-size: 14px; color: var(--gray-300); line-height: 1.65; }

/* ---------- Prerequisites (sub-rules only; .prereq itself stays in theme) ---------- */
.prereq h4 { font-size: 13px; color: var(--blue); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.prereq ul { list-style: none; }
.prereq li {
    font-size: 14px; color: var(--gray-300);
    padding: 7px 0 7px 24px;
    position: relative;
    line-height: 1.55;
}
.prereq li::before {
    content: '✓';
    position: absolute; left: 0; top: 7px;
    color: var(--green); font-weight: 700;
}
.prereq .note { font-size: 13px; color: var(--gray-400); font-style: italic; margin-top: 14px; }

/* ---------- Framework ---------- */
.framework-cols {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.fwcol {
    padding: 36px 28px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: left;
}
.fwcol .num {
    display: inline-block;
    font-size: 11px; color: var(--gray-400);
    letter-spacing: 0.22em; margin-bottom: 16px;
    font-weight: 700;
}
.fwcol h3 { color: var(--white); margin-bottom: 14px; font-size: 24px; }
.fwcol p { font-size: 15px; color: var(--gray-300); line-height: 1.65; }

/* ---------- Faculty ---------- */
.faculty-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.fac {
    padding: 36px 32px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color .2s ease;
}
.fac:hover { border-color: var(--blue-line); }
.fac-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.fac-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    border: 2px solid var(--line-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 900; font-size: 20px;
    letter-spacing: -0.01em;
}
.fac-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fac-name {
    font-size: 19px; font-weight: 800; color: var(--white);
    margin-bottom: 4px; letter-spacing: -0.015em;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.fac-cred { font-size: 13px; color: var(--gray-300); line-height: 1.55; }
.fac-cred-2 { font-size: 13px; color: var(--gray-400); margin-top: 2px; }
.fac-teach { font-size: 14px; color: var(--gray-300); line-height: 1.65; }
.fac-pending {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    color: var(--blue);
    background: var(--blue-soft);
    border: 1px solid var(--blue-line);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.fac-role-tag {
    font-size: 12px;
    color: var(--blue);
    font-style: italic;
    margin-top: 4px;
}
.faculty-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 14px; color: var(--gray-400);
    font-style: italic;
}

/* ---------- How it works (sub-rules; .step itself stays in theme) ---------- */
.how-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.step-num { font-size: 11px; color: var(--blue); letter-spacing: 0.2em; font-weight: 700; margin-bottom: 12px; }
.step-name { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -0.015em; }
.step p { font-size: 14px; color: var(--gray-300); line-height: 1.65; }

/* ---------- Curriculum ---------- */
.curriculum-head { text-align: center; margin-bottom: 48px; }
.curriculum-head h2 span { display: block; }

.week { border-bottom: 1px solid var(--line); }
.week:first-child { border-top: 1px solid var(--line); }
.week-head {
    width: 100%;
    padding: 24px 4px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; text-align: left;
    transition: padding .15s ease;
}
.week-head:hover { padding-left: 10px; }
.week-label {
    display: flex; align-items: center; gap: 24px;
    flex: 1;
    min-width: 0;
}
.week-num {
    font-size: 11px; color: var(--blue);
    letter-spacing: 0.2em; font-weight: 700;
    min-width: 68px;
}
.week-title { font-size: 18px; color: var(--white); font-weight: 700; letter-spacing: -0.015em; }
.week-phase {
    font-size: 11px; color: var(--gray-400);
    letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 600;
}
.week-toggle {
    width: 32px; height: 32px;
    border: 1px solid var(--line-2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-300); font-size: 16px; font-weight: 300;
    transition: transform .2s ease, background .15s ease, color .15s ease, border-color .15s ease;
    flex-shrink: 0;
}
.week.open .week-toggle {
    background: var(--blue); color: #FFFFFF; border-color: var(--blue);
    transform: rotate(45deg);
}
.week-body {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
}
.week.open .week-body { max-height: 1400px; }
.week-body-inner { padding: 8px 0 32px 92px; }
.session { padding: 18px 0; border-top: 1px solid var(--line); }
.session:first-child { border-top: 0; padding-top: 4px; }
.session-title { font-size: 16px; color: var(--white); font-weight: 700; margin-bottom: 8px; letter-spacing: -0.005em; }
.session-body { font-size: 14px; color: var(--gray-300); line-height: 1.65; margin-bottom: 6px; }
.session-output { font-size: 13px; color: var(--blue); font-style: italic; }

.curriculum-footer {
    margin-top: 32px;
    font-size: 13px; color: var(--gray-400);
    font-style: italic;
    text-align: center;
}

/* ---------- Pricing (shared sub-rules; .price-card and .price-dual stay in theme) ---------- */
.price-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
}
.price-eyebrow {
    font-size: 11px; font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 8px;
}
.price-product {
    font-size: 22px; font-weight: 800; color: var(--white);
    margin-bottom: 6px; letter-spacing: -0.02em;
}
.price-meta { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.price-amount {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 900; color: var(--white);
    letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 6px;
}
.price-region {
    font-size: 13px; color: var(--gray-400);
    letter-spacing: 0.02em;
}
.price-terms {
    margin-top: 18px;
    font-size: 13px; color: var(--gray-400);
    font-style: italic;
}
.price-dual-col {
    padding: 22px 22px;
    position: relative;
}
.price-dual-col--inner {
    border-right: 1px solid var(--line);
}
.price-dual-col--inner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--blue);
}
.price-dual-label {
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.price-dual-amount {
    font-size: 36px; font-weight: 900;
    color: var(--white);
    letter-spacing: -0.035em; line-height: 1;
    margin-bottom: 8px;
}
.price-dual-meta {
    font-size: 13px;
    color: var(--gray-300);
    line-height: 1.5;
}
.price-includes {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.price-includes-label {
    font-size: 11px; color: var(--gray-400);
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}
.price-includes ul { list-style: none; }
.price-includes li {
    font-size: 14px; color: var(--gray-100);
    padding: 9px 0 9px 26px;
    position: relative;
    line-height: 1.55;
}
.price-includes li::before {
    content: '✓';
    position: absolute; left: 0; top: 9px;
    color: var(--green); font-weight: 800; font-size: 16px;
}
.price-cta-wrap { margin-top: 32px; }
.price-cta {
    width: 100%; padding: 18px 28px;
    background: var(--blue);
    color: #FFFFFF;
    font-size: 16px; font-weight: 700;
    border-radius: var(--radius-pill);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 8px 28px rgba(59,130,246,0.32);
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.price-cta:hover {
    background: var(--blue-strong);
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(59,130,246,0.45);
}
.price-cta-note {
    margin-top: 14px;
    font-size: 12px; color: var(--gray-400);
    text-align: center;
    letter-spacing: 0.02em;
}

/* ---------- Inner circle section ---------- */
.ic-section { background: var(--bg-2); position: relative; }
.ic-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 700px 400px at 75% 50%, rgba(59,130,246,0.07), transparent 70%);
    pointer-events: none;
}
.ic-section > .wrap { position: relative; z-index: 1; }
.ic-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.ic-section-left {
    display: flex; flex-direction: column;
    gap: 18px;
}
.ic-section-left .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.ic-section-left .eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--blue);
    display: inline-block;
}
.ic-section-left h2 { margin-bottom: 6px; }
.ic-section-left p { color: var(--gray-300); font-size: 16px; line-height: 1.7; }
.ic-section-pullquote {
    margin-top: 14px; padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 19px; line-height: 1.45;
    color: var(--white); font-weight: 500;
}
.ic-feature-stack {
    display: flex; flex-direction: column; gap: 14px;
}
.ic-feature-title {
    font-size: 16px; font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.ic-feature-body {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.55;
}
.ic-feature--cta {
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(59,130,246,0.03));
    border-color: var(--blue-line);
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    padding: 22px 24px;
}
.ic-feature--cta .btn {
    padding: 12px 22px;
    font-size: 14px;
}
.ic-feature-deadline {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
    text-align: center;
}

.no-discounts {
    max-width: 580px; margin: 28px auto 0;
    padding: 20px 28px;
    font-size: 14px; color: var(--gray-300);
    line-height: 1.7;
    font-style: italic;
    border-left: 2px solid var(--blue);
    background: rgba(59,130,246,0.04);
}

/* ---------- Refund ---------- */
.refund-box {
    max-width: 720px; margin: 0 auto;
    padding: 28px 32px;
    background: var(--bg-3);
    border: 1px solid var(--green);
    border-radius: var(--radius-lg);
    position: relative;
}
.refund-box::before {
    content: '';
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3px; height: 60%;
    background: var(--green);
    border-radius: 0 3px 3px 0;
}
.refund-box h4 {
    font-size: 16px; color: var(--white);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
}
.refund-box h4 svg { width: 18px; height: 18px; color: var(--green); }
.refund-box p {
    font-size: 14px; color: var(--gray-300);
    line-height: 1.7;
}
.refund-box strong { color: var(--white); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
    width: 100%;
    padding: 22px 4px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    text-align: left;
}
.faq-q-text { font-size: 16px; color: var(--white); font-weight: 700; letter-spacing: -0.01em; }
.faq-q-toggle {
    width: 26px; height: 26px;
    color: var(--gray-300); font-size: 20px; font-weight: 300;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s ease, color .15s ease;
}
.faq-item.open .faq-q-toggle { transform: rotate(45deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
    padding: 0 4px 24px;
    font-size: 15px; color: var(--gray-300);
    line-height: 1.7;
    max-width: 720px;
}

/* ---------- Closing CTA ---------- */
.closing {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    text-align: center;
    padding: 96px 0;
    position: relative;
}
.closing::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(59,130,246,0.12), transparent 70%);
    pointer-events: none;
}
.closing > .wrap-narrow { position: relative; }
.closing h2 { max-width: 760px; margin: 0 auto 32px; }
.closing form .d-flex { justify-content: center; }
.closing-meta {
    margin-top: 20px;
    font-size: 13px; color: var(--gray-400);
}

/* ---------- Footer ---------- */
footer.site-footer {
    background: var(--bg);
    padding: 56px 0 40px;
    border-top: 1px solid var(--line);
}
.footer-trust {
    font-size: 13px; color: var(--gray-400);
    text-align: center;
    margin-bottom: 32px;
}
.footer-trust strong { color: var(--white); font-weight: 700; }
.footer-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
}
.footer-logo { font-size: 15px; color: var(--white); font-weight: 800; display: flex; align-items: center; gap: 10px; }
.footer-links {
    display: flex; gap: 28px; flex-wrap: wrap;
    font-size: 13px; color: var(--gray-400);
}
.footer-links a { transition: color .15s ease; }
.footer-links a:hover { color: var(--blue); }
.footer-legal {
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 12px; color: var(--gray-500);
    text-align: center;
}

/* ---------- Sticky CTA (shared structure; background/shadow stay in theme) ---------- */
.sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.sticky-cta-info {
    display: flex; flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sticky-cta-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
}
.sticky-cta-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}
.sticky-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 540px) {
    .sticky-cta-inner { padding: 12px 16px; gap: 12px; }
    .sticky-cta-label { font-size: 10px; letter-spacing: 0.14em; }
    .sticky-cta-price { font-size: 15px; }
    .sticky-cta-anchor { display: none; }
    .sticky-cta .btn { padding: 10px 16px; font-size: 13px; }
}

/* ---------- Price highlight animation ---------- */
.price-card.is-highlighted {
    animation: priceHighlight 1.4s ease-out;
}
@keyframes priceHighlight {
    0%   { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
    30%  { box-shadow: 0 0 0 8px rgba(59,130,246,0.35), 0 30px 60px rgba(59,130,246,0.25); }
    100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

/* ---------- Tools ---------- */
.tools-group { margin-top: 56px; }
.tools-group:first-of-type { margin-top: 48px; }
.tools-group-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.tools-group-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
}
.tools-group-desc {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tool-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-2);
    box-shadow: 0 8px 24px rgba(15,23,42,0.20);
}
.tool-mark {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 22px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 2px 6px rgba(0,0,0,0.25);
}
.tool-mark.size-sm { font-size: 18px; }
.tool-mark.size-xs { font-size: 15px; }
.tool-mark--claude  { background: #D97757; }
.tool-mark--gpt     { background: #10A37F; }
.tool-mark--gemini  { background: linear-gradient(135deg, #4285F4 0%, #9B72CB 50%, #D96570 100%); }
.tool-mark--llama   { background: #0466C8; }
.tool-mark--codex   { background: #0F0F0F; }
.tool-mark--lovable { background: #F472B6; }
.tool-mark--v0      { background: #0F0F0F; }
.tool-mark--bolt    { background: linear-gradient(135deg, #161A1D 0%, #2A3137 100%); }
.tool-mark--n8n     { background: #EA4B71; }
.tool-mark--langfuse { background: #0F1110; }
.tool-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}
.tool-purpose {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.4;
    max-width: 160px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .tools-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .personas { grid-template-columns: 1fr; }
    .framework-cols { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .faculty-grid { grid-template-columns: 1fr; }
    .promise-stats { gap: 40px; justify-content: space-between; }
}

@media (max-width: 720px) {
    :root { --section-y: var(--section-y-m); }
    .wrap, .wrap-narrow { padding: 0 20px; }
    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: 32px; line-height: 1.12; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
    .hero-cta .btn { width: 100%; }
    .hero-meta-links { gap: 16px; }
    .hero-spec { padding: 10px 16px; font-size: 12px; }
    .thumb-placeholder { margin-top: 36px; border-radius: 14px; }
    .ic-strip { grid-template-columns: 1fr; }
    .ic-tier--inner { border-right: none; border-bottom: 1px solid var(--line); }
    .ic-tier { padding: 18px 22px; }
    .ic-tier-price { font-size: 26px; }
    .nav-cta { display: none; }
    body { padding-bottom: 76px; }
    .pillars { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .week-body-inner { padding-left: 0; }
    .week-label { gap: 16px; }
    .week-num { min-width: auto; }
    .week-title { font-size: 16px; max-width: 175px; }
    .week-phase { display: none; }
    .price-card { padding: 32px 24px 28px; }
    .price-amount { font-size: 44px; }
    .price-dual { grid-template-columns: 1fr; }
    .price-dual-col--inner { border-right: none; border-bottom: 1px solid var(--line); }
    .price-dual-col { padding: 18px 20px; }
    .price-dual-amount { font-size: 30px; }
    .no-discounts { margin: 24px 16px 0; padding: 18px 22px; }
    .ic-section-grid { grid-template-columns: 1fr; gap: 32px; }
    .ic-feature--cta { flex-direction: column; align-items: stretch; }
    .ic-feature--cta .btn { width: 100%; }
    .refund-box { margin: 0 4px; padding: 24px; }
    .footer-row { flex-direction: column; align-items: flex-start; }

    .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .tool-card { padding: 18px 12px; gap: 10px; }
    .tool-mark { width: 48px; height: 48px; font-size: 18px; }
    .tool-mark.size-sm { font-size: 15px; }
    .tool-mark.size-xs { font-size: 13px; }
    .tool-name { font-size: 13px; }
    .tool-purpose { font-size: 11px; }
    .tools-group { margin-top: 40px; }
    .tools-group-head { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .social-strip { padding: 36px 0; }
    .social-strip-row { gap: 28px; }
    .social-stat { font-size: 14px; gap: 10px; }
    .social-stat .yt-box { width: 32px; height: 22px; }
    .social-stat .yt-box svg { width: 12px; height: 12px; }
    .social-stat .star { font-size: 18px; }
    .social-stat strong { font-size: 20px; }
}
