/* experience-acadenice page-specific stylesheet.
   Loaded after claude-editorial-pages.css via the layout head slot
   (slot="head" link in experience-acadenice.astro), so it wins on ties.
   Rules extracted verbatim from claude_design_v2/experience-acadenice.html
   <style> to keep the live rendering visually faithful to the mockup:
   same font-sizes, same section layout/colours, same image-container
   dimensions, same responsive @media breakpoints (1024px and 640px).
   Excludes navbar/footer/modal/base resets — those stay in shared sheets.
   The callout suffix uses content: attr(data-suffix) so the Astro markup
   drives the badge text (data-suffix) instead of the mockup literal 'max'. */

/* ── INTRO MANIFESTO ── */
.xp-intro { padding: 100px 0 80px; background: var(--bg-page); border-bottom: 1px solid var(--border-dark); }
[data-theme="light"] .xp-intro { border-color: var(--border-light); }
.xp-intro__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.xp-intro__grid--no-media { grid-template-columns: 1fr; }
.xp-intro__grid--no-media > div { max-width: 920px; }
.xp-intro__title {
  font-family: 'Josefin Sans', sans-serif; font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: .98; letter-spacing: -.03em; text-transform: uppercase;
  color: var(--text-primary); margin: 0 0 24px; text-wrap: balance;
}
.xp-intro__title em { color: var(--teal); font-style: normal; }
.xp-intro__title span { color: var(--amber); }
.xp-intro__lead { font-size: 18px; line-height: 1.7; color: var(--muted-on-dark); }
[data-theme="light"] .xp-intro__lead { color: var(--muted-on-light); }
.xp-intro__lead strong { color: var(--text-primary); font-weight: 600; }
.xp-intro__media { position: relative; min-height: 420px; border-radius: 20px; overflow: hidden; }
.xp-intro__media image-slot { width: 100%; height: 100%; display: block; }

/* ── BIG NUMBER CALLOUT ── */
.callout-10 {
  background: linear-gradient(135deg, #0A2E2A 0%, #1C7269 45%, #2E9988 75%, #4CCCB8 100%);
  padding: 120px 0; position: relative; overflow: hidden;
}
.callout-10::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 30%, rgba(76,204,184,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 100%, rgba(253,161,0,.18) 0%, transparent 60%);
  pointer-events: none;
}
.callout-10__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr; gap: 80px;
  align-items: center;
}
.callout-10__num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(180px, 24vw, 360px);
  font-weight: 700; line-height: .8;
  letter-spacing: -.06em; color: #fff;
  position: relative;
}
.callout-10__num::after {
  content: attr(data-suffix); position: absolute;
  bottom: 22px; right: -40px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber);
  padding: 6px 12px;
  background: rgba(0,0,0,.25);
  border-radius: var(--r-pill);
  transform: rotate(-8deg);
}
.callout-10__text {}
.callout-10__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Josefin Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  padding: 8px 16px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.callout-10__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700; line-height: 1;
  letter-spacing: -.03em; text-transform: uppercase;
  color: #fff; margin: 0 0 24px; text-wrap: balance;
}
.callout-10__title em { font-style: normal; color: var(--amber); }
.callout-10__body { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.88); margin: 0 0 28px; max-width: 540px; }
.callout-10__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.callout-10__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: #fff; line-height: 1.5;
  font-weight: 500;
}
.callout-10__list li::before {
  content: ''; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber); margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7l3 3 5-6' stroke='%230A2E2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* ── SPLIT BLOCKS ── */
.xp-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin: 0;
  align-items: stretch;
}
.xp-split--no-media { grid-template-columns: 1fr; margin: 0; }
.xp-split--no-media .xp-split__content { max-width: 760px; margin: 0 auto; }
.xp-split--reverse .xp-split__media { order: 2; }
.xp-split--reverse .xp-split__content { order: 1; }
.xp-split__media {
  position: relative;
  min-height: 540px;
  background: var(--bg-dark-2);
  border-radius: 20px;
  overflow: hidden;
}
.xp-split__media image-slot { width: 100%; height: 100%; display: block; }
.xp-split__content {
  padding: 80px 64px; background: var(--bg-page);
  display: flex; flex-direction: column; justify-content: center;
}
.xp-split--dark .xp-split__content { background: var(--bg-dark); }
[data-theme="light"] .xp-split--dark .xp-split__content { background: var(--bg-mid); }
.xp-split__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pole, var(--amber)); margin-bottom: 16px;
}
.xp-split[data-pole="tech"] .xp-split__eyebrow { color: var(--pole-tech); }
.xp-split[data-pole="graph"] .xp-split__eyebrow { color: var(--pole-graph); }
.xp-split[data-pole="amber"] .xp-split__eyebrow { color: var(--amber); }
.xp-split[data-pole="teal"] .xp-split__eyebrow { color: var(--teal); }
.xp-split__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 700;
  line-height: 1; letter-spacing: -.02em; text-transform: uppercase;
  color: var(--text-primary); margin: 0 0 20px; text-wrap: balance;
}
.xp-split__title em { font-style: normal; color: var(--teal); }
.xp-split__title span { color: var(--amber); }
.xp-split__body { font-size: 16px; line-height: 1.7; color: var(--muted-on-dark); margin: 0 0 28px; }
[data-theme="light"] .xp-split__body { color: var(--muted-on-light); }
.xp-split__body strong { color: var(--text-primary); font-weight: 600; }

.split-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.split-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text-primary); line-height: 1.5;
}
.split-list li strong { font-weight: 600; }
.split-list li::before {
  content: ''; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7l3 3 5-6' stroke='%230A2E2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* ── NETWORK STRIP ── */
.network-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px;
  background: var(--border-dark);
}
[data-theme="light"] .network-strip { background: var(--border-light); }
.network-card {
  background: var(--bg-dark); padding: 56px 36px;
  display: flex; flex-direction: column; gap: 16px;
  border-top: 3px solid var(--pole, var(--teal));
  transition: background var(--transition);
}
[data-theme="light"] .network-card { background: #fff; }
.network-card:hover { background: var(--bg-dark-2); }
[data-theme="light"] .network-card:hover { background: var(--bg-light); }
.network-card[data-pole="tech"] { --pole: var(--pole-tech); }
.network-card[data-pole="graph"] { --pole: var(--pole-graph); }
.network-card[data-pole="amber"] { --pole: var(--amber); }
.network-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--pole, var(--teal)) 14%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--pole, var(--teal));
}
.network-card__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 22px; font-weight: 700; line-height: 1.1;
  letter-spacing: -.01em; color: var(--text-primary);
  margin: 0;
}
.network-card__body { font-size: 15px; line-height: 1.6; color: var(--muted-on-dark); margin: 0; }
[data-theme="light"] .network-card__body { color: var(--muted-on-light); }
.network-card__body strong { color: var(--text-primary); font-weight: 600; }

/* ── PROMO LIFE GRID ── */
.promo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.promo-cell {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: var(--bg-dark-2);
}
.promo-cell image-slot,
.promo-cell__media { width: 100%; height: 100%; display: block; }
.promo-cell__media > image-slot { width: 100%; height: 100%; display: block; }
.promo-cell__overlay {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(8,15,14,.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.promo-cell__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 8px;
}
.promo-cell__tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}
.promo-cell__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px; font-weight: 700; line-height: 1.15;
  letter-spacing: -.01em; color: #fff; margin: 0;
}
.promo-cell--wide { grid-column: span 2; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #0A2E2A 0%, #1C7269 70%, #2E9988 100%);
  padding: 100px 0; position: relative; overflow: hidden; text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 20%, rgba(253,161,0,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(76,204,184,.3) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.final-cta__eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.final-cta__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700; line-height: .98;
  letter-spacing: -.03em; text-transform: uppercase;
  color: #fff; margin: 0 0 24px; text-wrap: balance;
}
.final-cta__title em { font-style: normal; color: var(--amber); }
.final-cta__sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,.85); margin: 0 0 36px;
}
.final-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .xp-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .callout-10__inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .callout-10__num { font-size: clamp(140px, 26vw, 220px); }
  .callout-10__num::after { right: 0; }
  .xp-split { grid-template-columns: 1fr; margin: 0; }
  .xp-split--reverse .xp-split__media { order: 1; }
  .xp-split--reverse .xp-split__content { order: 2; }
  .xp-split__media { min-height: 320px; }
  .xp-split__content { padding: 56px 32px; }
  .network-strip { grid-template-columns: 1fr; gap: 1px; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .promo-cell--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .promo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .promo-cell--wide { grid-column: span 1; }
  .promo-cell { min-height: 220px; }
}
