/* Технологичная архитектура: автономная HTML/CSS/JS-версия без внешних зависимостей. */
@font-face { font-family: "Fredoka One"; src: url("../img/fonts/fredoka-one-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("../img/fonts/ibm-plex-mono-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("../img/fonts/ibm-plex-mono-500.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../img/fonts/manrope-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../img/fonts/manrope-500.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../img/fonts/manrope-600.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../img/fonts/manrope-700.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../img/fonts/manrope-800.ttf") format("truetype"); font-weight: 800; font-style: normal; font-display: swap; }

:root {
  --samsung-blue: #1428a0;
  --samsung-blue-deep: #0d1d76;
  --signal-cyan: #00b8e7;
  --ice: #f3f7ff;
  --mist: #e5edff;
  --ink: #131829;
  --muted-ink: #596174;
  --line: #d8e0f2;
  --background: #ffffff;
  --foreground: #131829;
  --border: #d8e0f2;
  --primary: #1428a0;
  --primary-foreground: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { font: inherit; }
button { cursor: pointer; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 17px; height: 17px; flex: 0 0 auto; }
.icon-sm { width: 14px; height: 14px; }
.spinner-ring { width: 16px; height: 16px; display: inline-block; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: button-spin .7s linear infinite; }

a { color: inherit; text-decoration: none; }

p, h1, h2, h3, summary, .fact-value, .step-meta { text-wrap: pretty; }

.page-shell { overflow: clip; }

.shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.section { padding: 136px 0; position: relative; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--samsung-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; display: inline-block; width: 24px; height: 1px; background: currentColor; }

.section-heading { max-width: 670px; margin: 20px 0 0; font-size: clamp(36px, 4vw, 60px); font-weight: 700; letter-spacing: -0.055em; line-height: 1.04; }

.section-intro { max-width: 600px; margin: 25px 0 0; color: var(--muted-ink); font-size: 17px; line-height: 1.7; }

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(216, 224, 242, 0.8);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 20px rgba(20,40,160,.035);
}

.nav-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }

.partner-lockup { display: grid; grid-template-columns: max-content max-content; align-items: center; gap: 26px; min-width: 0; }

.course-mark { width: 42px; height: 42px; flex: 0 0 42px; object-fit: contain; }

.brand-bridge { width: 1px; height: 29px; background: var(--line); margin-left: 2px; }

.coddy-wordmark { color: var(--samsung-blue); font-family: "Fredoka One", sans-serif; font-size: 25px; letter-spacing: -0.04em; line-height: 1; }

.campus-logo { display: block; width: 120px; height: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 28px; color: #4f586d; font-size: 13px; font-weight: 700; }

.nav-links a { transition: color 160ms ease; }
.nav-links a:hover { color: var(--samsung-blue); }

.nav-cta, .primary-button, .secondary-button, .share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms cubic-bezier(.23,1,.32,1), box-shadow 160ms ease, background 160ms ease;
}

.nav-cta { min-height: 42px; padding: 0 18px; background: var(--samsung-blue); color: #fff; }
.nav-cta::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal-cyan); box-shadow: 0 0 0 3px rgba(0,184,231,.17); }
.nav-cta:hover, .primary-button:hover { background: #0a1761; box-shadow: 0 14px 30px rgba(20,40,160,.32), 0 0 0 3px rgba(0,184,231,.2); transform: translateY(-2px); }
.nav-cta:hover::before { background: #fff; box-shadow: 0 0 0 4px rgba(0,184,231,.24); }
.nav-cta:active, .primary-button:active, .secondary-button:active, .share-button:active { transform: scale(.97); }
.primary-button.is-loading, .nav-cta.is-loading { pointer-events: none; }
.button-spinner { animation: button-spin .7s linear infinite; }
@keyframes button-spin { to { transform: rotate(360deg); } }

.hero { min-height: 730px; padding: 86px 0 74px; position: relative; background: #f7faff; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(20,40,160,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,40,160,.04) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg, #000 0%, #000 49%, transparent 95%); pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 48vw; height: 48vw; max-width: 720px; max-height: 720px; right: -9vw; top: -26vw; border: 1px solid rgba(20,40,160,.13); border-radius: 50%; box-shadow: 0 0 0 54px rgba(20,40,160,.035), 0 0 0 110px rgba(20,40,160,.02); pointer-events: none; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.84fr); gap: 46px; align-items: center; }

.hero-content { padding: 34px 0 14px; }

.hero-partner-plate { width: max-content; min-height: 112px; margin-bottom: 26px; padding: 20px 32px; gap: 36px; border: 1px solid #cbd8fb; background: rgba(255,255,255,.9); box-shadow: 8px 8px 0 rgba(20,40,160,.055); }
.hero-partner-plate .coddy-wordmark { font-size: 51px; }
.hero-partner-plate .campus-logo { width: auto; height: 56px; }

.hero-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid #cbd8fb; color: var(--samsung-blue); background: rgba(255,255,255,.7); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 500; letter-spacing: .1em; line-height: 1; text-transform: uppercase; }
.hero-kicker span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--signal-cyan); }

.hero-title { max-width: 710px; margin: 26px 0 0; font-size: clamp(44px, 5.1vw, 74px); font-weight: 800; letter-spacing: -0.068em; line-height: .99; }
.hero-title em { color: var(--samsung-blue); font-style: normal; }
.hero-copy { max-width: 590px; margin: 28px 0 0; color: #4f586d; font-size: 17px; line-height: 1.72; }

.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
.deadline-counter { min-width: 116px; display: grid; grid-template-columns: auto 1fr; column-gap: 7px; align-items: baseline; padding: 8px 11px 9px; border-left: 2px solid var(--signal-cyan); background: rgba(255,255,255,.62); box-shadow: 3px 3px 0 rgba(20,40,160,.06); }
.deadline-counter span { grid-column: 1 / -1; margin-bottom: 4px; color: #667494; font-family: "IBM Plex Mono", monospace; font-size: 8px; font-weight: 500; letter-spacing: .08em; line-height: 1.25; text-transform: uppercase; }
.deadline-counter strong { color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 24px; font-weight: 500; letter-spacing: -.08em; line-height: .9; }
.deadline-counter em { color: #465777; font-size: 10px; font-style: normal; font-weight: 800; }
.primary-button { min-height: 56px; padding: 0 22px; background: var(--samsung-blue); color: #fff; }
.primary-button { position: relative; overflow: hidden; }
.primary-button::after { content: ""; width: 42px; height: 160%; position: absolute; top: -30%; left: -60px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); transform: rotate(18deg); transition: left 480ms cubic-bezier(.23,1,.32,1); }
.primary-button:hover::after { left: calc(100% + 30px); }
.primary-button svg { width: 17px; height: 17px; }
.hero-link { color: var(--samsung-blue); font-size: 13px; font-weight: 800; border-bottom: 1px solid rgba(20,40,160,.35); padding-bottom: 3px; }
.hero-proof { max-width: 555px; margin-top: 20px; display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; color: #4d5c79; font-size: 12px; line-height: 1.55; }
.hero-proof p { margin: 0; }
.hero-proof strong { color: var(--samsung-blue); font-weight: 800; }
.proof-signal { display: block; width: 9px; height: 9px; margin-top: 5px; border: 2px solid var(--signal-cyan); border-radius: 50%; box-shadow: 0 0 0 4px rgba(0,184,231,.12); }

.hero-facts { margin-top: 54px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 620px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fact { min-height: 93px; padding: 16px 19px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.5); }
.fact-label { display: block; color: #7a8498; font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.fact-value { display: block; margin-top: 8px; color: #222a3e; font-size: 14px; font-weight: 800; line-height: 1.42; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-image-frame { width: 100%; max-width: 570px; overflow: hidden; position: relative; box-shadow: 0 32px 70px rgba(23, 41, 102, .12); }
.hero-image-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; border: 1px solid rgba(20,40,160,.14); pointer-events: none; }
.hero-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.visual-index { position: absolute; z-index: 2; left: -9px; bottom: 39px; display: flex; align-items: flex-end; gap: 11px; color: var(--samsung-blue); }
.visual-index strong { font-family: "IBM Plex Mono", monospace; font-size: 48px; font-weight: 400; letter-spacing: -.1em; line-height: .8; }
.visual-index span { width: 150px; padding-bottom: 2px; font-family: "IBM Plex Mono", monospace; font-size: 9px; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.visual-pulse { position: absolute; top: 45px; right: 0; z-index: 3; width: 86px; height: 86px; background: var(--samsung-blue); color: #fff; display: grid; place-items: center; font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .08em; line-height: 1.25; text-align: center; text-transform: uppercase; box-shadow: 11px 11px 0 #dbe5ff; }
.prototype-tabs { position: absolute; z-index: 4; right: 23px; bottom: 25px; display: flex; gap: 5px; }
.prototype-tabs span { padding: 6px 8px; color: var(--samsung-blue); background: rgba(255,255,255,.92); border: 1px solid rgba(20,40,160,.16); font-family: "IBM Plex Mono", monospace; font-size: 8px; letter-spacing: .09em; box-shadow: 3px 3px 0 rgba(20,40,160,.08); }
.prototype-node { position: absolute; z-index: 3; width: 12px; height: 12px; border: 2px solid var(--signal-cyan); background: #fff; border-radius: 50%; box-shadow: 0 0 0 7px rgba(255,255,255,.68); }
.prototype-node.one { left: 4%; top: 32%; }
.prototype-node.two { right: 7%; bottom: 33%; }

.circuit-spine { position: absolute; z-index: 2; left: clamp(16px, 3vw, 52px); top: -28px; bottom: -28px; width: 1px; background: linear-gradient(to bottom, transparent 0, rgba(20,40,160,.25) 6%, rgba(20,40,160,.25) 94%, transparent 100%); pointer-events: none; }
.circuit-spine::before, .circuit-spine::after { content: ""; position: absolute; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: #fff; border: 1px solid var(--samsung-blue); transform: translateX(-50%); }
.circuit-spine::before { top: 11%; }
.circuit-spine::after { bottom: 11%; }
.circuit-spine.light { background: linear-gradient(to bottom, transparent 0, rgba(255,255,255,.38) 6%, rgba(255,255,255,.38) 94%, transparent 100%); }
.circuit-spine.light::before, .circuit-spine.light::after { background: var(--samsung-blue); border-color: #fff; }

.organizers { background: #fff; }
.section-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 70px; align-items: start; }
.side-index { position: sticky; top: 125px; display: flex; flex-direction: column; gap: 18px; }
.side-number { color: #bfcae4; font-family: "IBM Plex Mono", monospace; font-size: 82px; letter-spacing: -.1em; line-height: .75; }
.side-copy { max-width: 240px; color: #6d7688; font-size: 14px; line-height: 1.65; }

.organizer-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.organizer-card { min-height: 342px; padding: 33px 31px 30px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fff; transition: box-shadow 200ms ease, transform 200ms ease; }
.organizer-card:hover { box-shadow: 0 20px 44px rgba(17,32,95,.09); transform: translateY(-3px); }
.organizer-card.blue { background: var(--samsung-blue); border-color: var(--samsung-blue); color: #fff; }
.organizer-brand { min-height: 56px; display: flex; align-items: flex-start; }
.organizer-coddy { color: var(--samsung-blue); font-family: "Fredoka One", sans-serif; font-size: 35px; letter-spacing: -.05em; line-height: 1; }
.school-logo { display: block; width: min(100%, 210px); height: auto; object-fit: contain; }
.organizer-card.blue .organizer-brand { min-height: 58px; align-items: center; }
.organizer-card h3 { max-width: 240px; margin: auto 0 0; font-size: 25px; font-weight: 800; letter-spacing: -.05em; line-height: 1.08; }
.organizer-card p { margin: 18px 0 0; color: #596174; font-size: 15px; line-height: 1.7; }
.organizer-card.blue p { color: rgba(255,255,255,.77); }

.curriculum { background: var(--ice); overflow: hidden; }
.curriculum::before { content: ""; position: absolute; inset: 0; background: url('../img/circuit.png') center / cover no-repeat; opacity: .47; pointer-events: none; }
.curriculum .shell { position: relative; }
.course-topline { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.course-topline .section-heading { margin-top: 18px; }
.course-topline .section-intro { margin-bottom: 3px; }

.module-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; border: 1px solid #ccd9f5; background: #ccd9f5; }
.module-card { min-height: 305px; padding: 25px; background: rgba(255,255,255,.88); display: flex; flex-direction: column; transition: background 180ms ease, transform 180ms ease; }
.module-card:hover { background: #fff; transform: translateY(-4px); }
.module-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--samsung-blue); border: 1px solid #b9c9f2; background: #f4f7ff; }
.module-icon svg { width: 20px; }
.module-count { margin-top: auto; color: #a1abc0; font-family: "IBM Plex Mono", monospace; font-size: 12px; }
.module-card h3 { margin: 26px 0 0; font-size: 20px; font-weight: 800; letter-spacing: -.045em; line-height: 1.1; }
.module-card p { margin: 15px 0 0; color: #596174; font-size: 15px; line-height: 1.68; }

.format-section { background: #fff; }
.format-layout { display: grid; grid-template-columns: minmax(0,.84fr) minmax(0,1.16fr); gap: 76px; align-items: center; }
.format-title { font-size: clamp(37px, 4vw, 58px); font-weight: 800; letter-spacing: -.058em; line-height: 1.03; }
.format-copy { margin: 24px 0 0; max-width: 460px; color: var(--muted-ink); font-size: 16px; line-height: 1.75; }
.time-figure { background: #111e63; color: #fff; box-shadow: 14px 14px 0 #dfe8ff; }
.time-figure-head { padding: 25px 28px; border-bottom: 1px solid rgba(255,255,255,.17); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.time-figure-head span { color: #b5c5ff; font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.time-figure-head strong { font-size: 18px; font-weight: 700; }
.sprint-row { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 190px; }
.sprint { padding: 24px 18px; border-right: 1px solid rgba(255,255,255,.17); display: flex; flex-direction: column; justify-content: space-between; }
.sprint:last-child { border-right: 0; background: rgba(255,255,255,.06); }
.sprint span { color: #aebfff; font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.sprint strong { font-size: 28px; font-weight: 700; letter-spacing: -.07em; line-height: 1; }
.sprint em { color: #d9e2ff; font-size: 12px; font-style: normal; line-height: 1.4; }
.figure-foot { padding: 19px 28px; border-top: 1px solid rgba(255,255,255,.17); color: #c9d4ff; font-size: 13px; line-height: 1.55; }

.inversion { padding: 33px 0 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 35px; }
.inversion h3 { margin: 0; font-size: 24px; letter-spacing: -.04em; line-height: 1.12; }
.inversion p { margin: 0; color: var(--muted-ink); font-size: 16px; line-height: 1.75; }
.schedule-note { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); color: #5b6578; font-size: 15px; line-height: 1.65; }

.outcomes { background: #f8faff; }
.outcome-layout { display: grid; grid-template-columns: .73fr 1.27fr; gap: 65px; align-items: start; }
.outcome-visual { position: relative; min-height: 510px; background: linear-gradient(135deg, #eff5ff 0%, #e8f0ff 100%); overflow: hidden; isolation: isolate; }
.project-grid { position: absolute; inset: 0; opacity: .8; background-image: linear-gradient(rgba(20,40,160,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(20,40,160,.09) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(135deg, #000 0%, rgba(0,0,0,.2) 72%, transparent 100%); }
.project-terminal { position: absolute; z-index: 1; top: 48px; left: 45px; width: 58%; min-height: 173px; padding: 19px; background: #1428a0; box-shadow: 12px 12px 0 rgba(20,40,160,.11); }
.project-terminal span { display: block; margin-bottom: 24px; color: #b8c8ff; font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .1em; }
.project-terminal i { display: block; height: 7px; margin-top: 11px; background: #fff; opacity: .9; }
.project-terminal i:nth-of-type(1) { width: 74%; }.project-terminal i:nth-of-type(2) { width: 48%; opacity: .58; }.project-terminal i:nth-of-type(3) { width: 88%; opacity: .72; }.project-terminal i:nth-of-type(4) { width: 61%; opacity: .52; }.project-terminal i:nth-of-type(5) { width: 79%; opacity: .86; }
.project-phone { position: absolute; z-index: 2; right: 38px; top: 122px; width: 196px; height: 320px; padding: 12px; border: 7px solid #17234d; border-radius: 29px; background: #fff; box-shadow: 18px 18px 0 rgba(20,40,160,.15), 0 24px 35px rgba(17,34,93,.2); transform: rotate(10deg); }
.project-phone > b { display: block; width: 56px; height: 7px; margin-inline: auto; border-radius: 0 0 6px 6px; background: #17234d; }
.project-phone > div { height: calc(100% - 17px); margin-top: 10px; padding: 20px; position: relative; overflow: hidden; background: linear-gradient(145deg, #dce9ff, #f9fbff); }
.project-phone > div::before { content: ""; width: 150px; height: 150px; position: absolute; right: -68px; bottom: -50px; border: 14px solid #1428a0; border-radius: 50%; }
.project-phone span { color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 13px; font-weight: 500; }.project-phone em { display: block; position: relative; z-index: 1; width: 25px; height: 25px; margin-top: 22px; background: #1428a0; box-shadow: 36px 15px 0 #00b8e7, 72px 43px 0 #1428a0; }
.project-status { position: absolute; z-index: 3; left: 36px; bottom: 32px; max-width: 285px; padding: 20px 22px; border: 1px solid rgba(20,40,160,.17); background: rgba(255,255,255,.94); box-shadow: 8px 8px 0 rgba(20,40,160,.12); }
.project-status span { color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }.project-status p { margin: 8px 0 0; color: #2b354e; font-size: 17px; font-weight: 800; line-height: 1.35; }
.outcome-items { border-top: 1px solid var(--line); }
.outcome-item { display: grid; grid-template-columns: 66px 1fr; gap: 21px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.outcome-number { color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 13px; padding-top: 4px; }
.outcome-item h3 { margin: 0; font-size: 23px; font-weight: 800; letter-spacing: -.045em; line-height: 1.15; }
.outcome-item p { margin: 13px 0 0; color: var(--muted-ink); font-size: 16px; line-height: 1.72; }

.commitment { background: var(--samsung-blue); color: #fff; overflow: hidden; }
.commitment::before { content: ""; width: 47vw; height: 47vw; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; position: absolute; top: -30vw; right: -12vw; box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 105px rgba(255,255,255,.025); }
.commitment .shell { position: relative; }
.commitment .eyebrow { color: #afc1ff; }
.commitment-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.commitment h2 { max-width: 490px; margin: 20px 0 0; font-size: clamp(40px,4.2vw,62px); font-weight: 800; letter-spacing: -.065em; line-height: .99; }
.commitment-lede { max-width: 440px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.75; }
.fit-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.2); }
.fit-card { min-height: 230px; padding: 29px; background: rgba(13,29,118,.42); }
.fit-card.good { background: #fff; color: #17276b; }
.fit-label { display: inline-flex; align-items: center; gap: 8px; color: #b9c9ff; font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.fit-card.good .fit-label { color: var(--samsung-blue); }
.fit-label i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.fit-card h3 { margin: 29px 0 0; font-size: 22px; font-weight: 800; letter-spacing: -.045em; line-height: 1.15; }
.fit-card p { margin: 16px 0 0; color: rgba(255,255,255,.79); font-size: 15px; line-height: 1.7; }
.fit-card.good p { color: #596174; }
.quote { grid-column: 1 / -1; max-width: none; margin: 18px 0 0; padding: 44px 46px 38px; border: 1px solid rgba(255,255,255,.2); background: rgba(11,28,111,.32); color: rgba(255,255,255,.96); box-shadow: inset 4px 0 0 #8ca9ff; }
.quote p { max-width: 900px; margin: 0; font-size: clamp(22px, 2.25vw, 32px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.36; }
.quote cite { display: block; max-width: 600px; margin-top: 25px; padding-left: 20px; position: relative; color: #d4ddff; font-family: "IBM Plex Mono", monospace; font-size: 12px; font-style: normal; letter-spacing: .02em; line-height: 1.6; text-transform: none; }
.quote cite::before { content: ""; width: 8px; height: 1px; position: absolute; top: .76em; left: 0; background: currentColor; }

.selection { background: #fff; }
.selection-heading { max-width: 800px; }
.selection-top { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: end; }
.selection-top .section-intro { justify-self: end; }
.selection-route { margin-top: 58px; border-top: 1px solid var(--line); }
.selection-step { display: grid; grid-template-columns: 112px minmax(0,1fr) minmax(230px,.64fr); gap: 25px; align-items: start; padding: 29px 0; border-bottom: 1px solid var(--line); }
.selection-step { transition: padding-left 190ms cubic-bezier(.23,1,.32,1), background 190ms ease; }
.selection-step:hover { padding-left: 13px; background: linear-gradient(90deg, rgba(20,40,160,.055), transparent 60%); }
.step-index { color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 12px; padding-top: 4px; }
.selection-step h3 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.045em; line-height: 1.15; }
.selection-step p { margin: 0; color: var(--muted-ink); font-size: 16px; line-height: 1.7; }
.step-meta { color: #68738c; font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .06em; line-height: 1.5; text-transform: uppercase; }
.selection-conversion { margin-top: 38px; padding: 24px 0 0 112px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #9eb4ef; }
.selection-conversion-label { color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.selection-conversion p { max-width: 570px; margin: 7px 0 0; color: #334364; font-size: 15px; font-weight: 700; letter-spacing: -.015em; line-height: 1.5; }
.selection-conversion .primary-button { flex: 0 0 auto; }

.faq { background: var(--ice); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-list { border-top: 1px solid #cbd8f3; }
.faq-item { border-bottom: 1px solid #cbd8f3; }
.faq-item summary { list-style: none; position: relative; padding: 23px 54px 23px 0; cursor: pointer; color: #1c2643; font-size: 17px; font-weight: 800; line-height: 1.4; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; top: 17px; color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 26px; font-weight: 400; transition: transform 170ms ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 690px; padding: 0 32px 23px 0; color: #596174; font-size: 16px; line-height: 1.7; }

.final-cta { position: relative; background: var(--samsung-blue); color: #fff; padding: 112px 0; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: url('../img/circuit.png') center / cover no-repeat; opacity: .12; mix-blend-mode: screen; }
.final-cta .shell { position: relative; }
.final-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; }
.final-cta .eyebrow { color: #c4d1ff; }
.final-cta h2 { max-width: 680px; margin: 20px 0 0; font-size: clamp(43px, 5vw, 72px); font-weight: 800; letter-spacing: -.07em; line-height: .96; }
.final-cta p { max-width: 550px; margin: 25px 0 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.final-parameters { display: flex; gap: 10px; margin-top: 25px; flex-wrap: wrap; }
.final-parameters span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.22); color: #d8e2ff; font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .06em; }
.final-actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.final-actions .primary-button { background: #fff; color: var(--samsung-blue); }
.final-actions .primary-button:hover { background: #e8eeff; box-shadow: 0 14px 27px rgba(0,0,0,.18); }
.secondary-button { min-height: 55px; padding: 0 20px; border: 1px solid rgba(255,255,255,.46); color: #fff; }
.secondary-button:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.share-row { display: flex; align-items: center; gap: 9px; margin-top: 28px; flex-wrap: wrap; }
.share-label { margin-right: 8px; color: #d1dcff; font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.share-button { min-height: 36px; padding: 0 12px; background: rgba(255,255,255,.11); color: #fff; font-size: 12px; }
.share-button:hover { background: rgba(255,255,255,.21); transform: translateY(-1px); }
.share-button--whatsapp { background: #25c863; box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 0 0 4px rgba(37,200,99,.14); }
.share-button--whatsapp:hover { background: #1ba955; box-shadow: 0 7px 18px rgba(11,103,49,.34), 0 0 0 5px rgba(37,200,99,.18); transform: translateY(-2px) scale(1.03); }
.share-status { min-height: 18px; margin: 9px 0 0; color: #d6e1ff; font-size: 12px; line-height: 1.5; }

.application-dialog { max-width: 500px; padding: 0 !important; overflow: hidden; border: 1px solid #bdcdf5 !important; border-radius: 0 !important; background: #fff !important; box-shadow: 16px 16px 0 rgba(20,40,160,.12) !important; }
.modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 180ms ease, visibility 180ms ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,22,65,.48); backdrop-filter: blur(5px); }
.modal-panel { position: relative; z-index: 1; width: min(100%, 500px); max-height: calc(100vh - 48px); overflow-y: auto; transform: translateY(12px) scale(.985); transition: transform 220ms cubic-bezier(.23,1,.32,1); }
.modal.is-open .modal-panel { transform: translateY(0) scale(1); }
body.modal-open { overflow: hidden; }
.application-dialog::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .56; background-image: linear-gradient(rgba(20,40,160,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(20,40,160,.045) 1px, transparent 1px); background-size: 26px 26px; }
.application-dialog > * { position: relative; }
.application-dialog-mark { width: 54px; height: 54px; display: grid; place-items: center; margin: 34px 34px 0; color: #fff; background: var(--samsung-blue); box-shadow: 6px 6px 0 #dce6ff; }
.application-dialog-mark svg { width: 26px; height: 26px; }
.application-dialog-header { padding: 22px 34px 0; text-align: left; }
.application-dialog-header > span { color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 500; letter-spacing: .12em; }
.application-dialog-header h2 { margin-top: 12px; color: var(--ink); font-family: "Manrope", Arial, sans-serif; font-size: clamp(28px, 5vw, 38px); font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.application-dialog-header p { margin-top: 16px; color: var(--muted-ink); font-size: 15px; line-height: 1.7; }
.application-dialog-actions { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 28px 34px 34px; }
.application-dialog-actions .primary-button { width: 100%; }
.application-dialog-close { border: 0; padding: 10px 0; color: var(--samsung-blue); background: transparent; font-size: 12px; font-weight: 800; }
.application-dialog-close:hover { text-decoration: underline; }
.application-calendar-action { padding: 0 34px 22px; }
.application-calendar-action button { width: 100%; display: grid; grid-template-columns: 18px 1fr 15px; gap: 11px; align-items: center; border: 1px solid #c6d5f3; padding: 13px 14px; color: var(--samsung-blue); background: #f6f9ff; text-align: left; transition: background 180ms ease, border-color 180ms ease, transform 180ms cubic-bezier(.23,1,.32,1); }
.application-calendar-action button:hover { border-color: var(--samsung-blue); background: #eaf0ff; transform: translateY(-1px); }
.application-calendar-action button > span { display: grid; gap: 3px; }
.application-calendar-action b { font-size: 12px; font-weight: 800; }
.application-calendar-action small { color: #687796; font-size: 10px; line-height: 1.35; }
.application-dialog-share { padding: 0 34px 30px; }
.application-dialog-share > span { display: block; margin-bottom: 10px; color: #657491; font-family: "IBM Plex Mono", monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.application-dialog-share > div { display: flex; gap: 8px; flex-wrap: wrap; }
.dialog-share-button { min-height: 40px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #c8d5f1; padding: 0 12px; color: var(--samsung-blue); background: #f8faff; font-size: 12px; font-weight: 800; transition: transform 160ms cubic-bezier(.23,1,.32,1), background 160ms ease, border-color 160ms ease; }
.dialog-share-button:hover { border-color: var(--samsung-blue); background: #eaf0ff; transform: translateY(-1px); }
.dialog-share-button.whatsapp { color: #15753d; border-color: rgba(37,200,99,.5); background: #f0fff6; }
.dialog-share-button.whatsapp:hover { border-color: #25c863; background: #e4ffef; }
.dialog-share-button.vk { color: #1475c5; border-color: rgba(20,117,197,.36); background: #f1f8ff; }
.dialog-share-button.vk:hover { border-color: #1475c5; background: #e5f3ff; }

@media (prefers-reduced-motion: no-preference) {
  .deadline-counter { animation: deadline-pulse 2.9s ease-in-out 1.4s infinite; }
  .hero-lockup-entrance { transform-origin: left center; animation: lockup-frame-in 620ms cubic-bezier(.23,1,.32,1) both; }
  .hero-lockup-entrance .coddy-wordmark { animation: lockup-coddy-in 540ms 90ms cubic-bezier(.23,1,.32,1) both; }
  .hero-lockup-entrance .campus-lockup { animation: lockup-campus-in 560ms 210ms cubic-bezier(.23,1,.32,1) both; }
  .share-button--whatsapp { animation: whatsapp-pulse 2.8s ease-in-out 1.2s infinite; }
  .hero-image-frame { animation: hero-float 5.6s ease-in-out infinite; }
  .visual-pulse { animation: status-pulse 2.8s ease-in-out infinite; }
  .prototype-node { animation: node-pulse 2.35s ease-in-out infinite; }
  .prototype-node.two { animation-delay: 1.15s; }
  .circuit-spine::before, .circuit-spine::after { animation: circuit-blink 2.7s ease-in-out infinite; }
  .circuit-spine::after { animation-delay: 1.2s; }
  .project-terminal i { animation: code-flow 3.2s ease-in-out infinite; transform-origin: left; }
  .project-terminal i:nth-of-type(2) { animation-delay: .22s; }.project-terminal i:nth-of-type(3) { animation-delay: .44s; }.project-terminal i:nth-of-type(4) { animation-delay: .66s; }.project-terminal i:nth-of-type(5) { animation-delay: .88s; }
  @supports (animation-timeline: view()) {
    .organizers .shell, .curriculum .shell, .format-section .shell, .outcomes .shell, .commitment .shell, .selection .shell, .faq .shell { animation: section-enter linear both; animation-timeline: view(); animation-range: entry 6% cover 28%; }
  }
}

@keyframes hero-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(-.35deg); } }
@keyframes status-pulse { 0%, 100% { box-shadow: 11px 11px 0 #dbe5ff; } 50% { box-shadow: 15px 15px 0 #dbe5ff, 0 0 0 8px rgba(20,40,160,.07); } }
@keyframes node-pulse { 0%, 100% { box-shadow: 0 0 0 7px rgba(255,255,255,.68); } 50% { box-shadow: 0 0 0 7px rgba(255,255,255,.68), 0 0 0 13px rgba(0,184,231,.13); } }
@keyframes circuit-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes code-flow { 0%, 100% { transform: scaleX(.72); opacity: .42; } 50% { transform: scaleX(1); opacity: 1; } }
@keyframes section-enter { from { opacity: .22; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lockup-frame-in { from { opacity: .3; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes lockup-coddy-in { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: translateX(0); } }
@keyframes lockup-campus-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
@keyframes whatsapp-pulse { 0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 0 0 4px rgba(37,200,99,.14); } 50% { box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 0 0 8px rgba(37,200,99,.06); } }
@keyframes deadline-pulse { 0%, 100% { box-shadow: 3px 3px 0 rgba(20,40,160,.06); } 50% { box-shadow: 3px 3px 0 rgba(20,40,160,.08), 0 0 0 5px rgba(0,184,231,.08); } }

.footer { padding: 47px 0 38px; background: #101630; color: #dce4fc; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer .partner-lockup { opacity: .95; }
.footer .coddy-wordmark { color: #fff; }
.footer .brand-bridge { background: rgba(255,255,255,.35); }
.footer-note { max-width: 530px; color: #a9b6d7; font-size: 12px; line-height: 1.6; text-align: right; }

.reveal { animation: rise .65s cubic-bezier(.23,1,.32,1) both; }
.reveal.delay-1 { animation-delay: .08s; }
.reveal.delay-2 { animation-delay: .16s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 65px; }
  .hero-visual { min-height: 390px; max-width: 600px; margin-left: auto; }
  .hero-image-frame { max-width: 500px; }
  .section-grid, .format-layout, .outcome-layout, .commitment-layout, .faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .side-index { position: static; flex-direction: row; align-items: end; justify-content: space-between; }
  .side-number { font-size: 64px; }
  .side-copy { max-width: 350px; }
  .module-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .course-topline, .selection-top, .final-grid { grid-template-columns: 1fr; display: grid; gap: 20px; }
  .course-topline .section-intro, .selection-top .section-intro { justify-self: start; }
  .selection-step { grid-template-columns: 90px minmax(0,1fr); }
  .step-meta { grid-column: 2; }
  .selection-conversion { padding-left: 90px; }
  .faq-layout { gap: 40px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1240px); }
  .section { padding: 82px 0; }
  .nav-inner { min-height: 73px; }
  .course-mark { width: 37px; height: 37px; flex-basis: 37px; }
  .partner-lockup { gap: 12px; }
  .coddy-wordmark { font-size: 21px; }
  .campus-logo { width: 108px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 52px 0 48px; }
  .hero-partner-plate { min-height: 0; margin-bottom: 21px; padding: 13px 18px; gap: 22px; }
  .hero-partner-plate .coddy-wordmark { font-size: 31px; }
  .hero-partner-plate .campus-logo { height: 34px; }
  .hero-title { font-size: clamp(40px, 11vw, 53px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; margin-top: 30px; }
  .deadline-counter { width: 100%; max-width: 220px; }
  .application-dialog-mark { margin: 26px 24px 0; }
  .application-dialog-header { padding: 20px 24px 0; }
  .application-dialog-actions { grid-template-columns: 1fr; padding: 24px 24px 16px; }
  .application-dialog-actions .primary-button { min-height: 50px; }
  .application-calendar-action { padding: 0 24px 20px; }
  .application-dialog-share { padding: 0 24px 26px; }
  .dialog-share-button { min-height: 44px; padding: 0 13px; }
  .primary-button { width: 100%; }
  .hero-proof { margin-top: 16px; }
  .hero-facts { margin-top: 42px; }
  .fact { min-height: 104px; padding: 14px; }
  .fact-value { font-size: 12px; }
  .hero-visual { min-height: 289px; margin-top: 13px; }
  .visual-pulse { top: 12px; width: 68px; height: 68px; font-size: 9px; }
  .visual-index { left: 0; bottom: 14px; }
  .visual-index strong { font-size: 34px; }
  .visual-index span { width: 120px; font-size: 8px; }
  .prototype-tabs { right: 10px; bottom: 10px; }
  .prototype-tabs span { padding: 4px 5px; font-size: 7px; }
  .circuit-spine { left: 10px; }
  .section-heading, .format-title { font-size: 37px; }
  .section-intro { font-size: 15px; }
  .organizer-cards, .fit-grid { grid-template-columns: 1fr; }
  .organizer-card { min-height: 290px; }
  .module-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .module-card { min-height: 252px; }
  .time-figure-head { padding: 21px; align-items: flex-start; flex-direction: column; }
  .sprint-row { grid-template-columns: repeat(2, 1fr); }
  .sprint { min-height: 150px; border-bottom: 1px solid rgba(255,255,255,.17); }
  .sprint:nth-child(2) { border-right: 0; }
  .inversion { grid-template-columns: 1fr; gap: 18px; }
  .outcome-visual { min-height: 390px; }
  .project-terminal { top: 28px; left: 22px; width: 61%; min-height: 140px; padding: 15px; }
  .project-terminal span { margin-bottom: 17px; font-size: 8px; }.project-terminal i { height: 5px; margin-top: 8px; }
  .project-phone { right: 23px; top: 93px; width: 143px; height: 235px; padding: 9px; border-width: 5px; border-radius: 22px; }.project-phone > b { width: 43px; height: 5px; }.project-phone > div { margin-top: 6px; padding: 14px; }.project-phone em { width: 18px; height: 18px; margin-top: 16px; box-shadow: 27px 12px 0 #00b8e7, 54px 32px 0 #1428a0; }
  .project-status { left: 20px; right: 20px; bottom: 19px; max-width: none; padding: 16px 18px; }.project-status p { font-size: 15px; }
  .outcome-item { grid-template-columns: 48px 1fr; gap: 10px; }
  .outcome-item h3 { font-size: 20px; }
  .commitment-layout { gap: 45px; }
  .fit-card { min-height: 210px; }
  .quote { margin-top: 14px; padding: 30px 24px 27px; }
  .quote p { font-size: 20px; line-height: 1.42; }
  .quote cite { margin-top: 20px; font-size: 11px; }
  .selection-step { grid-template-columns: 1fr; gap: 10px; }
  .step-meta { grid-column: auto; }
  .selection-conversion { padding-left: 0; align-items: stretch; flex-direction: column; gap: 17px; }
  .selection-conversion .primary-button { width: 100%; }
  .faq-item summary { font-size: 15px; }
  .final-cta { padding: 82px 0; }
  .final-cta h2 { font-size: 45px; }
  .share-row { align-items: flex-start; flex-direction: column; }
  .share-label { margin-bottom: 6px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }
}

/* Технический маршрут: координаты, учебные метки и институциональный партнёрский lockup. */
.section[data-route]::after { content: attr(data-route); position: absolute; top: 42px; right: clamp(20px, 5vw, 84px); color: rgba(20,40,160,.22); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 500; letter-spacing: .14em; }
.section[data-route] > .shell { position: relative; z-index: 1; }
.partner-lockup:not(.hero-partner-plate) { padding: 7px 0; }
.hero-partner-plate { min-height: 136px; padding: 28px 54px; gap: 44px; }
.nav .partner-lockup { padding: 10px 18px 10px 0; border-right: 1px solid #d8e0f2; }
.nav .campus-logo { width: 112px; }
.nav .partner-lockup { transform-origin: left center; transition: transform 180ms cubic-bezier(.23,1,.32,1), filter 180ms ease; will-change: transform; }
.nav .partner-lockup:hover { filter: drop-shadow(0 4px 8px rgba(20,40,160,.12)); transform: scale(1.035); }
.nav .partner-lockup:hover .campus-logo { transform: translateX(1px); }
.nav .campus-logo { transition: transform 180ms cubic-bezier(.23,1,.32,1); }
.section, .final-cta { scroll-margin-top: 104px; }
@media (hover: hover) {
  .nav-links a { position: relative; }
  .nav-links a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 180ms cubic-bezier(.23,1,.32,1); }
  .nav-links a:hover::after { transform: scaleX(1); }
}
.hero-study-card { position: absolute; z-index: 4; left: -18px; top: 73px; width: 142px; padding: 14px 14px 13px; border: 1px solid rgba(20,40,160,.16); background: rgba(255,255,255,.94); box-shadow: 6px 6px 0 rgba(20,40,160,.09); }
.hero-study-card span { display: block; margin-bottom: 12px; color: #67789d; font-family: "IBM Plex Mono", monospace; font-size: 7px; letter-spacing: .1em; }
.hero-study-card b { display: inline-block; color: var(--samsung-blue); font-family: "IBM Plex Mono", monospace; font-size: 8px; letter-spacing: .08em; }
.hero-study-card i { display: block; width: 100%; height: 1px; margin: 5px 0; background: #c7d4f4; }
.organizer-card { position: relative; }
.organizer-card::before { content: ""; position: absolute; top: 0; left: 31px; width: 42px; height: 3px; background: var(--signal-cyan); }
.organizer-card.blue::before { background: #fff; }
.module-card { position: relative; }
.module-card:nth-child(odd)::after { content: ""; position: absolute; right: 0; bottom: 0; width: 35px; height: 35px; border-top: 1px solid #cbd8f5; border-left: 1px solid #cbd8f5; }

@media (max-width: 1040px) {
  .hero-study-card { left: 0; top: 25px; }
}

@media (max-width: 680px) {
  .nav .partner-lockup:hover { filter: none; transform: none; }
  .hero-partner-plate { min-height: 0; margin-bottom: 17px; padding: 16px; gap: 18px; }
  .hero-study-card { top: 4px; left: 0; width: 110px; padding: 10px; }
  .hero-study-card span { margin-bottom: 8px; font-size: 6px; }
  .hero-study-card b { font-size: 7px; }
  .hero-study-card i { margin: 3px 0; }
  .section[data-route]::after { top: 27px; right: 16px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
