:root {
  --purple: #5b2bbd;
  --purple-dark: #3f168f;
  --purple-soft: #f2edff;
  --ink: #141426;
  --muted: #6e7080;
  --line: #e7e7ef;
  --surface: #ffffff;
  --soft: #f7f7fb;
  --navy: #151630;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(28, 23, 53, .06);
  --shadow: 0 14px 38px rgba(36, 26, 75, .10);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.15; }
h1 { margin-bottom: 20px; font-size: clamp(2.35rem, 5vw, 4.5rem); }
h2 { margin-bottom: 16px; font-size: clamp(1.75rem, 3vw, 2.6rem); }
h3 { font-size: 1.08rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 16px; color: #fff; background: var(--purple); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(91, 43, 189, .35); outline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(231, 231, 239, .72);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s, height .25s;
}
.site-header.is-scrolled { height: 70px; box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; height: 100%; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; color: #30127d; }
.brand__mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 8px; color: #fff; background: linear-gradient(145deg, #6f3bd0, #32127b); font-size: 14px; font-weight: 800; letter-spacing: -.04em; box-shadow: 0 8px 18px rgba(91,43,189,.25); }
.brand__copy { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.brand__copy strong { font-size: 12px; letter-spacing: .02em; }
.brand__copy small { margin-top: 4px; color: var(--muted); font-size: 7px; text-transform: none; }
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; margin: 0; padding: 0; align-items: center; gap: clamp(16px, 2.2vw, 32px); list-style: none; }
.site-nav__list a { position: relative; display: block; padding: 26px 0; font-size: 15px; font-weight: 700; }
.site-nav__list a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; border-radius: 2px; background: var(--purple); content: ""; transform: scaleX(0); transition: transform .2s; }
.site-nav__list a:hover::after, .site-nav__list .current-menu-item a::after { transform: scaleX(1); }
.language { display: inline-flex; min-width: 51px; height: 38px; align-items: center; justify-content: center; gap: 5px; border-radius: 7px; color: #fff; background: var(--purple); font-size: 12px; font-weight: 750; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle > span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 3px; background: var(--ink); transition: .2s; }

.eyebrow { display: inline-block; margin-bottom: 13px; color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--light { color: #d9cbff; }
.hero { position: relative; min-height: 510px; overflow: hidden; background: linear-gradient(110deg, #fff 10%, #f9f8fc 62%, #f0eef7); }
.hero::after { position: absolute; right: -10%; bottom: -65%; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(91,43,189,.11), transparent 68%); content: ""; }
.hero__mesh { position: absolute; z-index: 0; top: -30px; right: 8%; width: 440px; height: 260px; opacity: .5; background-image: linear-gradient(30deg, transparent 49.5%, rgba(91,43,189,.11) 50%, transparent 50.5%), linear-gradient(150deg, transparent 49.5%, rgba(91,43,189,.11) 50%, transparent 50.5%); background-size: 54px 54px; mask-image: linear-gradient(to bottom left, #000, transparent 80%); }
.hero__grid { position: relative; z-index: 1; display: grid; min-height: 510px; align-items: center; grid-template-columns: 1.08fr .92fr; gap: 50px; }
.hero__content { padding: 62px 0; }
.hero__content h1 { max-width: 720px; }
.hero__content p { max-width: 610px; margin-bottom: 30px; font-size: 1.07rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 46px; padding: 11px 22px; align-items: center; justify-content: center; border: 1px solid var(--purple); border-radius: 7px; color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); font-size: 13px; font-weight: 750; box-shadow: 0 7px 18px rgba(91,43,189,.17); transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 11px 25px rgba(91,43,189,.25); }
.button--outline { color: var(--purple); background: #fff; box-shadow: none; }
.button--outline:hover { color: #fff; background: var(--purple); }
.button--small { min-height: 34px; padding: 7px 15px; font-size: 11px; }
.button--white { border-color: #fff; color: var(--purple); background: #fff; box-shadow: 0 8px 24px rgba(24, 12, 56, .22); }
.hero__visual { position: relative; min-height: 430px; align-self: end; }
.hero-book { position: absolute; z-index: 2; right: 74px; bottom: 18px; width: 310px; filter: drop-shadow(0 25px 20px rgba(32,20,56,.22)); transform: rotate(-1deg); }
.hero-plant { position: absolute; z-index: 3; right: 0; bottom: 10px; display: grid; width: 135px; height: 160px; place-items: center; font-size: 90px; filter: drop-shadow(0 20px 10px rgba(40,35,52,.18)); }

.trust-strip { position: relative; z-index: 3; display: grid; margin-top: -26px; padding: 22px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; grid-template-columns: repeat(6, 1fr); box-shadow: var(--shadow); }
.trust-strip > div { display: flex; min-width: 0; padding: 4px 15px; align-items: center; gap: 11px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border: 0; }
.trust-strip i, .stats-grid i { display: grid; flex: 0 0 auto; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--purple); background: var(--purple-soft); font-style: normal; font-weight: 800; }
.trust-strip span { display: flex; min-width: 0; flex-direction: column; font-size: 10px; line-height: 1.35; }
.trust-strip strong { font-size: 11px; }
.section { padding-top: 84px; padding-bottom: 84px; }
.section--soft { background: var(--soft); }
.home-page > .section, .home-page > .partners-section, .home-page > .cta-band { padding-top: 40px; padding-bottom: 40px; }
.section-heading { display: flex; margin-bottom: 30px; align-items: end; justify-content: space-between; gap: 20px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading .eyebrow { margin-bottom: 8px; }
.text-link { padding-bottom: 4px; color: var(--purple); font-size: 13px; font-weight: 750; }
.text-link span { margin-left: 5px; transition: margin .2s; }
.text-link:hover span { margin-left: 10px; }

.conference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.conference-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.conference-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.conference-card__image { position: relative; height: 200px; overflow: hidden; background: #ddd8ea; }
.conference-card__image-link { display: block; width: 100%; height: 100%; }
.conference-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.conference-card:hover .conference-card__image img { transform: scale(1.035); }
.date-badge { position: absolute; top: 0; right: 0; display: flex; min-width: 50px; min-height: 58px; padding: 7px; align-items: center; justify-content: center; flex-direction: column; border-radius: 0 0 0 10px; color: #fff; background: linear-gradient(155deg, #7146d6, #46209a); font-size: 9px; line-height: 1.05; }
.date-badge strong { font-size: 18px; }
.conference-card__body { display: flex; padding: 20px; flex-direction: column; }
.conference-card__content h3 { min-height: 2.45em; margin-bottom: 10px; }
.conference-card__content h3 a { display: -webkit-box; max-height: 2.4em; overflow: hidden; line-height: 1.2; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.conference-card__content h3 a:hover, .publication-card h3 a:hover { color: var(--purple); }
.meta-line { margin-bottom: 12px; font-size: 11px; line-height: 1.45; }
.meta-line span { color: #b0b0bb; }
.index-list { display: flex; flex-wrap: wrap; gap: 13px; color: #737384; font-size: 9px; font-weight: 650; }
.index-list span::first-letter { color: var(--purple); }
.conference-card__actions { display: flex; margin-top: 20px; align-items: center; justify-content: space-between; gap: 10px; }
.conference-card__actions strong { font-size: 13px; }

.stats-grid { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; grid-template-columns: repeat(5, 1fr); box-shadow: var(--shadow-sm); }
.stats-grid > div { display: grid; padding: 24px 20px; border-right: 1px solid var(--line); grid-template-columns: auto 1fr; column-gap: 12px; }
.stats-grid > div:last-child { border: 0; }
.stats-grid i { grid-row: span 2; }
.stats-grid strong { color: var(--purple); font-size: 18px; line-height: 1.2; }
.stats-grid span { color: var(--muted); font-size: 10px; line-height: 1.35; }
.stats-grid--four { grid-template-columns: repeat(4, 1fr); }
.cta-band { padding: 56px 0; color: #fff; background: radial-gradient(circle at 20% 40%, rgba(255,255,255,.13), transparent 25%), linear-gradient(115deg, #3e168c, #6b2ec7); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { margin-bottom: 0; color: #ddd1f8; }

.page-hero { padding: 40px 0 0; background: linear-gradient(120deg, #fff, #faf9fd); }
.page-hero--mesh { position: relative; overflow: hidden; }
.page-hero--mesh::after { position: absolute; top: -120px; right: 3%; width: 420px; height: 360px; background: radial-gradient(circle, rgba(91,43,189,.07) 2px, transparent 3px); background-size: 30px 30px; content: ""; mask-image: linear-gradient(110deg, transparent, #000); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1, .about-story-hero__content h1 { font-size: clamp(2.3rem, 4.3vw, 3.7rem); line-height: 1.15; }
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { margin-bottom: 0; }
.filter-bar { display: flex; margin-bottom: 30px; align-items: center; justify-content: space-between; gap: 20px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pills button, .filter-button, .tabs button { min-height: 37px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 6px; color: #4c4c5d; background: #fff; font-size: 11px; font-weight: 650; }
.filter-pills button.is-active, .filter-pills button:hover, .tabs button.is-active { border-color: var(--purple); color: #fff; background: var(--purple); }
.filter-button { color: var(--ink); }
.conference-list { display: grid; gap: 18px; }
.conference-card--horizontal { display: grid; min-height: 160px; grid-template-columns: 250px 1fr; }
.conference-card--horizontal .conference-card__image { height: 100%; min-height: 160px; }
.conference-card--horizontal .conference-card__body { display: grid; padding: 20px 24px; align-items: center; grid-template-columns: 1fr auto; gap: 24px; }
.conference-card--horizontal .conference-card__content h3 { min-height: 0; margin-bottom: 8px; }
.conference-card--horizontal .conference-card__actions { min-width: 165px; margin-top: 0; align-items: end; flex-direction: column; }
.search-box { display: flex; width: 240px; min-height: 38px; padding: 0 12px; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: #fff; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 11px; }
.publication-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
.publication-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.publication-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.publication-card__image { display: block; height: 230px; overflow: hidden; background: #e7e4ed; }
.publication-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.publication-card:hover img { transform: scale(1.035); }
.publication-card__body { padding: 19px; }
.publication-card h3 { min-height: 2.5em; margin-bottom: 10px; }
.publication-card p { margin-bottom: 3px; font-size: 11px; }
.publication-card__footer { display: flex; width: 100%; margin-top: 10px; align-items: flex-end; gap: 16px; }
.publication-card__meta { display: flex; min-width: 0; align-items: flex-start; flex-direction: column; gap: 3px; color: var(--muted); font-size: 12px; line-height: 1.45; text-align: left; }
.publication-card__location { text-align: left; }
.publication-card__footer .button { margin-left: auto; flex: 0 0 auto; }
.publication-card .index-list { margin: 13px 0 17px; }
.nav-links { display: flex; margin-top: 36px; align-items: center; justify-content: center; gap: 7px; }
.page-numbers { display: grid; min-width: 34px; height: 34px; padding: 0 8px; place-items: center; border: 1px solid var(--line); border-radius: 6px; font-size: 11px; }
.page-numbers.current { border-color: var(--purple); color: #fff; background: var(--purple); }
.search-empty { padding: 40px; text-align: center; }

.requirements-layout { display: grid; grid-template-columns: 1fr 330px; gap: 44px; }
.tabs { display: flex; margin-bottom: 24px; gap: 8px; }
.requirements-panels { display: grid; align-items: stretch; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.requirements-side { display: grid; min-width: 0; height: 100%; align-content: stretch; grid-template-rows: auto minmax(0, 1fr); gap: 16px; }
.requirements-card, .requirements-mini-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.requirements-card { min-width: 0; padding: 18px; }
.requirements-card__heading { display: grid; margin-bottom: 14px; align-items: center; grid-template-columns: 38px minmax(0, 1fr); gap: 11px; }
.requirements-card__heading > i, .requirements-mini-card__header > i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 9px; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.requirements-card__heading .icon { width: 19px; height: 19px; }
.requirements-card__heading h2 { margin: 0 0 3px; font-size: 20px; letter-spacing: -.015em; }
.requirements-card__heading p { margin: 0; font-size: 14px; line-height: 1.45; }
.requirements-list { display: grid; margin: 0; padding: 0; gap: 5px; list-style: none; }
.requirements-list li { display: grid; min-width: 0; margin: 0; padding: 4px 0; align-items: start; grid-template-columns: 24px minmax(115px, .72fr) minmax(0, 1.55fr); gap: 8px; color: #3f4050; overflow-wrap: anywhere; }
.requirements-list li > i { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.requirements-list li > i .icon { width: 12px; height: 12px; }
.requirements-list li > strong { padding-top: 1px; color: var(--ink); font-size: 15px; font-weight: 750; line-height: 1.45; }
.requirements-list li > span { min-width: 0; padding-top: 1px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.notice { display: grid; margin-top: 12px; padding: 12px 13px; align-items: start; grid-template-columns: 24px auto minmax(0, 1fr); gap: 8px; border: 1px solid #d8caf8; border-radius: 8px; color: var(--muted); background: var(--purple-soft); font-size: 12px; line-height: 1.5; }
.notice > i { display: grid; width: 22px; height: 22px; place-items: center; color: var(--purple); font-style: normal; }
.notice > i .icon { width: 17px; height: 17px; }
.notice strong { padding-top: 3px; color: var(--purple); }
.notice span { padding-top: 3px; }
.downloads-card { align-self: start; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.downloads-card h2 { font-size: 1.25rem; }
.downloads-card > a { display: flex; padding: 14px 0; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }
.downloads-card > a:last-child { border: 0; }
.downloads-card i { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 7px; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.downloads-card span { display: flex; flex-direction: column; font-size: 11px; }
.downloads-card small { color: var(--purple); }
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.advantage-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.advantage-card i { display: grid; width: 43px; height: 43px; margin-bottom: 18px; place-items: center; border: 1px solid #d9cafa; border-radius: 10px; color: var(--purple); background: var(--purple-soft); font-style: normal; font-weight: 800; }
.advantage-card h2 { margin-bottom: 10px; font-size: 16px; }
.advantage-card p { margin: 0; font-size: 16px; line-height: 1.6; }
.about-hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #fff 0%, #fbfaff 55%, #f3effd 100%); }
.about-hero::before { position: absolute; top: -210px; right: -170px; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(91,43,189,.11), transparent 67%); content: ""; pointer-events: none; }
.about-hero__grid { position: relative; display: grid; min-height: 540px; padding: 54px 0 60px; align-items: center; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); gap: 54px; }
.about-hero__content { position: relative; z-index: 2; max-width: 650px; }
.about-hero__content h1 { max-width: 640px; margin-bottom: 20px; font-size: clamp(2.65rem, 4.35vw, 4.15rem); line-height: 1.04; }
.about-hero__lead { max-width: 620px; margin-bottom: 0; font-size: 1rem; line-height: 1.72; }
.about-pillars { display: grid; max-width: 590px; margin-top: 28px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-pillars > div { display: flex; min-width: 0; align-items: center; gap: 11px; }
.about-pillars i { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid #ddd1f8; border-radius: 10px; color: var(--purple); background: rgba(246,242,255,.92); font-style: normal; }
.about-pillars .icon { width: 21px; height: 21px; }
.about-pillars strong { font-size: 12px; font-weight: 700; line-height: 1.35; }
.about-hero__actions { margin-top: 30px; }
.about-hero__actions .button { min-width: 166px; }
.about-hero__visual { position: relative; z-index: 1; display: grid; min-width: 0; place-items: center; }
.about-hero__visual img { width: min(100%, 520px); height: auto; filter: drop-shadow(0 20px 32px rgba(53, 31, 112, .08)); }
@media (min-width: 1240px) {
  .about-hero__visual { transform: translateX(-14px); }
}
.team-section { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.team-section > div { max-width: 720px; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.contact-details { display: grid; gap: 8px; }
.contact-details > div { display: flex; padding: 18px 0; align-items: flex-start; gap: 16px; border-bottom: 1px solid var(--line); }
.contact-details > div:last-child { border-bottom: 0; }
.contact-details i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.contact-details span { display: flex; flex-direction: column; }
.contact-details strong { font-size: 12px; }
.contact-details a, .contact-details small { color: var(--muted); font-size: 12px; }
.contact-card, .apply-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.contact-card h2, .apply-card h2 { font-size: 1.3rem; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { color: #4a4a58; font-size: 11px; font-weight: 700; }
.contact-form input, .contact-form textarea { display: block; width: 100%; margin-top: 5px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 6px; outline: 0; color: var(--ink); background: #fff; font-size: 13px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,43,189,.09); }
.form-message { padding: 10px 14px; border-radius: 6px; font-size: 12px; }
.form-message.is-success { color: #176137; background: #e8f7ee; }
.form-message.is-error { color: #8a2c2c; background: #fff0f0; }
.socials--purple { flex-direction: row !important; }
.socials--purple a { color: var(--purple); }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.steps-grid::before { position: absolute; z-index: -1; top: 29px; right: 10%; left: 10%; height: 1px; background: #ded5f4; content: ""; }
.step-card { background: #fff; }
.step-card > span { display: grid; width: 58px; height: 58px; margin-bottom: 26px; place-items: center; border: 8px solid #fff; border-radius: 50%; color: #fff; background: var(--purple); font-weight: 800; box-shadow: 0 0 0 1px #ded5f4; }
.step-card h2 { font-size: 1.15rem; }
.step-card p { font-size: 15px; line-height: 1.55; }

.detail-hero { padding: 40px 0; background: linear-gradient(120deg, #faf9fd, #f0edf8); }
.detail-hero__grid { display: grid; min-height: 330px; align-items: start; grid-template-columns: 1.25fr .75fr; gap: 55px; }
.detail-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.detail-hero__grid > img { width: 100%; height: 330px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.detail-hero--conference { padding: 32px 0; }
.detail-hero--conference .detail-hero__grid { align-items: stretch; }
.detail-hero--conference h1 { margin-bottom: 0; font-size: clamp(2rem, 3.25vw, 3rem); line-height: 1.08; }
.detail-hero--conference .detail-meta { margin-top: 24px; }
.detail-hero--conference .detail-hero__grid > img { height: 100%; min-height: 330px; align-self: stretch; }
.back-link { display: block; margin-bottom: 22px; color: var(--purple); font-size: 12px; font-weight: 700; }
.detail-meta { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 30px; }
.detail-meta span { display: flex; color: var(--muted); flex-direction: column; font-size: 12px; }
.detail-meta strong { color: var(--ink); }
.index-list--large { margin-top: 25px; font-size: 12px; }
.publication-hero__downloads { margin-top: 26px; }
.publication-hero__downloads .button { gap: 8px; }
.publication-hero__downloads .icon { width: 17px; height: 17px; }
.publication-hero__download--disabled { opacity: .48; cursor: not-allowed; box-shadow: none; pointer-events: none; }
.article-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) 320px; gap: 60px; }
.article-layout--full { display: block; }
.article-layout--full .prose { max-width: none; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 35px; font-size: 1.55rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #555766; }
.prose a { color: var(--purple); text-decoration: underline; }
.prose .policy-intro {
  margin: 0 0 34px;
  padding: 18px 22px;
  border: 1px solid #e4dcf7;
  border-left: 4px solid var(--purple);
  border-radius: 10px;
  color: #555766;
  background: linear-gradient(105deg, #f7f3ff 0%, #fbfaff 100%);
  font-size: 1rem;
  line-height: 1.65;
}
.apply-card { position: sticky; top: 100px; }
.apply-card .button { display: flex; width: 100%; margin-top: 10px; }

/* Publication ethics: compact editorial accordion with useful resources. */
.ethics-page { padding: 40px 0 64px; background: linear-gradient(120deg, #fff 0%, #fbfaff 58%, #f7f4ff 100%); }
.ethics-page__header { margin-bottom: 38px; }
.ethics-page__header .eyebrow { margin-bottom: 13px; font-size: 12px; }
.ethics-page__header h1 { margin-bottom: 8px; font-size: clamp(2.3rem, 4.3vw, 3.7rem); }
.ethics-page__header p { margin: 0; color: var(--muted); font-size: 1rem; }
.ethics-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) 330px; gap: 44px; }
.ethics-accordion { display: grid; gap: 10px; }
.ethics-item { overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: 0 4px 14px rgba(21, 20, 43, .035); }
.ethics-item[open] { border-color: #ddd1f8; background: linear-gradient(135deg, #fff 0%, #fbf9ff 100%); }
.ethics-item summary { display: grid; min-height: 70px; padding: 12px 18px; align-items: center; grid-template-columns: 46px minmax(0, 1fr) 18px; gap: 15px; cursor: pointer; list-style: none; }
.ethics-item summary::-webkit-details-marker { display: none; }
.ethics-item summary:focus-visible { outline: 3px solid rgba(91, 43, 189, .24); outline-offset: -3px; }
.ethics-item summary strong { font-size: 1rem; line-height: 1.35; }
.ethics-item__icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #e2d8fa; border-radius: 10px; color: var(--purple); background: #f6f2ff; font-style: normal; }
.ethics-item__icon .icon { width: 23px; height: 23px; }
.ethics-chevron { display: grid; width: 18px; height: 18px; place-items: center; }
.ethics-chevron::before { width: 7px; height: 7px; border-right: 2px solid #6f6880; border-bottom: 2px solid #6f6880; content: ""; transform: rotate(45deg); transition: transform .18s ease; }
.ethics-item[open] .ethics-chevron::before { transform: rotate(225deg); }
.ethics-item__body { padding: 0 54px 20px 79px; }
.ethics-item__body p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.ethics-sidebar { display: grid; gap: 18px; }
.ethics-support-card, .ethics-resources { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.ethics-support-card h2, .ethics-resources h2 { margin-bottom: 10px; font-size: 1.15rem; }
.ethics-support-card p { margin-bottom: 20px; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.ethics-support-card .button { display: flex; justify-content: center; gap: 8px; }
.ethics-resources { padding-bottom: 12px; }
.ethics-resources h2 { margin-bottom: 8px; }
.ethics-resources a { display: grid; min-height: 48px; padding: 10px 0; align-items: center; grid-template-columns: 24px minmax(0, 1fr) 12px; gap: 10px; border-bottom: 1px solid #ece8f3; color: var(--ink); font-size: .9rem; font-weight: 650; }
.ethics-resources a:last-child { border-bottom: 0; }
.ethics-resources a:hover { color: var(--purple); }
.ethics-resources .icon { width: 19px; height: 19px; color: var(--purple); }
.ethics-resources b { color: #8c8797; font-size: 1.2rem; font-weight: 500; }

@media (max-width: 860px) {
  .ethics-layout { grid-template-columns: 1fr; gap: 32px; }
  .ethics-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .ethics-page { padding: 40px 0 60px; }
  .ethics-page__header { margin-bottom: 32px; }
  .ethics-sidebar { grid-template-columns: 1fr; }
  .ethics-item summary { min-height: 64px; padding: 10px 14px; grid-template-columns: 42px minmax(0, 1fr) 16px; gap: 12px; }
  .ethics-item__icon { width: 40px; height: 40px; }
  .ethics-item__body { padding: 0 16px 18px 66px; }
  .ethics-support-card, .ethics-resources { padding: 21px; }
}
.not-found { display: flex; min-height: 620px; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.not-found > span { color: var(--purple-soft); font-size: clamp(7rem, 20vw, 15rem); font-weight: 900; line-height: .8; }
.not-found h1 { margin-top: -25px; font-size: 2.3rem; }

.site-footer { padding: 48px 0 18px; color: #fff; background: var(--navy); }
.site-footer__grid { display: grid; grid-template-columns: 1.15fr .7fr .9fr 1.55fr; gap: 45px; }
.brand--light { color: #fff; }
.brand--light .brand__copy small { color: #a7a8bd; }
.socials { display: flex; margin-top: 20px; gap: 9px; }
.socials a { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: 11px; transition: background .2s; }
.socials a:hover { background: var(--purple); }
.footer-links { display: flex; flex-direction: column; }
.footer-links strong, .footer-subscribe strong { margin-bottom: 10px; font-size: 11px; }
.footer-links a { padding: 2px 0; color: #bbbccc; font-size: 10px; }
.footer-links a:hover { color: #fff; }
.footer-subscribe form { display: flex; margin: 10px 0; }
.footer-subscribe input { min-width: 0; flex: 1; padding: 10px 12px; border: 0; border-radius: 5px 0 0 5px; outline: 0; font-size: 10px; }
.footer-subscribe button { padding: 9px 13px; border: 1px solid #fff; border-radius: 0 5px 5px 0; color: #fff; background: transparent; font-size: 9px; }
.footer-subscribe p { max-width: 340px; color: #a7a8bd; font-size: 9px; }
.site-footer__bottom { display: flex; margin-top: 34px; padding-top: 16px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #8f90a4; font-size: 9px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .site-header__inner { gap: 16px; }
  .site-nav__list { gap: 15px; }
  .site-nav__list a { font-size: 13px; }
  .hero-book { right: 52px; width: 270px; }
  .hero-plant { width: 100px; font-size: 72px; }
  .trust-strip { padding-inline: 15px; }
  .trust-strip > div { padding-inline: 9px; }
  .trust-strip i { width: 30px; height: 30px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .site-header, .site-header.is-scrolled { height: 70px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; z-index: 110; top: 100%; right: 0; bottom: auto; left: 0; visibility: hidden; width: 100%; height: calc(100vh - 70px); height: calc(100dvh - 70px); margin: 0; padding: 25px; overflow-y: auto; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 18px 35px rgba(20, 20, 38, .08); opacity: 1; pointer-events: none; overscroll-behavior: contain; transform: translateY(-10px); transition: visibility 0s linear .2s, transform .2s ease; }
  .site-nav.is-open { visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .site-nav__list { align-items: stretch; flex-direction: column; gap: 0; }
  .site-nav__list a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav__list a::after { display: none; }
  .language { display: none; order: 2; }
  .nav-toggle { order: 3; }
  .hero { min-height: auto; }
  .hero__grid { min-height: 620px; grid-template-columns: 1fr; gap: 0; }
  .hero__content { z-index: 3; padding: 55px 0 10px; }
  .hero__visual { min-height: 300px; }
  .hero-book { right: 26%; bottom: 8px; width: 240px; }
  .hero-plant { right: 12%; bottom: 0; }
  .trust-strip { margin-top: 20px; grid-template-columns: repeat(3, 1fr); }
  .trust-strip > div { padding: 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-strip > div:nth-child(3) { border-right: 0; }
  .trust-strip > div:nth-child(n+4) { border-bottom: 0; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .conference-grid, .publication-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { border-bottom: 1px solid var(--line); }
  .stats-grid > div:nth-child(2n) { border-right: 0; }
  .stats-grid > div:last-child { grid-column: span 2; border-bottom: 0; }
  .conference-card--horizontal { grid-template-columns: 210px 1fr; }
  .conference-card--horizontal .conference-card__body { grid-template-columns: 1fr; gap: 10px; }
  .conference-card--horizontal .conference-card__actions { align-items: center; flex-direction: row; }
  .requirements-layout, .contact-layout, .article-layout { grid-template-columns: 1fr; gap: 38px; }
  .downloads-card { width: 100%; }
  .about-hero__grid { padding: 48px 0 42px; grid-template-columns: 1fr; gap: 24px; }
  .about-hero__content { max-width: none; }
  .about-hero__visual img { width: min(100%, 480px); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .detail-hero__grid { grid-template-columns: 1fr; }
  .detail-hero__grid > img { height: 260px; }
  .detail-hero--conference .detail-hero__grid > img { height: 260px; min-height: 0; }
  .apply-card { position: static; }
  .site-footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-subscribe { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  body { font-size: 15px; }
  h1 { font-size: 2.35rem; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__copy strong { font-size: 10px; }
  .language { min-width: 44px; height: 35px; }
  .hero__grid { min-height: 650px; }
  .hero__content { padding-top: 44px; }
  .hero__content p { font-size: .98rem; }
  .button-row { align-items: stretch; flex-direction: column; }
  .hero__visual { min-height: 260px; }
  .hero-book { right: 16%; width: 220px; }
  .hero-plant { right: 2%; width: 90px; font-size: 62px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div, .trust-strip > div:nth-child(3), .trust-strip > div:nth-child(n+4) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-strip > div:nth-child(2n) { border-right: 0; }
  .trust-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding-top: 52px; padding-bottom: 52px; }
  .about-hero__grid { padding: 42px 0 34px; }
  .about-hero__content h1 { font-size: 2.45rem; }
  .about-pillars { grid-template-columns: 1fr; gap: 12px; }
  .about-pillars strong br { display: none; }
  .about-hero__visual { margin: 0 -8px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .conference-grid, .publication-grid { grid-template-columns: 1fr; }
  .conference-card__image, .publication-card__image { height: 210px; }
  .stats-grid, .stats-grid--four { grid-template-columns: 1fr; }
  .stats-grid > div, .stats-grid > div:nth-child(2n), .stats-grid > div:last-child { grid-column: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-grid > div:last-child { border-bottom: 0; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .filter-bar, .archive-toolbar { align-items: stretch; flex-direction: column; }
  .filter-pills { flex-wrap: nowrap; padding-bottom: 7px; overflow-x: auto; }
  .filter-pills button { flex: 0 0 auto; }
  .search-box { width: 100%; }
  .conference-card--horizontal { grid-template-columns: 1fr; }
  .conference-card--horizontal .conference-card__image { height: 190px; }
  .conference-card--horizontal .conference-card__body { padding: 18px; }
  .conference-card--horizontal .conference-card__actions { align-items: center; }
  .requirements-card, .contact-card, .apply-card { padding: 22px; }
  .advantages-grid, .steps-grid { grid-template-columns: 1fr; }
  .team-section { align-items: flex-start; flex-direction: column; }
  .detail-meta { gap: 18px; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 35px 25px; }
  .site-footer__grid > div:first-child, .footer-subscribe { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

/* Version 2: publication workflow, trust content and accessibility polish. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; vertical-align: -.18em; }
[hidden] { display: none !important; }
.custom-logo-link { display: inline-flex; flex: 0 0 auto; align-items: center; }
.custom-logo { width: auto; max-width: 205px; height: 46px; object-fit: contain; }
.header-submit { display: inline-flex; min-height: 38px; padding: 8px 15px; align-items: center; justify-content: center; border: 1px solid var(--purple); border-radius: 7px; color: var(--purple); font-size: 12px; font-weight: 750; white-space: nowrap; transition: color .2s, background .2s, transform .2s; }
.header-submit:hover { color: #fff; background: var(--purple); transform: translateY(-1px); }
.brand__copy small { font-size: 9px; }
.trust-strip span { font-size: 11px; }
.trust-strip strong { font-size: 12px; }
.button--small { font-size: 12px; }
.language--current { cursor: default; }
.button--wide { width: 100%; }
.button--light-outline { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.button--light-outline:hover { border-color: #fff; color: var(--purple); background: #fff; }
.meta-line, .publication-card p { font-size: 12px; }
.index-list { align-items: center; font-size: 11px; }
.index-list > * { display: inline-flex; align-items: center; gap: 5px; }
.publication-authors, .publication-lead-authors { color: #484959; font-weight: 650; }
.publication-download { margin-left: 9px; }
.status-badge { position: absolute; z-index: 2; bottom: 10px; left: 10px; padding: 5px 9px; border-radius: 99px; color: #245139; background: rgba(237,250,242,.94); font-size: 10px; font-weight: 750; box-shadow: 0 3px 10px rgba(20,20,38,.12); }
.status-badge--review { color: #72510a; background: rgba(255,248,225,.96); }
.status-badge--closed { color: #6c3640; background: rgba(255,239,241,.96); }
.archive-toolbar { display: flex; margin-bottom: 30px; align-items: center; justify-content: space-between; gap: 20px; }
.archive-switch { display: inline-flex; margin-bottom: 24px; padding: 4px; border: 1px solid var(--line); border-radius: 9px; background: var(--soft); }
.archive-toolbar .archive-switch { margin-bottom: 0; align-self: flex-start; }
.archive-switch a { padding: 7px 16px; border-radius: 6px; color: var(--muted); font-size: 12px; font-weight: 750; }
.archive-switch a.is-active { color: #fff; background: var(--purple); box-shadow: 0 5px 12px rgba(91,43,189,.2); }
.results-count { min-height: 1.5em; margin: -14px 0 18px; font-size: 12px; }
.empty-state { display: grid; grid-column: 1 / -1; padding: 40px 24px; place-items: center; gap: 8px; border: 1px dashed #d8d4e4; border-radius: var(--radius); text-align: center; background: var(--soft); }
.empty-state h2 { margin: 0; font-size: 1.45rem; }
.empty-state p { margin: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-grid > div { position: relative; padding: 25px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.process-grid > div > span { display: block; margin-bottom: 25px; color: #cbbbea; font-size: 2.5rem; font-weight: 850; line-height: 1; }
.process-grid strong { display: block; margin-bottom: 8px; font-size: 15px; }
.process-grid p { margin: 0; font-size: 13px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { display: flex; min-height: 230px; padding: 28px; justify-content: space-between; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.testimonial-card blockquote { position: relative; margin: 0 0 26px; color: #424351; font-size: 14px; }
.testimonial-card blockquote::before { display: block; margin-bottom: 8px; color: var(--purple); content: "“"; font-size: 38px; font-weight: 800; line-height: .7; }
.testimonial-card blockquote p:last-child { margin-bottom: 0; }
.testimonial-card > div { display: flex; flex-direction: column; }
.testimonial-card span { color: var(--muted); font-size: 12px; }
.partners-section { padding: 60px 0; border-top: 1px solid var(--line); background: #fff; text-align: center; }
.partners-section h2 { font-size: 1.65rem; }
.partner-grid { display: grid; margin-top: 28px; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.partner-grid > a, .partner-grid > span { display: grid; min-height: 90px; padding: 18px; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: #4b4c5b; background: var(--soft); font-size: 13px; font-weight: 750; }
.partner-grid img { max-width: 150px; max-height: 54px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .2s, opacity .2s; }
.partner-grid a:hover img { filter: none; opacity: 1; }
.submission-layout { display: grid; align-items: start; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: 56px; }
.submission-intro { position: sticky; top: 105px; }
.submission-intro h2 { font-size: 1.65rem; }
.submission-intro a, .consent-label a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.submission-check-list { display: grid; margin: 0; padding: 0; gap: 13px; list-style: none; }
.submission-check-list li { position: relative; margin: 0; padding-left: 29px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.submission-check-list li::before { position: absolute; top: 1px; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: var(--purple); background: var(--purple-soft); font-size: 11px; font-weight: 800; content: "✓"; }
.submission-card { padding: 36px; }
.submission-form { display: grid; gap: 17px; }
.submission-form label { color: #3f4050; font-size: 12px; font-weight: 700; }
.contact-form label { font-size: 12px; }
.contact-form input, .contact-form textarea { font-size: 14px; }
.submission-form input, .submission-form select, .submission-form textarea { display: block; width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid #dcdce7; border-radius: 7px; outline: 0; color: var(--ink); background: #fff; font-size: 14px; font-weight: 400; }
.submission-form input:focus, .submission-form select:focus, .submission-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,43,189,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.file-drop { display: grid; min-height: 145px; padding: 24px; place-items: center; align-content: center; border: 1.5px dashed #bca7e7; border-radius: 12px; color: var(--purple) !important; background: #faf8ff; text-align: center; cursor: pointer; }
.file-drop .icon { width: 30px; height: 30px; margin-bottom: 9px; }
.file-drop > span { color: var(--muted); font-weight: 400; }
.file-drop input { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.consent-label { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 400 !important; }
.consent-label input { width: 18px !important; height: 18px; margin: 2px 0 0 !important; flex: 0 0 auto; accent-color: var(--purple); }
.secure-note { display: flex; margin-top: 28px; padding: 18px; align-items: flex-start; gap: 12px; border: 1px solid #d9cafa; border-radius: 10px; background: var(--purple-soft); }
.secure-note .icon { width: 24px; height: 24px; color: var(--purple); }
.secure-note span { display: flex; color: var(--muted); flex-direction: column; font-size: 12px; }
.secure-note strong { color: var(--ink); font-size: 13px; }
.submission-response-note { display: flex; margin-top: 12px; padding: 18px; align-items: flex-start; gap: 12px; border: 1px solid #d9cafa; border-radius: 10px; background: linear-gradient(135deg, #fff, #f8f4ff); }
.submission-response-note > .icon { width: 24px; height: 24px; flex: 0 0 auto; color: var(--purple); }
.submission-response-note span { display: flex; color: var(--muted); flex-direction: column; font-size: 12px; line-height: 1.55; }
.submission-response-note strong { margin-bottom: 2px; color: var(--ink); font-size: 13px; }
.submission-success { display: flex; min-height: 520px; align-items: flex-start; justify-content: center; flex-direction: column; }
.submission-success > i { display: grid; width: 58px; height: 58px; margin-bottom: 22px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #25a866, #16824b); font-style: normal; box-shadow: 0 12px 26px rgba(23, 133, 77, .2); }
.submission-success > i .icon { width: 28px; height: 28px; stroke-width: 2.2; }
.submission-success .eyebrow { margin-bottom: 9px; color: #278655; }
.submission-success h2 { margin-bottom: 14px; font-size: clamp(1.65rem, 2.4vw, 2.15rem); }
.submission-success p { margin: 0 0 13px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.submission-success__lead { color: var(--ink) !important; }
.submission-success__reference { display: inline-flex; margin: 8px 0 18px; padding: 11px 14px; align-items: center; gap: 12px; border: 1px solid #d9cafa; border-radius: 9px; background: var(--purple-soft); }
.submission-success__reference span { color: var(--muted); font-size: 12px; }
.submission-success__reference strong { color: var(--purple); font-size: 15px; }
.submission-success__warning { padding: 12px 14px; border-left: 3px solid #d69a28; background: #fff8e8; }
.submission-success .button { margin-top: 4px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.status-pill { display: inline-flex; margin-bottom: 18px; padding: 6px 10px; border-radius: 99px; font-size: 11px; font-weight: 800; }
.status-pill.is-open { color: #176137; background: #e8f7ee; }
.status-pill.is-closed { color: #8a2c2c; background: #fff0f0; }
.detail-meta span { position: relative; padding-left: 27px; }
.detail-meta .icon { position: absolute; top: 1px; left: 0; color: var(--purple); }
.transparency-links { display: flex; margin-top: 30px; flex-wrap: wrap; gap: 10px; }
.transparency-links a { padding: 8px 12px; border: 1px solid #d9cafa; border-radius: 7px; color: var(--purple); background: var(--purple-soft); font-size: 12px; font-weight: 700; }
.program-link { display: inline-flex; margin-top: 16px; align-items: center; gap: 7px; }
.conference-publication-note { display: grid; margin-top: 35px; padding: 18px 20px; align-items: start; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; border: 1px solid #d9ccf7; border-radius: 11px; background: linear-gradient(120deg, #f7f3ff, #fcfbff); box-shadow: var(--shadow-sm); }
.conference-publication-note > i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 10px; color: var(--purple); background: #eee7ff; font-style: normal; }
.conference-publication-note > i .icon { width: 20px; height: 20px; }
.conference-publication-note h2 { margin: 0 0 8px; font-size: 1.2rem; }
.conference-publication-note p { margin: 0; color: #555667; font-size: 14px; line-height: 1.55; }
.conference-publication-note p + p { margin-top: 5px; }
.conference-publication-note time { color: var(--purple); font-weight: 700; }
.conference-indexing { position: relative; margin-top: 35px; padding: 22px; overflow: hidden; border: 1px solid #d9ccf7; border-radius: 13px; background: linear-gradient(135deg, #fbf9ff 0%, #f2ecff 100%); box-shadow: var(--shadow-sm); }
.conference-indexing::after { position: absolute; top: -85px; right: -55px; width: 190px; height: 190px; border-radius: 50%; background: rgba(111, 60, 207, .06); content: ""; pointer-events: none; }
.conference-indexing__heading { position: relative; z-index: 1; display: grid; margin-bottom: 17px; align-items: center; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; }
.conference-indexing__heading > i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg, #6d37d1, #4d1b9f); font-style: normal; box-shadow: 0 8px 18px rgba(82, 35, 168, .18); }
.conference-indexing__heading > i .icon { width: 21px; height: 21px; }
.conference-indexing__heading h2 { margin: 0 0 5px; font-size: 1.2rem; }
.conference-indexing__heading p { max-width: 650px; margin: 0; color: #555667; font-size: 14px; line-height: 1.55; }
.conference-indexing__platforms { position: relative; z-index: 1; display: grid; margin: 0; padding: 0; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 9px; list-style: none; }
.conference-indexing__platforms li { display: flex; min-width: 0; min-height: 54px; margin: 0; padding: 10px 12px; align-items: center; grid-column: span 2; gap: 9px; border: 1px solid rgba(111, 60, 207, .16); border-radius: 9px; color: var(--ink); background: rgba(255, 255, 255, .86); }
.conference-indexing__platforms li:nth-last-child(-n+2) { grid-column: span 3; }
.conference-indexing__platforms li > i { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 8px; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.conference-indexing__platforms li > i .icon { width: 15px; height: 15px; }
.conference-indexing__platforms strong { min-width: 0; font-size: 13px; line-height: 1.3; }
.conference-pricing { margin-top: 35px; }
.conference-pricing > h2 { margin-top: 0; }
.conference-pricing__intro { max-width: 650px; margin-bottom: 20px; }
.conference-pricing__table-wrap { overflow: hidden; border: 1px solid #ddd6ed; border-radius: 10px; background: #fff; box-shadow: var(--shadow-sm); }
.conference-pricing__table { width: 100%; border: 0; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
.conference-pricing__table th, .conference-pricing__table td { padding: 13px 14px; border-right: 1px solid #e6e0f1; border-bottom: 1px solid #e6e0f1; vertical-align: middle; }
.conference-pricing__table tr > *:last-child { border-right: 0; }
.conference-pricing__table tbody tr:last-child > * { border-bottom: 0; }
.conference-pricing__table thead th { color: var(--ink); background: #faf9fc; font-size: 14px; font-weight: 750; text-align: left; }
.conference-pricing__table thead th:first-child, .conference-pricing__table tbody th { width: 46%; }
.conference-pricing__table thead th:not(:first-child), .conference-pricing__table td { text-align: center; }
.conference-pricing__table thead span, .conference-pricing__table thead strong { display: block; }
.conference-pricing__table thead strong { margin-top: 4px; color: var(--purple); font-size: 22px; line-height: 1.15; }
.conference-pricing__table tbody th { color: #4f5060; background: #fff; font-size: 14px; font-weight: 500; text-align: left; }
.conference-pricing__table .is-featured { background: #f4efff; }
.conference-pricing__check { color: var(--purple); font-size: 19px; font-weight: 900; line-height: 1; }
.conference-pricing__dash { color: #9a9cab; font-size: 18px; line-height: 1; }
.conference-sections { margin-top: 35px; }
.conference-sections > h2 { margin-top: 0; }
.conference-sections__intro { max-width: 650px; margin-bottom: 20px; }
.conference-sections__grid { display: grid; align-items: start; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.conference-section-card { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow-sm); }
.conference-section-card summary { display: grid; min-height: 64px; padding: 13px 14px; align-items: center; grid-template-columns: 32px minmax(0, 1fr) 18px; gap: 10px; color: var(--ink); cursor: pointer; list-style: none; }
.conference-section-card summary::-webkit-details-marker { display: none; }
.conference-section-card summary > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--purple); background: var(--purple-soft); font-size: 11px; font-weight: 800; }
.conference-section-card summary strong { font-size: 14px; line-height: 1.35; }
.conference-section-card summary i { color: var(--purple); font-size: 20px; font-style: normal; font-weight: 500; line-height: 1; transition: transform .2s ease; }
.conference-section-card[open] summary i { transform: rotate(45deg); }
.conference-section-card > p { margin: 0 !important; padding: 0 14px 16px 56px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.citation-box { display: grid; padding: 20px; align-items: center; grid-template-columns: 1fr auto; gap: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); }
.citation-box cite { color: #444653; font-size: 13px; font-style: normal; }
.keywords { padding: 13px 16px; border-left: 3px solid var(--purple); background: var(--purple-soft); }
.publication-paper-list { display: grid; margin: 0; padding: 0; gap: 12px; list-style: none; }
.publication-paper-list li { display: grid; padding: 18px 20px; align-items: center; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 16px; border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: var(--shadow-sm); }
.publication-paper__number { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--purple); background: var(--purple-soft); font-size: 12px; font-weight: 800; }
.publication-paper__copy { min-width: 0; }
.publication-paper__copy h3 { margin: 0 0 5px; font-size: 15px; line-height: 1.4; }
.publication-paper__copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.publication-paper__actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.publication-paper__doi { color: var(--purple) !important; font-size: 12px; font-weight: 700; text-decoration: none !important; overflow-wrap: anywhere; }
.publication-paper__actions .button { gap: 6px; white-space: nowrap; text-decoration: none; }
.publication-paper__actions .icon { width: 15px; height: 15px; }
.publication-paper-list__empty { padding: 20px; border: 1px dashed #cdbdea; border-radius: 11px; background: var(--purple-soft); }
.publication-paper-list__empty p { margin: 0; color: var(--muted); }
.publication-details dl { margin: 0 0 22px; }
.publication-details dl > div { padding: 11px 0; border-bottom: 1px solid var(--line); }
.publication-details dt { color: var(--muted); font-size: 11px; }
.publication-details dd { margin: 2px 0 0; color: var(--ink); font-size: 13px; font-weight: 650; }
.publication-details .button + .button, .apply-card .button + .button { margin-top: 9px; }
.requirements-layout--single { padding-bottom: 40px; grid-template-columns: minmax(0, 1fr); }
.requirements-cta h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.requirements-cta .button { min-width: 180px; }
.structure-list { display: grid; margin: 0; padding: 0; gap: 6px; list-style: none; }
.structure-list li { display: grid; min-width: 0; padding: 9px 10px; align-items: start; grid-template-columns: 30px minmax(0, 1fr); gap: 9px; border: 0; border-radius: 8px; background: linear-gradient(135deg, #fbf9ff, #f7f3ff); }
.structure-list li > b { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: var(--purple); background: #eee7ff; font-size: 10px; font-weight: 800; }
.structure-list li > div { min-width: 0; }
.structure-list header { display: flex; margin-bottom: 3px; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 4px 8px; }
.structure-list strong { color: var(--ink); font-size: 15px; line-height: 1.4; }
.structure-list em { display: inline-flex; padding: 3px 7px; border: 1px solid #d9ccf7; border-radius: 99px; color: var(--purple); background: #f5f0ff; font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .05em; line-height: 1; }
.structure-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; overflow-wrap: anywhere; }
.requirements-mini-card { padding: 18px; }
.requirements-mini-card__header { display: grid; margin-bottom: 13px; align-items: center; grid-template-columns: 38px minmax(0, 1fr); gap: 11px; }
.requirements-mini-card__header > i { width: 38px; height: 38px; }
.requirements-mini-card__header .icon { width: 19px; height: 19px; }
.requirements-mini-card__header h3 { margin: 0 0 3px; font-size: 19px; letter-spacing: -.015em; }
.requirements-mini-card__header p { margin: 0; font-size: 14px; line-height: 1.45; }
.preflight-check__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 16px; }
.preflight-check__grid label { display: flex; min-width: 0; align-items: flex-start; gap: 8px; color: #555667; font-size: 14px; line-height: 1.45; cursor: pointer; }
.preflight-check__grid input { width: 16px; height: 16px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--purple); }
.useful-files__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.useful-file { display: flex; min-width: 0; min-height: 58px; padding: 10px 12px; align-items: center; gap: 10px; border: 1px solid var(--purple); border-radius: 8px; color: var(--purple); background: #fff; }
.useful-file--primary { color: #fff; background: linear-gradient(135deg, #6c36d2, #4c199d); }
.useful-file > i { display: grid; flex: 0 0 auto; place-items: center; font-style: normal; }
.useful-file .icon { width: 18px; height: 18px; }
.useful-file > span { display: flex; min-width: 0; flex-direction: column; }
.useful-file strong { font-size: 12px; line-height: 1.3; }
.useful-file small { margin-top: 2px; color: inherit; font-size: 10px; line-height: 1.35; opacity: .72; }
.useful-file.is-disabled { opacity: .48; cursor: not-allowed; }
@media (min-width: 641px) {
  .requirements-side > .requirements-mini-card { display: flex; min-height: 0; flex-direction: column; }
  .requirements-side .preflight-check__grid { flex: 1; align-content: space-evenly; }
}
.workflow-values { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.workflow-values > div:first-child { max-width: 760px; }
.workflow-values__actions { display: flex; flex: 0 0 auto; flex-direction: column; gap: 10px; }
.workflow-values__actions .button { min-width: 175px; }
.footer-subscribe form { flex-wrap: wrap; }
.footer-links strong, .footer-subscribe strong { font-size: 12px; }
.footer-links a { font-size: 12px; }
.footer-subscribe input, .footer-subscribe button, .footer-subscribe p { font-size: 11px; }
.footer-subscribe .footer-subscribe__notice { width: 100%; max-width: 390px; margin: 9px 0 0; color: #bbbccc; font-size: 10px; line-height: 1.45; }
.footer-subscribe__notice a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.footer-message { padding: 8px 10px; border-radius: 6px; color: #fff !important; background: rgba(255,255,255,.1); }
.site-footer__bottom { font-size: 11px; }
.site-footer__bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__bottom a:hover { color: #fff; }

@media (max-width: 1100px) {
  .header-submit { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .submission-layout { grid-template-columns: 1fr; gap: 38px; }
  .submission-intro { position: static; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-values { align-items: flex-start; flex-direction: column; gap: 28px; }
  .workflow-values__actions { flex-direction: row; }
}
@media (max-width: 580px) {
  .process-grid, .testimonial-grid, .form-grid { grid-template-columns: 1fr; }
  .submission-card { padding: 22px; }
  .citation-box { align-items: stretch; grid-template-columns: 1fr; }
  .citation-box .button { width: 100%; }
  .workflow-values__actions { width: 100%; flex-direction: column; }
  .workflow-values__actions .button { width: 100%; }
  .custom-logo { max-width: 165px; height: 40px; }
}

/* Version 2.0.2: compact academic hero inspired by the supplied reference. */
.hero { min-height: 440px; background: linear-gradient(135deg, #fbfaff 0%, #f2effc 100%); }
.hero::after { display: none; }
.hero__mesh { opacity: .28; }
.hero__grid { min-height: 440px; grid-template-columns: 1fr 1fr; gap: 40px; }
.hero__content { max-width: 610px; padding: 54px 0 72px; }
.hero__content h1 { max-width: 620px; font-size: clamp(2.25rem, 4.2vw, 4.1rem); line-height: 1.04; }
.hero__content p { max-width: 540px; font-size: 1rem; }
.hero__visual { min-height: 410px; align-self: stretch; }
.hero-book, .hero-plant { display: none; }
.hero-collage { position: relative; width: 100%; height: 410px; overflow: hidden; }
.hero-collage__panel { position: absolute; overflow: hidden; box-shadow: 0 22px 40px rgba(44, 24, 100, .16); }
.hero-collage__panel img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage__panel--research { top: 48px; left: 4%; width: 66%; height: 302px; clip-path: polygon(15% 0, 100% 0, 80% 100%, 0 100%); }
.hero-collage__panel--campus { top: 0; right: -5%; width: 47%; height: 360px; clip-path: polygon(30% 0, 100% 0, 80% 100%, 0 100%); }
.hero-collage__shape { position: absolute; display: block; pointer-events: none; }
.hero-collage__shape--top { top: 0; left: 37%; width: 115px; height: 95px; background: #bca8ff; clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%); opacity: .9; }
.hero-collage__shape--bottom { right: 7%; bottom: 0; width: 150px; height: 80px; background: linear-gradient(135deg, #c7b9ff, #8d6ae4); clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%); }
.hero-collage__label { position: absolute; z-index: 3; top: 114px; right: 11%; width: 125px; padding: 17px; color: #fff; background: rgba(93, 62, 171, .84); clip-path: polygon(20% 0, 100% 0, 78% 100%, 0 100%); font-size: 12px; font-weight: 700; line-height: 1.15; }
.hero-collage__label small { font-size: 10px; font-weight: 500; }
.hero-features { position: relative; z-index: 3; display: grid; margin-top: -30px; padding: 17px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; grid-template-columns: repeat(4, 1fr); box-shadow: var(--shadow); }
.hero-features > div { display: flex; min-width: 0; padding: 9px 20px; align-items: flex-start; gap: 12px; border-right: 1px solid var(--line); }
.hero-features > div:last-child { border-right: 0; }
.hero-features i { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border-radius: 8px; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.hero-features span { display: flex; min-width: 0; flex-direction: column; color: var(--muted); font-size: 11px; line-height: 1.3; }
.hero-features strong { margin-bottom: 3px; color: var(--ink); font-size: 12px; line-height: 1.15; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 670px; }
  .hero__content { padding-top: 50px; }
  .hero__visual { min-height: 300px; }
  .hero-collage { height: 300px; }
  .hero-features { margin-top: 20px; grid-template-columns: repeat(2, 1fr); }
  .hero-features > div:nth-child(2) { border-right: 0; }
  .hero-features > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 580px) {
  .hero__grid { min-height: 700px; }
  .hero__content { padding-top: 42px; }
  .hero-collage { height: 260px; }
  .hero-features { grid-template-columns: 1fr 1fr; padding: 10px; }
  .hero-features > div { padding: 10px 8px; gap: 8px; }
  .hero-features strong { font-size: 11px; }
  .hero-features span { font-size: 10px; }
  .hero-collage__label { top: 72px; right: 5%; width: 105px; font-size: 11px; }
}

/* Version 2.0.3: tighten hero rhythm and align the visual with the copy. */
.hero__grid { min-height: 420px; grid-template-columns: minmax(0, 48%) minmax(0, 52%); gap: 16px; }
.hero__content { padding: 40px 0 48px; }
.hero__content h1 { max-width: 590px; margin-bottom: 18px; font-size: clamp(2.3rem, 4.3vw, 3.7rem); line-height: 1.03; }
.hero__content p { max-width: 500px; margin-bottom: 24px; }
.hero__visual { height: 360px; min-height: 360px; align-self: center; margin-left: -8px; }
.hero-collage { height: 360px; }
.hero-collage__panel--research { top: 42px; height: 270px; }
.hero-collage__panel--campus { height: 320px; }
.hero-collage__label { top: 100px; }
.hero-collage__shape--top { height: 84px; }
.hero-collage__shape--bottom { height: 68px; }
.hero-features { margin-top: -24px; }
@media (max-width: 960px) and (min-width: 861px) {
  .hero__grid { grid-template-columns: minmax(0, 47%) minmax(0, 53%); gap: 10px; }
  .hero__content h1 { font-size: clamp(2.3rem, 4.3vw, 3.7rem); }
  .hero-features { grid-template-columns: repeat(2, 1fr); }
  .hero-features > div:nth-child(2) { border-right: 0; }
  .hero-features > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .hero__grid { min-height: 640px; gap: 8px; }
  .hero__content { padding: 42px 0 24px; }
  .hero__visual { height: 300px; min-height: 300px; margin-left: 0; }
  .hero-collage { height: 300px; }
  .hero-collage__panel--research { top: 34px; height: 224px; }
  .hero-collage__panel--campus { height: 266px; }
  .hero-collage__label { top: 76px; }
  .hero-features { margin-top: 20px; }
}

/* Version 2.0.4: keep the angled label decorative, not behind the copy. */
.hero-collage__label { width: 140px; padding: 17px 20px 17px 24px; background: transparent; clip-path: none; isolation: isolate; }
.hero-collage__label::before { position: absolute; z-index: -1; top: 0; right: -16px; bottom: 0; left: -12px; border-radius: 2px; background: linear-gradient(135deg, rgba(88, 45, 176, .94), rgba(72, 35, 157, .88)); clip-path: polygon(12% 0, 100% 0, 84% 100%, 0 100%); content: ""; }
@media (max-width: 580px) {
  .hero-collage__label { width: 112px; padding: 14px 15px 14px 19px; }
}

/* Version 2.0.5: place the message card over the image seam. */
.hero-collage__label { right: 21%; }
@media (max-width: 860px) and (min-width: 581px) {
  .hero-collage__label { right: 16%; }
}
@media (max-width: 580px) {
  .hero-collage__label { right: 5%; }
}

/* Version 2.0.9: one 40px rhythm above and below every internal hero. */
.page-hero + .section,
.about-hero + .section,
.detail-hero + .section { padding-top: 40px; }

/* Version 2.1: editorial review timeline. */
.review-page { padding: 40px 0 64px; background: linear-gradient(120deg, #fff 0%, #fbfaff 58%, #f5f1ff 100%); }
.review-page__header { margin-bottom: 40px; }
.review-page__header .eyebrow { margin-bottom: 13px; font-size: 12px; }
.review-page__header h1 { margin-bottom: 10px; font-size: clamp(2.3rem, 4.3vw, 3.7rem); }
.review-page__lead { margin: 0; color: var(--muted); font-size: 16px; font-weight: 400; }
.review-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; }
.review-timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.review-timeline::before { position: absolute; top: 18px; bottom: 22px; left: 18px; width: 1px; background: #ddd3f7; content: ""; }
.review-step { position: relative; display: grid; padding: 0 0 24px; align-items: start; grid-template-columns: 36px 52px minmax(0, 1fr); gap: 14px; }
.review-step:last-child { padding-bottom: 0; }
.review-step__number { position: relative; z-index: 1; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--purple); background: #ece6fc; font-size: 13px; font-weight: 800; }
.review-step:first-child .review-step__number { color: #fff; background: linear-gradient(135deg, #7040d5, #4b1ca4); box-shadow: 0 7px 16px rgba(91, 43, 189, .22); }
.review-step__icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid #e6ddfa; border-radius: 12px; color: var(--purple); background: #f7f3ff; font-style: normal; }
.review-step__icon .icon { width: 27px; height: 27px; }
.review-step h2 { margin: 0 0 6px; font-size: 18px; letter-spacing: -.02em; }
.review-step p { max-width: 600px; margin: 0; font-size: 15px; line-height: 1.55; }
.review-sidebar { display: grid; gap: 16px; }
.review-help-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.review-help-card h2 { margin-bottom: 8px; font-size: 1.35rem; }
.review-help-card p { margin-bottom: 20px; font-size: 15px; line-height: 1.55; }
.review-help-card .button { font-size: 14px; }
.review-help-card .button + .button { margin-top: 10px; }
.review-quote { position: relative; min-height: 170px; margin: 0; padding: 28px 26px; overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg, #f6f1ff, #eee6ff); }
.review-quote > span { display: block; height: 42px; color: #d0c0f5; font-family: Georgia, serif; font-size: 70px; font-weight: 800; line-height: .85; }
.review-quote p { max-width: 260px; margin: 8px 0 17px; color: #4a3d68; font-size: 18px; line-height: 1.45; }
.review-quote i { display: block; width: 38px; height: 2px; background: var(--purple); }
@media (max-width: 860px) {
  .review-page { padding: 40px 0 64px; }
  .review-layout { grid-template-columns: 1fr; gap: 36px; }
  .review-sidebar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .review-page { padding-top: 40px; }
  .review-page__header { margin-bottom: 40px; }
  .review-page__lead { font-size: 15px; }
  .review-step { padding-bottom: 24px; grid-template-columns: 30px 46px minmax(0, 1fr); gap: 11px; }
  .review-timeline::before { left: 15px; }
  .review-step__number { width: 30px; height: 30px; font-size: 11px; }
  .review-step__icon { width: 46px; height: 46px; border-radius: 10px; }
  .review-step__icon .icon { width: 23px; height: 23px; }
  .review-step h2 { font-size: 17px; }
  .review-step p { font-size: 14px; }
  .review-sidebar { grid-template-columns: 1fr; }
}

/* Version 2.2: action-led contact page. */
.contact-page { padding: 40px 0 76px; background: linear-gradient(120deg, #fff 0%, #fbfaff 60%, #f6f2ff 100%); }
.contact-page__layout { display: grid; align-items: stretch; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .85fr); gap: 48px; }
.contact-page__content { display: flex; min-width: 0; flex-direction: column; }
.contact-page__header { margin-bottom: 28px; }
.contact-page__header .eyebrow { margin-bottom: 13px; }
.contact-page__header h1 { margin-bottom: 10px; font-size: clamp(2.3rem, 4.3vw, 3.7rem); }
.contact-page__header p { margin: 0; font-size: 16px; }
.contact-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.contact-action-card { display: flex; min-height: 210px; padding: 20px; flex-direction: column; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-action-card__header { display: flex; min-height: 42px; margin-bottom: 14px; align-items: center; gap: 12px; }
.contact-action-card__header > i, .contact-info-grid i, .contact-support-band > i { display: grid; flex: 0 0 auto; width: 42px; height: 42px; place-items: center; border-radius: 10px; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.contact-action-card h2 { min-width: 0; margin: 0; font-size: 17px; line-height: 1.25; }
.contact-action-card p { margin-bottom: 18px; font-size: 14px; line-height: 1.55; }
.contact-action-card .text-link { margin-top: auto; align-self: flex-start; font-size: 13px; }
.contact-info-grid { display: grid; margin-top: 14px; margin-bottom: 14px; overflow: hidden; border: 1px solid #e7e0f8; border-radius: 12px; background: linear-gradient(135deg, #f8f4ff, #f3edff); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-info-grid > div { display: flex; padding: 18px 20px; align-items: center; gap: 13px; }
.contact-info-grid > div + div { border-left: 1px solid #dfd4f6; }
.contact-info-grid span, .contact-support-band > span { display: flex; min-width: 0; flex-direction: column; }
.contact-info-grid strong, .contact-support-band strong { font-size: 14px; }
.contact-info-grid small, .contact-support-band small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.contact-support-band { display: grid; margin-top: auto; padding: 18px 20px; align-items: center; border: 1px solid #e7e0f8; border-radius: 12px; background: linear-gradient(135deg, #faf8ff, #f3edff); grid-template-columns: auto minmax(0, 1fr) auto; gap: 14px; }
.contact-support-band__links { display: flex; align-items: flex-end; flex-direction: column; gap: 3px; }
.contact-support-band__links a { color: var(--purple); font-size: 13px; font-weight: 700; }
.contact-page__address { display: flex; margin: 14px 0 0; padding: 0 4px; align-items: center; gap: 9px; font-size: 13px; }
.contact-page__address .icon { width: 18px; color: var(--purple); }
.contact-page__form { position: sticky; top: 100px; height: 100%; padding: 28px; scroll-margin-top: 90px; }
.contact-page__form h2 { margin-bottom: 20px; font-size: 1.45rem; }
.contact-page__form .contact-form { gap: 16px; }
.contact-page__form .contact-form label { font-size: 14px; }
.contact-page__form .contact-form input, .contact-page__form .contact-form textarea { padding: 12px 13px; font-size: 15px; }
.contact-page__form .consent-label { font-size: 12px; }
@media (max-width: 960px) {
  .contact-page__layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-page__form { position: static; height: auto; }
}
@media (max-width: 700px) {
  .contact-actions { grid-template-columns: 1fr; }
  .contact-action-card { min-height: 0; }
}
@media (max-width: 580px) {
  .contact-page { padding: 40px 0 60px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-grid > div + div { border-top: 1px solid #dfd4f6; border-left: 0; }
  .contact-support-band { align-items: start; grid-template-columns: auto 1fr; }
  .contact-support-band__links { grid-column: 2; align-items: flex-start; }
  .contact-page__form { padding: 22px; }
}

/* Version 2.2.58: centered timeline arrows and a vertical statement sequence. */
.about-page { overflow: hidden; }
.about-page .section { padding-top: 40px; padding-bottom: 40px; }
.about-story-hero { position: relative; overflow: hidden; background: #fff; }
.about-story-hero::after { position: absolute; top: -180px; right: -150px; width: 820px; height: 820px; border-radius: 50%; background: radial-gradient(circle, rgba(118,73,213,.08), transparent 70%); content: ""; pointer-events: none; }
.about-story-hero__grid { position: relative; z-index: 1; display: grid; min-height: 0; padding: 40px 0; align-items: start; grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr); gap: 20px; }
.about-story-hero__content { max-width: 680px; }
.about-story-hero__content h1 { margin-bottom: 22px; font-size: clamp(2.3rem, 4.3vw, 3.7rem); }
.about-story-hero__content h1 span { display: block; white-space: nowrap; }
.about-story-hero__content p { max-width: 640px; margin-bottom: 0; font-size: 16px; line-height: 1.72; }
.about-story-hero__actions { margin-top: 30px; }
.about-story-hero__actions .button { min-width: 190px; }
.about-story-hero__actions .button:first-child { gap: 14px; }
.about-story-hero__actions .button:first-child span { font-size: 1.35em; line-height: .8; transition: transform .2s ease; }
.about-story-hero__actions .button:first-child:hover span { transform: translateX(3px); }
.about-story-hero__visual { position: relative; min-width: 0; min-height: 430px; padding: 24px 0 18px 64px; align-self: start; transform: translateX(100px); }
.about-story-hero__visual::before { position: absolute; top: 4%; right: -10%; bottom: 2%; left: 2%; z-index: -1; border-radius: 50%; background: radial-gradient(ellipse, rgba(126,80,220,.11), rgba(241,236,252,.035) 62%, transparent 74%); content: ""; }
.about-flow__curve { position: absolute; top: -18px; bottom: -12px; left: 0; width: 145px; height: calc(100% + 30px); overflow: visible; }
.about-flow__curve path { fill: none; stroke: #c6b3f2; stroke-width: 1.5; }
.about-flow__curve circle { fill: var(--purple); stroke: #fff; stroke-width: 2; }
.about-flow { position: relative; z-index: 1; display: grid; width: min(100%, 490px); margin: 0; padding: 0; gap: 10px; list-style: none; }
.about-flow li { display: grid; min-height: 82px; align-items: center; grid-template-columns: 40px 48px minmax(0, 1fr); gap: 13px; }
.about-flow__number { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #ded3fa; border-radius: 50%; color: var(--purple); background: #f4efff; font-size: 11px; font-weight: 750; }
.about-flow li > i { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 12px; color: var(--purple); background: rgba(242,237,255,.92); font-style: normal; }
.about-flow li > i svg { width: 21px; height: 21px; }
.about-flow__copy { min-width: 0; }
.about-flow__copy strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 15px; line-height: 1.25; }
.about-flow__copy small { display: block; color: var(--muted); font-size: 11.5px; line-height: 1.4; }
.about-section-heading { max-width: 800px; margin-bottom: 38px; }
.about-section-heading .eyebrow { margin-bottom: 12px; }
.about-section-heading h2, .about-mission h2, .about-standards h2 { margin-bottom: 16px; font-size: clamp(1.75rem, 3vw, 2.6rem); }
.about-role .about-section-heading { max-width: none; }
.about-role .about-section-heading h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); white-space: nowrap; }
.about-role .about-section-heading p { max-width: none; white-space: nowrap; }
.about-community .about-section-heading, .about-principles .about-section-heading, .about-standards__intro { max-width: none; }
.about-community .about-section-heading h2, .about-principles .about-section-heading h2, .about-standards__intro h2 { white-space: nowrap; }
.about-section-heading p { max-width: 710px; margin: 0; font-size: 16px; }
.about-role__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.about-role__grid article { min-height: 0; padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.about-role__grid i, .about-principles__grid i, .about-standards__grid i { display: grid; width: 44px; height: 44px; margin-bottom: 22px; place-items: center; border: 1px solid #ddd1f8; border-radius: 11px; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.about-role__grid h3, .about-community__grid h3, .about-principles__grid h3, .about-standards__grid h3 { margin: 0 0 10px; font-size: 17px; letter-spacing: -.02em; }
.about-role__grid p, .about-community__grid p, .about-principles__grid p, .about-standards__grid p { margin: 0; font-size: 14px; line-height: 1.62; }
.about-mission__grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); gap: 78px; }
.about-mission__grid > div { max-width: 710px; }
.about-mission__grid > div p { margin-bottom: 16px; font-size: 16px; line-height: 1.72; }
.about-mission blockquote { position: relative; margin: 0; padding: 42px; overflow: hidden; border: 1px solid #e4dcf8; border-radius: 20px; background: linear-gradient(145deg, #f6f1ff, #ece3ff); box-shadow: 0 18px 45px rgba(59,35,116,.1); }
.about-mission blockquote > span { display: block; height: 50px; color: #cbbaf1; font-family: Georgia, serif; font-size: 82px; font-weight: 800; line-height: .85; }
.about-mission blockquote p { margin: 14px 0 28px; color: #38275f; font-size: clamp(1.45rem, 2.2vw, 2rem); font-weight: 650; line-height: 1.35; }
.about-mission blockquote i { display: block; width: 48px; height: 3px; background: var(--purple); }
.about-community__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.about-community__grid article { position: relative; min-height: 0; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: linear-gradient(140deg, #fff, #fbf9ff); box-shadow: var(--shadow-sm); }
.about-community__grid article > span { position: absolute; top: 18px; right: 24px; color: #e7ddfb; font-size: 58px; font-weight: 850; line-height: 1; }
.about-community__grid i { display: grid; width: 50px; height: 50px; margin-bottom: 38px; place-items: center; border-radius: 13px; color: var(--purple); background: var(--purple-soft); font-style: normal; }
.about-community__grid h3 { font-size: 21px; }
.about-community__grid p { max-width: 470px; font-size: 15px; }
.about-principles__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.about-principles__grid article { min-height: 0; padding: 25px 22px; border-top: 3px solid var(--purple); border-radius: 0 0 12px 12px; background: #fff; box-shadow: var(--shadow-sm); }
.about-principles__grid i { width: 40px; height: 40px; margin-bottom: 26px; }
.about-process__timeline { position: relative; display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; list-style: none; }
.about-process__timeline::before { position: absolute; top: 25px; right: 5%; left: 5%; height: 1px; background: #d9cef4; content: ""; }
.about-process__timeline li { position: relative; z-index: 1; padding-top: 74px; }
.about-process__timeline li::after { position: absolute; top: 13px; left: calc(50% + 27px); display: grid; width: 24px; height: 24px; place-items: center; color: #8f70d5; background: var(--soft); content: "→"; font-size: 20px; line-height: 1; }
.about-process__timeline li:last-child::after { display: none; }
.about-process__timeline li > span { position: absolute; top: 0; left: 0; display: grid; width: 50px; height: 50px; place-items: center; border: 7px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #7040d5, #461796); font-size: 12px; font-weight: 800; box-shadow: 0 0 0 1px #d8ccf5; }
.about-process__timeline h3 { margin-bottom: 9px; font-size: 18px; }
.about-process__timeline p { margin: 0; font-size: 14px; line-height: 1.6; }
.about-standards__intro { max-width: 850px; margin-bottom: 36px; }
.about-standards__intro > p { margin: 0; font-size: 16px; line-height: 1.72; }
.about-standards__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.about-standards__grid article { display: flex; min-height: 0; padding: 24px; align-items: flex-start; gap: 16px; border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: var(--shadow-sm); }
.about-standards__grid i { margin: 0; flex: 0 0 auto; }
.about-standards__grid h3 { margin-top: 2px; }
.about-standards__link { display: inline-flex; margin-top: 26px; align-items: center; font-size: 14px; }
.about-statement { padding: 40px 0; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(116,75,211,.3), transparent 35%), #15142f; }
.about-statement__grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1fr) 260px; gap: 40px; }
.about-statement h2 { max-width: 820px; margin-bottom: 18px; color: #fff; font-size: clamp(1.75rem, 3vw, 2.6rem); }
.about-statement p { max-width: 670px; margin: 0; color: #c9c7d8; font-size: 16px; }
.about-statement__words { display: flex; padding-left: 38px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 8px; }
.about-statement__words span { font-size: clamp(1.35rem, 2.3vw, 2rem); font-weight: 750; }
.about-statement__words i { color: #9d7be7; font-size: 24px; font-style: normal; transform: rotate(90deg); }
.about-final-cta { text-align: center; }
.about-final-cta__inner { display: flex; align-items: center; flex-direction: column; }
.about-final-cta h2 { max-width: 760px; margin-bottom: 14px; font-size: clamp(1.75rem, 3vw, 2.6rem); }
.about-final-cta p { margin-bottom: 28px; font-size: 16px; }
.about-final-cta .button-row { justify-content: center; }
.about-final-cta .button { min-width: 190px; }
.about-final-cta__contact { margin-top: 25px; color: var(--muted); font-size: 13px; }
.about-final-cta__contact span { margin-left: 4px; color: var(--purple); transition: margin .2s; }
.about-final-cta__contact:hover span { margin-left: 9px; }

@media (max-width: 1050px) {
  .about-story-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr); gap: 18px; }
  .about-story-hero__visual { transform: translateX(20px); }
  .about-role__grid, .about-principles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-role__grid article { min-height: 0; }
  .about-principles__grid article { min-height: 0; }
  .about-mission__grid { gap: 42px; }
  .about-standards__grid { grid-template-columns: 1fr; }
  .about-standards__grid article { min-height: 0; }
}
@media (max-width: 860px) {
  .about-page .section { padding-top: 40px; padding-bottom: 40px; }
  .about-story-hero__grid { min-height: auto; padding: 40px 0; grid-template-columns: 1fr; }
  .about-story-hero__content { max-width: 720px; }
  .about-role .about-section-heading h2 { white-space: normal; }
  .about-role .about-section-heading p { white-space: normal; }
  .about-community .about-section-heading h2, .about-principles .about-section-heading h2, .about-standards__intro h2 { white-space: normal; }
  .about-story-hero__visual { width: min(100%, 580px); min-height: 410px; margin: 0 auto; padding: 18px 0 8px 64px; transform: none; }
  .about-mission__grid, .about-statement__grid { grid-template-columns: 1fr; gap: 36px; }
  .about-mission blockquote { max-width: 590px; }
  .about-process__timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 28px; }
  .about-process__timeline::before, .about-process__timeline li::after { display: none; }
  .about-process__timeline li { padding: 70px 20px 20px 0; border-bottom: 1px solid var(--line); }
  .about-statement__words { padding-left: 0; justify-content: flex-start; }
}
@media (max-width: 640px) {
  .requirements-layout--single { padding-bottom: 36px; }
  .requirements-panels { min-width: 0; grid-template-columns: minmax(0, 1fr); }
  .requirements-side { height: auto; grid-template-rows: auto; }
  .requirements-card { min-width: 0; padding: 18px; }
  .requirements-list li { padding: 5px 0; grid-template-columns: 24px minmax(0, 1fr); gap: 1px 8px; }
  .requirements-list li > strong, .requirements-list li > span { grid-column: 2; }
  .requirements-list li > span { padding-top: 0; }
  .notice { grid-template-columns: 24px minmax(0, 1fr); }
  .notice strong { grid-column: 2; }
  .notice span { padding-top: 0; grid-column: 2; }
  .structure-list li { padding: 14px; grid-template-columns: 32px minmax(0, 1fr); gap: 11px; }
  .structure-list li > b { width: 30px; height: 30px; font-size: 10px; }
  .preflight-check__grid { grid-template-columns: 1fr; }
  .home-page > .section, .home-page > .partners-section, .home-page > .cta-band { padding-top: 36px; padding-bottom: 36px; }
  .about-page .section { padding-top: 36px; padding-bottom: 36px; }
  .about-story-hero__grid { padding: 36px 0; gap: 38px; }
  .about-story-hero__content p { font-size: 15px; }
  .about-story-hero__content h1 span { white-space: normal; }
  .about-story-hero__actions .button { width: 100%; }
  .about-story-hero__visual { width: 100%; min-height: 370px; margin: 0; padding: 8px 0 0 34px; }
  .about-flow__curve { left: -26px; width: 125px; }
  .about-flow { gap: 5px; }
  .about-flow li { min-height: 78px; grid-template-columns: 35px 42px minmax(0, 1fr); gap: 9px; }
  .about-flow__number { width: 32px; height: 32px; font-size: 10px; }
  .about-flow li > i { width: 40px; height: 40px; }
  .about-flow__copy strong { font-size: 14px; }
  .about-flow__copy small { font-size: 10.5px; }
  .about-role__grid, .about-community__grid, .about-principles__grid, .about-process__timeline { grid-template-columns: 1fr; }
  .about-role__grid article, .about-community__grid article, .about-principles__grid article { min-height: 0; }
  .about-section-heading { margin-bottom: 30px; }
  .about-mission blockquote { padding: 28px; }
  .about-process__timeline li { padding-right: 0; }
  .about-statement { padding: 36px 0; }
  .about-statement__words { align-items: flex-start; flex-direction: column; gap: 7px; }
  .about-final-cta .button-row { width: 100%; }
  .about-final-cta .button { width: 100%; }
}

@media (max-width: 640px) {
  .publication-paper-list li { align-items: start; grid-template-columns: 38px minmax(0, 1fr); }
  .publication-paper__actions { grid-column: 2; align-items: flex-start; justify-content: flex-start; flex-direction: column; }
  .conference-publication-note { padding: 16px; grid-template-columns: 36px minmax(0, 1fr); gap: 11px; }
  .conference-publication-note > i { width: 36px; height: 36px; }
  .conference-publication-note h2 { font-size: 1.05rem; }
  .conference-publication-note p { font-size: 13px; }
  .conference-indexing { padding: 16px; }
  .conference-indexing__heading { grid-template-columns: 36px minmax(0, 1fr); gap: 11px; }
  .conference-indexing__heading > i { width: 36px; height: 36px; }
  .conference-indexing__heading h2 { font-size: 1.05rem; }
  .conference-indexing__heading p { font-size: 13px; }
  .conference-indexing__platforms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conference-indexing__platforms li, .conference-indexing__platforms li:nth-last-child(-n+2) { grid-column: span 1; }
  .conference-indexing__platforms li:last-child { grid-column: span 2; }
  .conference-pricing__table th, .conference-pricing__table td { padding: 10px 8px; }
  .conference-pricing__table thead th { font-size: 11.5px; }
  .conference-pricing__table thead strong { font-size: 18px; }
  .conference-pricing__table tbody th { font-size: 12px; }
  .conference-sections__grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .conference-indexing__platforms { grid-template-columns: 1fr; }
  .conference-indexing__platforms li, .conference-indexing__platforms li:last-child { grid-column: auto; }
}

/* Version 3.0.1: compact the mobile home hero without changing its collage layout. */
@media (max-width: 580px) {
  .hero__grid { min-height: 0; }
  .hero__content { padding-top: 24px; padding-bottom: 24px; }
}
