:root {
  --page-ink: #071010;
  --page-blue: #2196f3;
  --page-paper: #f3f6f7;
  --page-line: rgba(7, 16, 16, .11);
  --page-muted: #647173;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.info-page { margin: 0; overflow-x: hidden; background: var(--page-paper); color: var(--page-ink); }
.info-shell { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
.info-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 150px 0 72px;
  color: #fff;
  background: radial-gradient(circle at 82% 12%, rgba(33,150,243,.22), transparent 32%), #071010;
}
.info-kicker { margin: 0 0 18px; color: #72c1ff; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.info-hero h1 { max-width: 850px; margin: 0; font-size: clamp(44px, 7vw, 76px); font-weight: 800; line-height: .98; letter-spacing: -.05em; }
.info-lead { max-width: 720px; margin: 24px 0 0; color: #b8c4c4; font-size: 18px; line-height: 1.7; }
.info-content { padding: 72px 0 92px; }
.info-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr); gap: 28px; align-items: start; }
.info-card { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--page-line); border-radius: 24px; background: #fff; box-shadow: 0 14px 40px rgba(7,15,15,.05); }
.info-card + .info-card { margin-top: 22px; }
.info-card h2 { margin: 0 0 18px; font-size: clamp(27px, 4vw, 39px); letter-spacing: -.035em; }
.info-card h3 { margin: 30px 0 10px; font-size: 21px; }
.info-card p { margin: 0 0 18px; color: #526062; line-height: 1.8; }
.info-card p:last-child { margin-bottom: 0; }
.info-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.info-list li { padding: 15px 17px; border-radius: 14px; background: #edf4f8; color: #304349; font-size: 15px; }
.info-list strong { display: block; margin-bottom: 3px; color: var(--page-ink); }
.info-aside { position: sticky; top: 100px; }
.info-links { display: grid; gap: 10px; }
.info-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid var(--page-line);
  border-radius: 14px;
  background: #fff;
  color: #243234;
  font-weight: 700;
  text-decoration: none;
}
.info-links a:hover { border-color: var(--page-blue); color: var(--page-blue); }
.info-links a.primary { background: var(--page-blue); border-color: var(--page-blue); color: #fff; }
.contact-list a { color: #0c7fcc; text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { text-decoration: underline; }
.skill-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.skill-cloud span { padding: 8px 12px; border: 1px solid #cfe0e9; border-radius: 999px; color: #45606b; background: #f6fbfd; font-size: 13px; }
.timeline { display: grid; gap: 18px; }
.timeline-item { position: relative; padding: 0 0 20px 28px; border-bottom: 1px solid var(--page-line); }
.timeline-item:last-child { padding-bottom: 0; border-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--page-blue); box-shadow: 0 0 0 5px rgba(33,150,243,.12); }
.timeline-item h3 { margin: 0 0 6px; }
.timeline-item small { display: block; margin-bottom: 9px; color: var(--page-blue); font-weight: 700; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 10000; padding: 10px 14px; border-radius: 10px; background: #fff; color: #111; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

@media (max-width: 767px) {
  .info-shell { width: min(100% - 28px, 1080px); }
  .info-hero { min-height: 390px; padding: 128px 0 54px; }
  .info-lead { font-size: 16px; }
  .info-content { padding: 54px 0 70px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-aside { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
