:root {
  --ink: #231f20;
  --muted: #5f676f;
  --soft: #eef8fd;
  --paper: #ffffff;
  --line: #d3ecf8;
  --teal: #00a0e3;
  --teal-dark: #008dd2;
  --amber: #008dd2;
  --coral: #00a0e3;
  --graphite: #231f20;
  --white: #ffffff;
  --blue-soft: #e7f7fe;
  --blue-pale: #f5fbff;
  --shadow: 0 24px 60px rgba(0, 141, 210, 0.16);
  --shadow-soft: 0 16px 38px rgba(0, 141, 210, 0.1);
  --font-display: "Museo 500", Museo, "Roboto", "Segoe UI", system-ui, sans-serif;
  --font-body: "Roboto", "Roboto Regular", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --anchor-offset: 92px;
}

* {
  box-sizing: border-box;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

#about,
#process,
#results,
#formats,
#faq,
#apply {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 4px;
  overflow: hidden;
  background: rgba(35, 31, 32, 0.12);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 90ms linear;
}

img {
  max-width: 100%;
  display: block;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(211, 236, 248, 0.92);
  box-shadow: 0 12px 34px rgba(0, 141, 210, 0.08);
  backdrop-filter: blur(16px);
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 13px clamp(18px, 4vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--graphite);
  min-width: 0;
  font-family: var(--font-display);
}

.site-header .brand {
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 50px;
  background: var(--teal);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
  flex: 0 0 auto;
  overflow: hidden;
}

.logo-tile {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2px;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-text > span {
  font-size: 22px;
  line-height: 1;
}

.brand-text small {
  display: block;
  max-width: 360px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.15;
  font-family: var(--font-body);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  font-family: var(--font-display);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--teal);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.footer-inner a:hover {
  color: var(--teal);
}

.main-nav a:hover {
  border-color: rgba(0, 160, 227, 0.22);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.main-nav a:focus-visible,
.header-cta:focus-visible {
  outline: 3px solid rgba(0, 160, 227, 0.2);
  outline-offset: 3px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  box-shadow:
    0 14px 34px rgba(0, 160, 227, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(0, 141, 210, 0.3);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(35, 31, 32, 0.9) 0%, rgba(35, 31, 32, 0.72) 44%, rgba(0, 141, 210, 0.12) 100%),
    url("assets/hero-alumni-it.png") center / cover no-repeat;
  padding: 136px clamp(20px, 6vw, 78px) 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 82%, rgba(0, 160, 227, 0.28), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.compare-label,
.tariff-label,
.role {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.section-kicker::before {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.hero .eyebrow {
  color: #7edcff;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  font-family: var(--font-display);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
  font-family: var(--font-display);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
  font-family: var(--font-display);
}

.hero-lead {
  width: min(650px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 160, 227, 0.24);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: var(--line);
  color: var(--teal-dark);
  background: var(--white);
}

.slot-alert {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border-radius: 8px;
}

.hero-slot-alert {
  margin-top: 18px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(126, 220, 255, 0.42);
  background: rgba(0, 141, 210, 0.22);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.slot-alert-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.slot-alert-text {
  display: grid;
  gap: 2px;
}

.slot-alert-text strong,
.apply-slots strong {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
}

.slot-alert-text small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 14px;
}

.chip-icon,
.mini-icon,
.step-icon,
.section-cta-icon svg,
.proof-media-mark svg,
.trust-icon svg,
.card-icon svg,
.panel-icon svg,
.price-icon svg,
.avatar svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chip-icon {
  width: 18px;
  height: 18px;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-muted {
  background: var(--soft);
}

.intro-grid,
.august-grid,
.product-layout,
.alumni-proof-layout,
.team-layout,
.apply-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.intro-copy,
.august-copy,
.product-copy,
.team-layout > div:first-child,
.apply-copy {
  font-size: 19px;
  color: var(--muted);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading.narrow {
  width: min(820px, 100%);
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.question-grid,
.process-strip,
.pricing-grid,
.results-grid,
.trust-grid,
.team-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.question-card,
.compare-panel,
.fit-card,
.timeline-item,
.result-column,
.trust-card,
.team-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.question-card {
  display: grid;
  align-content: start;
  padding: 24px;
  min-height: 230px;
  box-shadow: 0 12px 30px rgba(0, 141, 210, 0.05);
}

.question-card h3 {
  min-height: 48px;
}

.card-icon,
.panel-icon,
.price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--blue-soft);
}

.card-icon svg,
.panel-icon svg,
.price-icon svg {
  width: 27px;
  height: 27px;
}

.question-card:nth-child(2) .card-icon,
.question-card:nth-child(4) .card-icon,
.muted-icon {
  color: var(--teal);
  background: #eef9fe;
}

.question-card:nth-child(3) .card-icon {
  color: var(--teal-dark);
  background: #dff3fc;
}

.question-card p,
.section-cta-copy p,
.process-step p,
.trust-card p,
.proof-facts p,
.timeline-item p,
.team-card p,
.price-note,
.result-column li,
.fit-card li,
.compare-panel li,
.faq-list p {
  color: var(--muted);
}

.section-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(0, 160, 227, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), #edf9fe);
}

.section-cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
}

.section-cta-icon svg {
  width: 30px;
  height: 30px;
}

.section-cta-copy h3,
.section-cta-copy p {
  margin: 0;
}

.section-cta-copy h3 {
  margin-bottom: 6px;
}

.section-cta-actions {
  display: flex;
  justify-content: flex-end;
}

.section-cta-actions .button {
  min-height: 46px;
}

.track-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 0.42fr);
  align-items: center;
  gap: 18px;
  margin-top: clamp(26px, 4vw, 44px);
  padding: clamp(20px, 3.2vw, 28px);
  border: 1px solid rgba(0, 160, 227, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), #edf9fe);
}

.track-note-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
}

.track-note-icon svg {
  width: 30px;
  height: 30px;
}

.track-note h3,
.track-note p {
  margin: 0;
}

.track-note h3 {
  margin-bottom: 6px;
}

.track-note p,
.track-note-date span {
  color: var(--muted);
}

.track-note-date {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(0, 160, 227, 0.18);
}

.track-note-date strong {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 20px;
}

.track-note-date span {
  font-size: 14px;
  line-height: 1.35;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.compare-panel {
  padding: clamp(26px, 4vw, 38px);
}

.accent-panel {
  border-color: rgba(0, 160, 227, 0.38);
  background: var(--blue-pale);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.muted-list li::before {
  background: #95bfd3;
}

.august-band {
  background: var(--graphite);
  color: var(--white);
}

.august-band .section-kicker {
  color: #7edcff;
}

.august-copy,
.august-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.track-summary {
  display: grid;
  gap: 18px;
  padding: 6px 0 6px 24px;
  border-left: 4px solid var(--teal);
}

.summary-label {
  margin: 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.summary-list li {
  position: relative;
  padding: 0 0 12px 26px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.summary-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.summary-accent {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(0, 160, 227, 0.28);
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--teal-dark);
  font-weight: 850;
}

.summary-accent::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--teal);
}

.process-strip {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.32fr);
  align-items: stretch;
  gap: 16px;
  margin-top: 26px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 100%;
  padding: 22px 20px 20px;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 39px;
  left: -9px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--paper);
  transform: rotate(45deg);
}

.process-step:first-child::before {
  display: none;
}

.process-step span,
.process-opportunity span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.process-step h3,
.process-step p,
.process-opportunity p {
  margin-bottom: 0;
}

.process-opportunity {
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(0, 160, 227, 0.38);
  border-radius: 8px;
  background: var(--blue-pale);
}

.process-opportunity span {
  justify-self: start;
  background: var(--teal);
  color: var(--white);
}

.process-opportunity p {
  color: var(--teal-dark);
  font-weight: 760;
}

.fit-layout {
  display: grid;
  gap: 24px;
}

.fit-card {
  padding: 30px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 26px;
}

.timeline-featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(120deg, rgba(0, 160, 227, 0.96), rgba(0, 141, 210, 0.96)),
    var(--teal);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.timeline-featured h3 {
  font-size: clamp(26px, 3vw, 36px);
}

.timeline-featured p,
.timeline-featured .step-subtitle {
  color: rgba(255, 255, 255, 0.86);
}

.step-subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.step-top span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.step-icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--blue-soft);
  flex: 0 0 auto;
}

.timeline-featured .step-top span {
  background: var(--white);
  color: var(--teal-dark);
}

.timeline-featured .step-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.results-section {
  background: #f4fbff;
}

.result-count {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-right: 8px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.92em;
  line-height: 1;
  vertical-align: middle;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.deliverable-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.deliverable-card h3 {
  margin-bottom: 8px;
}

.deliverable-card p {
  margin: 0;
  color: var(--muted);
}

.github-mock,
.portfolio-mock,
.resume-mock,
.roadmap-mock {
  grid-column: span 2;
}

.mock-toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.mock-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.mock-toolbar span:first-child {
  background: var(--coral);
}

.github-profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.github-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.26);
}

.repo-list {
  display: grid;
  gap: 10px;
}

.repo-list span {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 160, 227, 0.16);
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--teal-dark);
  font-weight: 800;
}

.repo-list small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.portfolio-preview {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(35, 31, 32, 0.02), rgba(35, 31, 32, 0.72)),
    linear-gradient(135deg, #dff3fc, #85d9f5 48%, #00a0e3);
  color: var(--white);
}

.portfolio-preview p {
  color: rgba(255, 255, 255, 0.84);
}

.preview-chip,
.tech-row span {
  width: fit-content;
  border-radius: 8px;
  font-weight: 800;
}

.preview-chip {
  margin-bottom: 14px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.18);
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tech-row span {
  padding: 7px 9px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 13px;
}

.resume-sheet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(0, 160, 227, 0.18);
  border-radius: 8px;
  background: var(--blue-pale);
  box-shadow: 0 18px 34px rgba(0, 141, 210, 0.12);
}

.resume-sheet h3,
.resume-sheet > p {
  grid-column: 1 / -1;
}

.resume-head {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 160, 227, 0.16);
}

.resume-photo {
  display: block;
  width: 72px;
  aspect-ratio: 1;
  border: 3px solid var(--white);
  border-radius: 8px;
  background: #eaf7fc;
  box-shadow: 0 12px 24px rgba(0, 141, 210, 0.16);
  object-fit: cover;
  object-position: center 42%;
}

.resume-section {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 160, 227, 0.16);
}

.resume-sheet p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.resume-name {
  color: var(--ink) !important;
  font-weight: 900;
}

.resume-section strong {
  color: var(--teal-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.resume-section span {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.resume-goal {
  grid-column: 1 / -1;
  padding: 9px;
  border-radius: 8px;
  background: var(--white);
}

.roadmap-mock {
  background:
    linear-gradient(135deg, var(--white), var(--blue-pale));
}

.roadmap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 12px;
  margin-top: 24px;
}

.roadmap span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.roadmap p {
  align-self: center;
  font-weight: 750;
}

.certificate-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 160, 227, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 141, 210, 0.08);
}

.certificate-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--teal-dark);
}

.certificate-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-note h3,
.certificate-note p {
  margin: 0;
}

.certificate-note h3 {
  margin-bottom: 5px;
}

.certificate-note p {
  color: var(--muted);
}

.result-column {
  padding: clamp(26px, 4vw, 38px);
  background: var(--white);
}

.trust-section {
  background: var(--white);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 141, 210, 0.05);
}

.trust-card.featured {
  border-color: rgba(0, 160, 227, 0.34);
  background: linear-gradient(135deg, #f3fbff, var(--white));
  box-shadow: 0 20px 46px rgba(0, 160, 227, 0.12);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--teal-dark);
}

.trust-card.featured .trust-icon {
  background: var(--teal);
  color: var(--white);
}

.trust-icon svg {
  width: 29px;
  height: 29px;
}

.trust-number {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.trust-card h3 {
  margin-bottom: 12px;
}

.rbc-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(0, 160, 227, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), #eef9fe);
}

.rbc-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(35, 31, 32, 0.06), rgba(35, 31, 32, 0.78)),
    url("assets/rbc-preview.png") center / cover no-repeat;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(15, 24, 32, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.rbc-preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(15, 24, 32, 0.22);
}

.rbc-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.rbc-play {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.rbc-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.rbc-preview-caption {
  position: absolute;
  top: 68px;
  left: 18px;
  max-width: 280px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(15, 24, 32, 0.72);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
}

.rbc-copy {
  align-self: center;
}

.rbc-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 36px);
}

.rbc-copy p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 18px;
  border: 1px solid rgba(0, 160, 227, 0.34);
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.text-button:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.alumni-proof-section {
  background: var(--graphite);
  color: var(--white);
}

.alumni-proof-heading {
  width: min(820px, 100%);
  margin-bottom: clamp(24px, 4vw, 42px);
  text-align: center;
}

.alumni-proof-heading .section-kicker {
  color: #85d9f5;
}

.alumni-proof-heading h2 {
  width: auto;
  max-width: 100%;
}

.alumni-proof-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 56px);
}

.proof-media {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 0;
}

.proof-media-frame {
  display: grid;
  align-content: end;
  min-height: 430px;
  height: 100%;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(35, 31, 32, 0.12), rgba(35, 31, 32, 0.88)),
    radial-gradient(circle at 24% 18%, rgba(0, 160, 227, 0.55), transparent 34%),
    linear-gradient(135deg, #e9f7fc, #8bd7f1 46%, #f0815f);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.proof-video-frame {
  display: block;
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--graphite);
}

.proof-video-frame iframe,
.proof-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.proof-video-caption {
  display: grid;
  align-content: start;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 8px;
  background: transparent;
}

.proof-video-caption strong {
  color: #85d9f5;
  font-family: var(--font-display);
  font-size: 17px;
}

.proof-video-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.proof-media-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-dark);
}

.proof-media-mark svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

.proof-media-frame p {
  width: min(360px, 100%);
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
}

.proof-media-frame span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-lead {
  width: min(680px, 100%);
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.24;
}

.proof-copy blockquote {
  margin: 8px 0 24px;
  padding: 0 0 0 20px;
  border-left: 4px solid var(--coral);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.16;
}

.proof-person {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}

.proof-person strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
}

.proof-person span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.proof-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 2px;
}

.proof-facts div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-facts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: #85d9f5;
  color: var(--graphite);
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 900;
}

.proof-facts p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.proof-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  width: fit-content;
  min-height: 50px;
  margin-top: auto;
  padding: 0 20px;
  border: 1px solid rgba(133, 217, 245, 0.72);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #85d9f5);
  box-shadow: 0 16px 34px rgba(0, 160, 227, 0.24);
  color: var(--graphite);
  font-weight: 900;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.proof-link:hover {
  border-color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, #85d9f5, var(--white));
  box-shadow: 0 20px 40px rgba(0, 160, 227, 0.32);
  transform: translateY(-2px);
}

.team-note {
  margin-top: clamp(26px, 4vw, 42px);
  padding: 4px 0 4px 18px;
  border-left: 4px solid var(--teal);
}

.team-note h3,
.team-note p {
  margin: 0;
}

.team-note h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 20px;
}

.team-note p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.team-card {
  display: grid;
  grid-template-rows: auto auto auto auto 138px auto auto;
  align-content: start;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0, 141, 210, 0.06);
}

.team-card-lead {
  align-content: start;
}

.team-card-expert {
  align-content: start;
  border-color: rgba(0, 160, 227, 0.36);
  background: linear-gradient(135deg, var(--white), var(--blue-pale));
}

.team-photo {
  width: 136px;
  height: 156px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-pale);
  object-fit: cover;
  object-position: 50% 28%;
}

.team-card-expert .team-photo {
  object-position: 50% 23%;
}

.team-position {
  margin-top: -4px;
  color: var(--teal-dark);
  font-weight: 800;
}

.team-position + p {
  min-height: 0;
  overflow: hidden;
}

.team-facts {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.team-facts li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.team-facts li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  align-self: start;
  gap: 8px;
  margin-top: 18px;
}

.expert-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(0, 160, 227, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.avatar svg {
  width: 34px;
  height: 34px;
}

.avatar.accent {
  background: var(--coral);
}

.team-card .role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 11px;
  border: 1px solid rgba(0, 160, 227, 0.28);
  border-radius: 8px;
  background: rgba(0, 160, 227, 0.08);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.team-card-expert .role {
  border-color: rgba(231, 78, 58, 0.28);
  background: rgba(231, 78, 58, 0.08);
  color: var(--coral);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 28px;
  min-height: 100%;
  box-shadow: 0 12px 30px rgba(0, 141, 210, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.price-card:hover,
.price-card:focus-within {
  border-color: rgba(0, 160, 227, 0.38);
  box-shadow: 0 18px 42px rgba(0, 141, 210, 0.12);
  transform: translateY(-3px);
}

.price-icon {
  margin-bottom: 22px;
}

.price-card.featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, #f3fbff, var(--white) 42%);
  box-shadow: 0 24px 58px rgba(0, 160, 227, 0.18);
}

.price-card.featured:hover,
.price-card.featured:focus-within {
  border-color: var(--teal-dark);
  box-shadow: 0 28px 66px rgba(0, 160, 227, 0.24);
  transform: translateY(-4px);
}

.price-card.featured::before {
  content: "Выбор выпускников";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(0, 160, 227, 0.82);
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(0, 160, 227, 0.24);
  pointer-events: none;
}

.price-card.featured .price-icon {
  margin-right: 168px;
}

.price-card h3 {
  min-height: 56px;
}

.price {
  margin: 18px 0 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.price-note {
  min-height: 58px;
}

.price-credit {
  margin: 14px 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 160, 227, 0.22);
  border-radius: 8px;
  background: rgba(0, 160, 227, 0.08);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
}

.pricing-tax-note {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(0, 160, 227, 0.22);
  border-radius: 8px;
  background: rgba(0, 160, 227, 0.08);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.price-card .button {
  margin-top: auto;
}

.price-card .check-list {
  margin-bottom: 28px;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(0, 160, 227, 0.34);
  box-shadow: 0 14px 34px rgba(0, 141, 210, 0.08);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--teal-dark);
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 12px;
}

details p:last-child {
  padding-bottom: 22px;
}

.apply-section {
  background:
    linear-gradient(110deg, rgba(0, 160, 227, 0.94), rgba(35, 31, 32, 0.96)),
    var(--teal);
  color: var(--white);
}

.apply-section .section-kicker,
.apply-section p,
.apply-note {
  color: rgba(255, 255, 255, 0.8);
}

.apply-section h2 {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(35, 31, 32, 0.2);
}

.apply-section .section-kicker {
  color: #d9f4ff;
}

.apply-grid {
  align-items: stretch;
}

.apply-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.apply-note {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.apply-slots {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.apply-slots strong {
  color: var(--white);
  font-size: 22px;
}

.apply-slots span {
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 26px 64px rgba(15, 24, 32, 0.18);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.field-badge {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(35, 31, 32, 0.06);
  color: rgba(35, 31, 32, 0.56);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.field-badge.is-required {
  background: var(--blue-soft);
  color: var(--teal-dark);
}

.form-consents {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.consent-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  font-weight: 600;
}

.lead-form .consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: rgba(35, 31, 32, 0.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
}

.consent-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.consent-check a {
  color: var(--teal-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(35, 31, 32, 0.42);
  font-weight: 400;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 160, 227, 0.18);
  border-color: var(--teal);
}

input.is-invalid {
  border-color: #c94c4c;
}

input.is-invalid:focus {
  outline-color: rgba(201, 76, 76, 0.16);
  border-color: #c94c4c;
}

.field-error {
  min-height: 16px;
  margin-top: -2px;
  color: #9f2f2f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status.is-error {
  color: #9f2f2f;
}

.site-footer {
  padding: 42px clamp(18px, 4vw, 48px);
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(430px, 1fr) minmax(300px, 0.78fr);
  align-items: start;
  gap: clamp(22px, 3vw, 36px);
  width: auto;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-about,
.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand-license {
  display: grid;
  max-width: 430px;
  align-items: start;
  gap: 14px;
}

.footer-summary {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

.footer-legal-meta {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.45;
}

.footer-license-compact {
  display: grid;
  gap: 9px;
  justify-items: start;
  padding-top: 2px;
}

.footer-license-caption {
  width: min(240px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-about p,
.footer-contact p {
  margin: 0;
}

.footer-license {
  position: relative;
  display: block;
  width: 108px;
  aspect-ratio: 0.74;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--white);
  cursor: zoom-in;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-license:hover {
  border-color: rgba(0, 160, 227, 0.52);
  background: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-license::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 84, 126, 0.3);
  opacity: 0;
  transition: opacity 180ms ease;
}

.footer-license:hover::after {
  opacity: 1;
}

.footer-license img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 180ms ease;
}

.footer-license:hover img {
  transform: scale(1.04);
}

.footer-contact-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  line-height: 1.3;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-addresses {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.35;
}

.footer-addresses p {
  margin: 0;
}

.phone-link {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.max-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 0 14px 0 7px;
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 400;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.max-link:hover {
  color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.max-icon {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  left: clamp(18px, 4vw, 48px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(0, 160, 227, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-dark);
  font: inherit;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 24, 32, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top span:first-child {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--teal);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
}

.back-to-top:hover {
  border-color: rgba(0, 160, 227, 0.5);
  box-shadow: 0 16px 34px rgba(15, 24, 32, 0.24);
  transform: translateY(-1px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(0, 160, 227, 0.22);
  outline-offset: 3px;
}

.cookie-notice {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 880;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(460px, calc(100% - 32px));
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(0, 160, 227, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(15, 24, 32, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.cookie-notice a {
  color: var(--teal-dark);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.cookie-notice button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.modal-open {
  overflow: hidden;
}

.license-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.license-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.license-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 32, 0.76);
  backdrop-filter: blur(7px);
}

.license-modal-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(880px, 100%);
  max-height: min(90vh, 920px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.license-modal.is-open .license-modal-panel {
  transform: translateY(0) scale(1);
}

.license-modal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(26, 31, 37, 0.1);
}

.license-modal-header h2 {
  margin: 0;
}

.license-modal-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}

.license-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.license-modal-body {
  min-height: 0;
  overflow: auto;
  padding: 20px;
  background: #eef4f7;
}

.license-modal-body img {
  display: block;
  width: min(760px, 100%);
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(26, 31, 37, 0.14);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(26, 31, 37, 0.18);
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.media-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 32, 0.78);
  backdrop-filter: blur(7px);
}

.media-modal-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1080px, 100%);
  max-height: min(90vh, 820px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.media-modal.is-open .media-modal-panel {
  transform: translateY(0) scale(1);
}

.media-modal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-modal-header h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.1;
}

.media-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.media-modal-body {
  position: relative;
  min-height: 0;
  padding: 0;
  background: #000;
}

.media-modal-body::before {
  content: "Загрузка видео...";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.media-modal-body.is-loading::before {
  opacity: 1;
}

.media-modal-body video,
.media-modal-body iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-height: calc(90vh - 72px);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 0;
  transition: opacity 160ms ease;
}

.media-modal-body.is-loading iframe {
  opacity: 0;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
    min-height: 48px;
  }
}

@media (max-width: 980px) {
  .brand-text small {
    max-width: 260px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 82vh;
    background-position: 62% center;
  }

  .question-grid,
  .timeline,
  .deliverables-grid,
  .trust-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .august-grid,
  .product-layout,
  .alumni-proof-layout,
  .rbc-proof,
  .team-layout,
  .track-note,
  .process-strip,
  .section-cta,
  .apply-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-step + .process-step {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-step::before {
    display: none;
  }

  .section-cta-actions {
    justify-content: flex-start;
  }

  .track-note-date {
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(0, 160, 227, 0.18);
  }

  .apply-note {
    margin-top: 28px;
  }

  .proof-facts {
    grid-template-columns: 1fr;
  }

  .rbc-preview {
    min-height: 240px;
  }

  .price-card.featured .price-icon {
    margin-right: 0;
  }
}

@media (max-width: 860px) {
  .team-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-rows: none;
  }

  .team-position + p {
    min-height: auto;
    overflow: visible;
  }

  .price-card h3,
  .price-note {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --anchor-offset: 88px;
  }

  .site-header {
    position: sticky;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 16px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 42px;
  }

  .brand-text > span {
    font-size: 18px;
  }

  .brand-text small {
    display: none;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-phone {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: auto;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 44px 20px 46px;
    background:
      linear-gradient(180deg, rgba(35, 31, 32, 0.88), rgba(35, 31, 32, 0.58)),
      url("assets/hero-alumni-it.png") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(34px, 11vw, 50px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(26px, 8.8vw, 38px);
    line-height: 1.08;
  }

  .section {
    padding: 58px 0;
  }

  .site-footer {
    padding: 38px 16px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-lead,
  .section-heading p,
  .intro-copy,
  .august-copy,
  .product-copy,
  .team-layout > div:first-child,
  .apply-copy {
    font-size: 16px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    font-size: 13px;
  }

  .section-cta {
    align-items: start;
  }

  .section-cta-icon {
    width: 52px;
    height: 52px;
  }

  .section-cta-actions {
    width: 100%;
  }

  .proof-media-frame {
    min-height: 330px;
  }

  .proof-video-frame {
    min-height: 0;
  }

  .team-card {
    grid-template-rows: none;
  }

  .team-position + p {
    min-height: auto;
    overflow: visible;
  }

  .rbc-proof {
    padding: 18px;
  }

  .rbc-preview {
    min-height: 210px;
  }

  .rbc-preview-caption {
    font-size: 18px;
  }

  .media-modal {
    padding: 14px;
  }

  .media-modal-header {
    padding: 12px 14px;
  }

  .media-modal-close {
    width: 34px;
    height: 34px;
    font-size: 25px;
  }

  .button {
    width: 100%;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .question-grid,
  .compare-grid,
  .fit-grid,
  .timeline,
  .deliverables-grid,
  .results-grid,
  .trust-grid,
  .team-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .github-mock,
  .portfolio-mock,
  .resume-mock,
  .roadmap-mock {
    grid-column: auto;
  }

  .github-profile {
    grid-template-columns: 1fr;
  }

  .resume-sheet {
    grid-template-columns: 1fr;
  }

  .certificate-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .deliverable-card {
    min-height: auto;
  }

  .price-card h3,
  .price-note {
    min-height: auto;
  }

  .price-card {
    padding: 24px;
  }

  .price {
    font-size: 30px;
  }

  .portfolio-preview {
    min-height: 240px;
  }

  .question-card {
    min-height: auto;
  }

  .question-card h3 {
    min-height: auto;
  }

  .card-icon,
  .panel-icon,
  .price-icon {
    margin-bottom: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-about {
    grid-column: auto;
    width: 100%;
  }

  .footer-brand-license {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: none;
  }

  .footer-license-compact {
    justify-items: start;
    width: min(100%, 280px);
  }

  .footer-license-caption {
    width: 100%;
    text-align: left;
    font-size: 12px;
    line-height: 1.28;
  }

  .footer-license-compact .back-to-top {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
    bottom: 72px;
  }

  .cookie-notice button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-main {
    padding-inline: 14px;
  }

  .header-cta {
    padding: 0 10px;
  }

  .hero {
    padding-inline: 16px;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero-slot-alert,
  .hero-points,
  .hero-actions {
    width: 100%;
  }

  .hero-points li {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .section-cta,
  .track-note,
  .certificate-note,
  .lead-form,
  .price-card,
  .question-card,
  .trust-card,
  .team-card {
    padding: 20px;
  }

  .field-label,
  .consent-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  summary {
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  details p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-license {
    width: 96px;
  }

  .back-to-top {
    min-height: 40px;
    margin-top: 4px;
    padding-right: 12px;
    padding-left: 10px;
  }
}
