*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --ink: #1d1d1f;
  --muted: rgba(29, 29, 31, 0.66);
  --faint: rgba(29, 29, 31, 0.12);
  --dark: #050505;
  --dark-soft: #111113;
  --dark-card: #1c1c1e;
  --line: rgba(29, 29, 31, 0.12);
  --accent: #0071e3;
  --accent-strong: #2997ff;
  --hot: #7c3cff;
  --glow: rgba(0, 153, 255, 0.32);
  --radius: 24px;
  --nav-height: 64px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.08);
}

html { scroll-behavior: smooth; }
section[id], article[id] { scroll-margin-top: calc(var(--nav-height) + 28px); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
  text-rendering: optimizeLegibility;
}

body.dark {
  --bg: #050505;
  --surface: #111113;
  --surface-soft: #18181a;
  --ink: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.68);
  --faint: rgba(245, 245, 247, 0.14);
  --line: rgba(245, 245, 247, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.34);
}

body.dark .scene-light, body.dark .scene-white { background: var(--bg); color: var(--ink); }
body.dark .route-card, body.dark .content-card, body.dark .feature-card, body.dark .academic-field-card, body.dark .project-hero-card, body.dark .writing-modern article, body.dark .menu-panel { background: var(--surface); }

.sv { display: none; }
body.swedish .en { display: none; }
body.swedish .sv { display: revert; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(0, 113, 227, 0.32); outline-offset: 3px; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; transform: translateY(-160%); transition: transform 0.2s; background: var(--ink); color: var(--bg); padding: 10px 14px; border-radius: 999px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.wide-container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.narrow-container { max-width: 860px; margin: 0 auto; padding: 0 28px; }

.site-header { position: sticky; top: 0; z-index: 100; min-height: var(--nav-height); background: rgba(255, 255, 255, 0.76); border-bottom: 1px solid var(--line); backdrop-filter: saturate(180%) blur(20px); }
body.dark .site-header { background: rgba(5, 5, 5, 0.78); }
.site-nav { min-height: var(--nav-height); display: flex; justify-content: space-between; gap: 22px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--bg); font-size: 13px; }
.nav-controls { display: flex; gap: 8px; align-items: center; }
.menu-toggle { display: inline-grid; place-items: center; gap: 4px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); color: var(--bg); cursor: pointer; transition: transform 0.18s, background 0.18s, box-shadow 0.18s; box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.menu-toggle span { display: block; width: 17px; height: 2px; border-radius: 999px; background: currentColor; transition: transform 0.2s, opacity 0.2s; }
.menu-toggle:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(0,0,0,0.18); }
body.menu-open .menu-toggle { background: var(--accent); color: #fff; border-color: transparent; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.site-menu { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
body.menu-open { overflow: hidden; }
.menu-backdrop { position: absolute; inset: 0; z-index: 1; background: rgba(245,245,247,0.72); opacity: 0; transition: opacity 0.24s; backdrop-filter: blur(9px); }
body.dark .menu-backdrop { background: rgba(0,0,0,0.58); }
.menu-panel { position: absolute; z-index: 2; top: calc(var(--nav-height) + 14px); right: max(18px, calc((100vw - 1180px) / 2 + 28px)); width: min(560px, calc(100vw - 36px)); max-height: calc(100vh - var(--nav-height) - 34px); overflow: auto; padding: 26px; border-radius: 34px; background: linear-gradient(145deg, var(--surface), var(--surface-soft)); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-10px) scale(0.98); opacity: 0; transition: opacity 0.24s, transform 0.24s; }
body.menu-open .site-menu { pointer-events: auto; }
body.menu-open .menu-backdrop { opacity: 1; }
body.menu-open .menu-panel { opacity: 1; transform: none; }
.menu-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.menu-kicker { display: block; color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; }
.menu-panel-head strong { display: block; font-size: 1.28rem; letter-spacing: -0.05em; }
.menu-close { min-height: 36px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); color: var(--ink); cursor: pointer; font: inherit; font-size: 12px; font-weight: 850; padding: 0 14px; }
.menu-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 22px 0; }
.menu-links a { position: relative; display: flex; align-items: flex-end; min-height: 104px; padding: 20px; border-radius: 24px; background: var(--surface-soft); border: 1px solid transparent; color: var(--ink); transition: transform 0.16s, border-color 0.16s, background 0.16s, box-shadow 0.16s; overflow: hidden; }
.menu-links a::before { content: ""; position: absolute; inset: auto 16px 16px auto; width: 88px; height: 88px; border-radius: 50%; background: radial-gradient(circle, rgba(0,113,227,0.14), transparent 68%); pointer-events: none; }
.menu-link-copy { display: grid; position: relative; z-index: 1; align-self: end; }
.menu-link-copy strong { font-size: clamp(1.45rem, 3vw, 2.15rem); line-height: 0.96; letter-spacing: -0.07em; }
.menu-links a:hover, .menu-links a.active { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 32%, var(--line)); background: var(--surface); box-shadow: var(--shadow-soft); }
.menu-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.menu-actions button, .menu-actions a { min-height: 46px; border: 1px solid var(--line); border-radius: 999px; background: var(--ink); color: var(--bg); font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; text-align: center; padding: 0 10px; transition: transform 0.16s, background 0.16s; }
.menu-actions button:hover, .menu-actions a:hover { transform: translateY(-1px); }
body.dark .menu-actions button, body.dark .menu-actions a { background: #f5f5f7; color: #050505; }

.scene-light { background: var(--bg); }
.scene-white { background: var(--surface); }
.scene-dark { background: #000; color: #fff; }

.hero { min-height: calc(100vh - var(--nav-height)); display: grid; align-items: stretch; overflow: hidden; }
.hero-home { background: radial-gradient(circle at 72% 18%, rgba(0, 153, 255, 0.2), transparent 34rem), radial-gradient(circle at 28% 72%, rgba(124, 60, 255, 0.13), transparent 28rem), var(--bg); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 70px; align-items: center; padding-top: 54px; }
.hero-copy { padding-bottom: 0; }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 650; line-height: 0.98; letter-spacing: -0.07em; max-width: 920px; }
h2 { font-size: clamp(2.1rem, 4vw, 4.1rem); font-weight: 650; line-height: 1.02; letter-spacing: -0.06em; }
h3 { font-size: 1.45rem; line-height: 1.14; letter-spacing: -0.035em; }
.hero-sub { color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.45rem); line-height: 1.5; max-width: 680px; margin-top: 24px; }
.hero-sub.compact { max-width: 620px; font-size: clamp(1.02rem, 1.55vw, 1.22rem); }
.hero-keywords { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-keywords > span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 13px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.55); color: var(--muted); font-size: 13px; font-weight: 780; backdrop-filter: blur(16px); }
body.dark .hero-keywords > span { background: rgba(255,255,255,0.08); }
.scene-dark .hero-sub, .scene-dark .split-head p { color: rgba(255, 255, 255, 0.68); }
.hero-actions, .card-actions, .center-action { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-action-cards { display: flex; flex-wrap: wrap; gap: 12px; max-width: 560px; }
.hero-action-card { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; padding: 0 26px; border-radius: 999px; background: rgba(255,255,255,0.54); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); transition: transform 0.16s, background 0.16s, border-color 0.16s, box-shadow 0.16s; }
.hero-action-card:hover { transform: translateY(-2px); background: var(--surface); border-color: rgba(0,113,227,0.28); box-shadow: var(--shadow); }
.hero-action-card strong { font-size: 1rem; line-height: 1; letter-spacing: -0.035em; }
.hero-action-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
body.dark .hero-action-card:not(.hero-action-primary) { background: rgba(255,255,255,0.08); }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; border-radius: 999px; padding: 0 20px; font-size: 15px; font-weight: 650; transition: transform 0.16s, background 0.16s, color 0.16s; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 36px rgba(0, 113, 227, 0.28); }
.button-secondary { background: rgba(255,255,255,0.45); border: 1px solid var(--line); color: var(--ink); backdrop-filter: blur(18px); }
.button-invert { background: #fff; color: #000; }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: end center; }
.hero-portrait-clean { place-items: center; }
.hero-portrait-clean .portrait-panel { width: min(390px, 94%); }
.orbital-field { position: absolute; inset: -42px; filter: blur(0); }
.orb { position: absolute; border-radius: 50%; opacity: 0.88; animation: drift 9s ease-in-out infinite alternate; }
.orb-one { width: 260px; height: 260px; right: 18px; top: 28px; background: radial-gradient(circle, rgba(0,153,255,0.95), rgba(0,153,255,0.05) 66%, transparent); }
.orb-two { width: 190px; height: 190px; left: 0; bottom: 120px; background: radial-gradient(circle, rgba(124,60,255,0.8), rgba(124,60,255,0.05) 68%, transparent); animation-delay: -2s; }
.orb-three { width: 130px; height: 130px; right: 40px; bottom: 36px; background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(0,153,255,0.12) 60%, transparent); animation-delay: -4s; }
.portrait-panel { position: relative; align-self: end; width: min(360px, 92%); z-index: 2; }
.portrait-panel img, .page-portrait { width: 100%; display: block; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.portrait-panel img { aspect-ratio: 4 / 5; object-position: center top; }
.portrait-panel::before { content: ""; position: absolute; inset: -1px; border-radius: 34px; padding: 1px; background: linear-gradient(145deg, rgba(0,153,255,0.8), rgba(255,255,255,0.6), rgba(124,60,255,0.75)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.portrait-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 12px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.76); backdrop-filter: blur(20px); color: #1d1d1f; font-size: 13px; font-weight: 700; text-align: center; }
.float-card { position: absolute; z-index: 3; display: grid; gap: 2px; min-width: 148px; padding: 14px 16px; border-radius: 20px; background: rgba(255,255,255,0.84); border: 1px solid rgba(255,255,255,0.72); box-shadow: 0 20px 55px rgba(0,0,0,0.14); backdrop-filter: blur(18px); color: #1d1d1f; }
.float-card strong { font-size: 15px; letter-spacing: -0.04em; }
.float-card span { color: rgba(29,29,31,0.68); font-size: 12px; font-weight: 700; }
body.dark .float-card { background: rgba(17,17,19,0.88); border-color: rgba(255,255,255,0.16); color: #f5f5f7; box-shadow: 0 20px 55px rgba(0,0,0,0.48); }
body.dark .float-card span { color: rgba(245,245,247,0.74); }
.float-card-one { top: 88px; left: -20px; }
.float-card-two { right: -26px; top: 238px; }
.float-card-three { left: 0; bottom: 86px; }

.signal-strip { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.signal-grid div { padding: 18px; border-radius: 22px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11); }
.signal-grid span { display: block; color: var(--accent-strong); font-size: 12px; font-weight: 850; margin-bottom: 26px; }
.signal-grid strong { display: block; font-size: 1.16rem; letter-spacing: -0.045em; }
.signal-grid small { display: block; color: rgba(255,255,255,0.58); margin-top: 6px; line-height: 1.35; }

.route-section, .press-strip, .content-section, .media-hub, .invitation-section { padding: 100px 0; }
.section-head { margin-bottom: 42px; }
.split-head { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; align-items: end; }
.split-head p { color: var(--muted); font-size: 1.05rem; }
.center-head { text-align: center; max-width: 860px; margin-left: auto; margin-right: auto; }

.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.route-card, .content-card, .feature-card, .project-hero-card, .writing-modern article { background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 260px; box-shadow: var(--shadow-soft); opacity: 1; transform: none; transition: opacity 0.6s, transform 0.6s, box-shadow 0.18s; }
.route-card.visible, .content-card.visible, .feature-card.visible, .media-panel.visible { opacity: 1; transform: none; }
.route-card:hover, .media-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.route-card.dark-card { background: #000; color: #fff; }
.route-card p, .content-card p, .feature-card p, .project-hero-card p, .writing-modern p { color: var(--muted); margin-top: 14px; }
.route-card.dark-card p { color: rgba(255, 255, 255, 0.66); }
.route-card h3 { max-width: 12ch; }
.route-card p { max-width: 28ch; }
.media-marquee { overflow: hidden; margin: 6px 0 28px; color: rgba(255,255,255,0.22); font-size: clamp(2.6rem, 9vw, 8rem); line-height: 0.9; font-weight: 850; letter-spacing: -0.08em; white-space: nowrap; }
.media-marquee span { display: inline-block; animation: marquee 24s linear infinite; }
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 46px; }
.logo-wall.featured-logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.logo-tile { display: grid; place-items: center; aspect-ratio: 1 / 1; border-radius: 28px; background: linear-gradient(145deg, #161618, #09090a); border: 1px solid rgba(255, 255, 255, 0.12); color: #fff; font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 850; letter-spacing: -0.09em; transition: transform 0.18s, background 0.18s, border-color 0.18s; box-shadow: inset 0 0 0 1px rgba(0,153,255,0.05), 0 18px 48px rgba(0,0,0,0.28); }
.source-logo { grid-template-rows: minmax(0, 1fr) auto; gap: 14px; padding: 22px; background: rgba(255,255,255,0.96); color: #000; }
.source-logo img { max-width: 92%; max-height: 92px; object-fit: contain; filter: none; }
.source-logo img[alt="Ship of a New Story"] { max-width: 108%; max-height: 110px; }
.source-logo .logo-label { align-self: end; font-size: 12px; line-height: 1.1; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,0.58); text-align: center; }
.logo-tile:hover { transform: translateY(-4px) scale(1.015); border-color: rgba(41,151,255,0.45); }
.source-note { max-width: 760px; margin: 26px auto 0; color: rgba(255,255,255,0.48); text-align: center; font-size: 13px; line-height: 1.45; }
.source-note.light-note { color: var(--muted); margin-top: 34px; text-align: left; }
.center-action { justify-content: center; }

.invitation-card { position: relative; overflow: hidden; border-radius: 36px; padding: clamp(32px, 7vw, 72px); background: #000; color: #fff; box-shadow: var(--shadow); }
.invitation-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -80px; top: -120px; background: radial-gradient(circle, rgba(0,153,255,0.48), transparent 64%); }
.invitation-card h2, .invitation-card p, .invitation-card a, .invitation-card .eyebrow { position: relative; z-index: 1; }
.invitation-card p { color: rgba(255,255,255,0.68); max-width: 640px; margin-top: 18px; font-size: 1.12rem; }

.page-hero { padding: 110px 0 92px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: end; }
.page-hero-grid.single { grid-template-columns: 1fr; }
.page-portrait { aspect-ratio: 4 / 5; border-radius: 32px; object-position: center; }

.prose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.academic-field-grid { display: grid; grid-template-columns: 1.15fr 0.9fr 0.9fr; gap: 18px; align-items: stretch; }
.academic-field-card { position: relative; min-height: 520px; overflow: hidden; border-radius: 34px; background: #000; color: #fff; box-shadow: var(--shadow-soft); isolation: isolate; }
.academic-field-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.86) contrast(1.05); transform: scale(1.02); }
.academic-png-card { background: radial-gradient(circle at 60% 18%, rgba(41,151,255,0.18), transparent 32rem), #08080a; }
.academic-png-card img { inset: 24px 18px auto 18px; width: calc(100% - 36px); height: 56%; object-fit: contain; object-position: center; filter: saturate(0.98) contrast(1.02); transform: none; }
.academic-png-card.sociology-card img { height: 52%; object-fit: contain; object-position: center; background: transparent; }
.academic-png-card.political-card img { height: 58%; }
.academic-png-card.philosophy-card img { height: 56%; }
.academic-field-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.34) 44%, rgba(0,0,0,0.86)); }
.academic-field-card.sociology-card { min-height: 620px; background: #111; }
.field-card-copy { position: absolute; left: 26px; right: 26px; bottom: 26px; z-index: 2; }
.field-card-copy > span { display: inline-flex; align-items: center; justify-content: center; min-width: 52px; min-height: 42px; border-radius: 999px; background: rgba(255,255,255,0.9); color: #000; font-size: 12px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 18px; padding: 0 14px; }
.field-card-copy h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.field-card-copy p { color: rgba(255,255,255,0.76); margin-top: 12px; }
.field-card-copy small { display: block; color: rgba(255,255,255,0.56); margin-top: 18px; font-weight: 800; }
.wide-card { grid-column: 1 / -1; }
.content-card h2 { font-size: 2.4rem; }
.content-card p + p { margin-top: 16px; }
.feature-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.feature-card.primary { background: #000; color: #fff; }
.feature-card.primary p { color: rgba(255,255,255,0.68); }
.project-showcase { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; }
.project-hero-card { background: #000; color: #fff; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; }
.project-hero-card p { color: rgba(255,255,255,0.7); }
.status-pill { align-self: flex-start; background: #34c759; color: #061d0b; border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 800; margin-bottom: auto; }
.card-actions a { color: var(--accent-strong); font-weight: 750; }
.project-list-modern { display: grid; gap: 12px; }
.project-list-modern a { display: flex; justify-content: space-between; align-items: center; min-height: 92px; border-radius: 22px; background: var(--surface-soft); border: 1px solid var(--line); padding: 0 24px; box-shadow: var(--shadow-soft); }
.project-list-modern span { color: var(--muted); }
.writing-modern { display: grid; gap: 16px; }
.writing-modern article { min-height: 180px; }
.writing-modern article > span { color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }

.media-hero { background: radial-gradient(circle at 82% 10%, rgba(0,153,255,0.26), transparent 34rem), #000; }
.media-hero h1 { max-width: 1040px; }
.media-impact { padding: 28px 0; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.impact-number { display: flex; min-height: 210px; flex-direction: column; justify-content: space-between; border-radius: 28px; background: var(--surface); border: 1px solid var(--line); padding: 28px; box-shadow: var(--shadow-soft); overflow: hidden; }
.impact-number small { display: block; color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.impact-number small span { display: inline; margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: inherit; }
.impact-number > span { display: block; margin-top: 22px; font-size: clamp(2.2rem, 4.8vw, 4rem); font-weight: 760; line-height: 0.96; letter-spacing: -0.075em; }
.impact-number.impact-source > span { max-width: 10ch; font-size: clamp(1.75rem, 3vw, 2.45rem); line-height: 0.98; letter-spacing: -0.06em; }
.impact-number p { color: var(--muted); font-size: 0.98rem; font-weight: 680; line-height: 1.35; margin-top: 22px; }
.impact-number p span { display: inline; margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: inherit; }
.media-tabs { position: sticky; top: calc(var(--nav-height) + 12px); z-index: 20; display: flex; gap: 10px; width: max-content; max-width: 100%; overflow-x: auto; margin-bottom: 56px; padding: 8px; border-radius: 999px; background: rgba(245,245,247,0.82); backdrop-filter: blur(20px); border: 1px solid var(--line); }
body.dark .media-tabs { background: rgba(20,20,22,0.82); }
.media-tabs a { border-radius: 999px; padding: 10px 16px; color: var(--muted); font-size: 14px; font-weight: 750; }
.media-tabs a:hover { background: var(--surface); color: var(--ink); }
.media-group { padding: 42px 0 60px; border-top: 1px solid var(--line); }
.media-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.media-panel-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-panel { display: grid; grid-template-columns: 120px 1fr; gap: 24px; min-height: 310px; padding: 26px; border-radius: 30px; background: var(--surface-soft); border: 1px solid var(--line); box-shadow: var(--shadow-soft); opacity: 1; transform: none; transition: opacity 0.6s, transform 0.6s, box-shadow 0.18s; }
.media-panel.major { grid-column: span 2; background: #000; color: #fff; }
.media-panel.major p { color: rgba(255,255,255,0.68); }
.media-panel.muted { opacity: 0.78; border-style: dashed; }
.press-logo { display: grid; place-items: center; width: 120px; height: 120px; border-radius: 28px; background: var(--ink); color: var(--bg); font-size: 2.15rem; font-weight: 900; letter-spacing: -0.12em; box-shadow: inset 0 -16px 32px rgba(0,153,255,0.12); overflow: hidden; }
.press-logo { padding: 16px; background: #fff; }
.press-logo.dark-plate { background: #050505; }
.press-logo.small-mark { padding: 0; background: #0b83d8; }
.press-logo.ship-logo { padding: 10px; background: #ff5f00; }
.press-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.press-logo.ship-logo img { width: 100%; height: 100%; object-fit: contain; }
.major .press-logo { background: #fff; }
.panel-meta { color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.media-panel p { color: var(--muted); margin-top: 12px; }
.media-panel a { display: inline-flex; margin-top: 24px; color: var(--accent); font-weight: 800; }
.panel-link-row { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 24px; }
.panel-link-row a { margin-top: 0; }
.major a { color: var(--accent-strong); }

.contact-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 18px; align-items: stretch; }
.contact-card { border-radius: 32px; background: var(--surface-soft); border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: clamp(26px, 4vw, 42px); }
.contact-copy-card { background: #000; color: #fff; }
.contact-copy-card p { color: rgba(255,255,255,0.68); margin-top: 18px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); color: var(--ink); font: inherit; padding: 14px 16px; }
.contact-form textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 0.88rem; line-height: 1.4; }

.site-footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); background: var(--surface); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-icon-link { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface-soft); color: var(--ink); transition: transform 0.16s, background 0.16s, border-color 0.16s, color 0.16s; }
.footer-icon-link svg { width: 19px; height: 19px; fill: currentColor; }
.footer-icon-link:hover { transform: translateY(-1px); background: var(--ink); color: var(--bg); border-color: var(--ink); }
.back-top { position: fixed; right: 24px; bottom: 24px; z-index: 40; width: 44px; height: 44px; display: inline-grid; place-items: center; border: none; border-radius: 50%; background: var(--accent); color: #fff; cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity 0.2s, transform 0.2s, background 0.16s; box-shadow: 0 12px 30px rgba(0,113,227,0.35); padding: 0; }
.back-top img { width: 19px; height: 19px; display: block; object-fit: contain; filter: invert(1); transform: translateY(-1px); }
.back-top.visible { opacity: 1; transform: none; }
.back-top.visible:hover { transform: translateY(-2px); background: var(--accent-strong); }

@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(18px,-22px,0) scale(1.04); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 940px) {
  .site-nav { gap: 10px 12px; padding-top: 8px; padding-bottom: 8px; }
  .site-header { min-height: var(--nav-height); }
  .hero-grid, .page-hero-grid, .project-showcase, .feature-grid, .academic-field-grid, .contact-grid { grid-template-columns: 1fr; }
  .academic-field-card, .academic-field-card.sociology-card { min-height: 460px; }
  .hero-visual { min-height: 520px; place-items: center; }
  .portrait-panel { max-width: 430px; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall, .logo-wall.featured-logos { grid-template-columns: repeat(2, 1fr); }
  .signal-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .split-head { grid-template-columns: 1fr; }
  .media-panel, .media-panel.major { grid-column: span 1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wide-container, .narrow-container, .site-nav { padding-left: 18px; padding-right: 18px; }
  .brand { font-size: 13px; }
  .nav-controls { justify-content: flex-end; }
  .menu-panel { top: 74px; left: 12px; right: 12px; width: auto; max-height: calc(100vh - 86px); padding: 16px; border-radius: 24px; background: var(--surface); }
  .menu-panel-head { padding-bottom: 14px; }
  .menu-panel-head strong { font-size: 1rem; }
  .menu-links { grid-template-columns: 1fr; gap: 8px; padding: 14px 0; }
  .menu-links a { min-height: 64px; padding: 16px 18px; border-radius: 18px; }
  .menu-actions { grid-template-columns: 1fr; gap: 7px; padding-top: 14px; }
  .menu-actions button, .menu-actions a { justify-content: center; min-height: 42px; }
  .hero-grid { padding-top: 56px; gap: 28px; }
  .hero-action-cards { gap: 10px; }
  .hero-action-card { min-height: 54px; flex: 1 1 150px; }
  .hero { min-height: auto; }
  .hero-visual { min-height: auto; grid-template-columns: 1fr; gap: 8px; padding-bottom: 12px; }
  .hero-portrait-clean .portrait-panel { width: min(360px, 92%); justify-self: center; margin-bottom: 8px; }
  .float-card, .float-card-one, .float-card-two, .float-card-three { position: static; justify-self: center; width: min(360px, 92%); min-width: 0; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 10px; padding: 11px 14px; border-radius: 16px; }
  .float-card strong { font-size: 14px; }
  .float-card span { font-size: 12px; }
  h1 { font-size: clamp(3rem, 14vw, 4.2rem); line-height: 0.98; }
  h2 { font-size: 2.35rem; }
  .hero-sub { font-size: 1.08rem; }
  .route-section, .press-strip, .content-section, .media-hub, .page-hero, .invitation-section { padding: 72px 0; }
  .impact-number { min-height: 180px; }
  .impact-number span { font-size: clamp(2rem, 12vw, 3.4rem); }
  .impact-number.impact-source span { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .route-grid, .prose-grid, .media-panel-grid, .media-panel-grid.two, .signal-grid, .impact-grid { grid-template-columns: 1fr; }
  .academic-field-card, .academic-field-card.sociology-card { min-height: 410px; }
  .field-card-copy { left: 22px; right: 22px; bottom: 22px; }
  .route-card, .content-card, .feature-card { min-height: 220px; padding: 24px; }
  .logo-wall, .logo-wall.featured-logos { grid-template-columns: repeat(2, 1fr); }
  .media-panel { grid-template-columns: 1fr; padding: 22px; }
  .press-logo { width: 96px; height: 96px; border-radius: 24px; font-size: 1.8rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .route-card, .content-card, .feature-card, .media-panel { opacity: 1; transform: none; }
}
