:root {
  --bg: #101010;
  --surface: #171717;
  --surface-soft: #212121;
  --text: #f3f2ef;
  --muted: #a6a6a3;
  --line: rgb(255 255 255 / 20%);
  --cyan: #64d3ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Manrope, Arial, sans-serif; line-height: 1.45; }
h1, h2, h3, p { margin-top: 0; }

.page-noise { position: fixed; inset: 0; z-index: 5; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.wrap { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: absolute; z-index: 9; top: -60px; left: 20px; padding: 10px 16px; background: var(--cyan); color: #071117; font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 20px; }

.header { display: flex; align-items: center; justify-content: space-between; height: 92px; border-bottom: 1px solid var(--line); }
.brand { color: var(--text); font: 600 19px/1 Unbounded, sans-serif; letter-spacing: -1.5px; text-decoration: none; }
.brand span, h1 span { color: var(--cyan); }
.nav { display: flex; gap: 32px; }
.nav a { color: var(--muted); font-size: 14px; font-weight: 800; text-decoration: none; transition: color .2s; }
.nav a:hover, .nav a:focus-visible { color: var(--cyan); }
.header-note { margin: 0; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.hero { position: relative; display: grid; grid-template-columns: minmax(280px, .82fr) 1.18fr; gap: clamp(40px, 8vw, 118px); min-height: 650px; padding: 60px 8.5% 90px; overflow: hidden; border-bottom: 1px solid var(--line); }
.portrait-frame { position: relative; align-self: start; max-width: 355px; background: #272727; }
.portrait-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(140deg, transparent 42%, rgb(8 8 8 / 18%)); }
.portrait-frame img { display: block; width: 100%; height: 470px; object-fit: cover; object-position: 47% center; filter: grayscale(1) contrast(1.08); }
.portrait-label { position: absolute; z-index: 1; bottom: 14px; left: 15px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-content { align-self: center; padding-top: 4px; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.hero h1 { margin: 28px 0 24px; font: 600 clamp(45px, 6.7vw, 84px) /.97 Unbounded, sans-serif; letter-spacing: -5.5px; }
.hero-role { margin-bottom: 24px; font: 600 clamp(19px, 2vw, 26px) /1.28 Unbounded, sans-serif; letter-spacing: -1.4px; }
.hero-role em, h2 em { color: var(--cyan); font-style: normal; }
.hero-copy { max-width: 455px; margin-bottom: 30px; color: #bbbcb9; font-size: 17px; line-height: 1.68; }
.round-link { display: inline-flex; align-items: center; gap: 14px; color: var(--text); font-size: 14px; font-weight: 800; text-decoration: none; }
.round-link b { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-size: 16px; transition: background .2s, color .2s; }
.round-link:hover b { background: var(--cyan); color: #111; }
.hero-mark { position: absolute; right: 8.5%; bottom: 45px; color: var(--cyan); font: 300 73px/.8 Manrope, sans-serif; }

.section { padding: 110px 8.5%; }
.section-intro h2 { margin: 17px 0 0; font: 600 clamp(34px, 4.5vw, 59px) /1.03 Unbounded, sans-serif; letter-spacing: -3.9px; }
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.expertise-card { min-height: 320px; padding: 24px 27px 29px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); transition: background .25s; }
.expertise-card:hover { background: var(--surface-soft); }
.expertise-card.card-accent { background: var(--cyan); color: #101010; }
.expertise-card > span { display: block; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.expertise-card h3 { margin: 66px 0 13px; font: 600 22px/1.2 Unbounded, sans-serif; letter-spacing: -1.4px; }
.expertise-card p { max-width: 340px; margin-bottom: 19px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.card-accent p { color: #18465a; }
.expertise-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.expertise-card li { padding: 4px 7px; border: 1px solid currentcolor; color: #d3d3d0; font-size: 11px; font-weight: 700; }
.card-accent li { color: #113e52; }

.approach { background: var(--cyan); color: #101010; }
.approach .eyebrow { color: #1a5268; }
.approach-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 9vw, 130px); }
.principles { border-top: 1px solid rgb(16 16 16 / 34%); }
.principles article { display: grid; grid-template-columns: 62px 1fr; gap: 15px; padding: 25px 0; border-bottom: 1px solid rgb(16 16 16 / 34%); }
.principles span { font: 700 11px Unbounded, sans-serif; }
.principles h3 { margin: 0 0 8px; font: 600 20px Unbounded, sans-serif; letter-spacing: -1.25px; }
.principles p { max-width: 390px; margin: 0; color: #174357; font-size: 15px; line-height: 1.65; }

.profile { padding-bottom: 125px; }
.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 55px; }
.profile-card { min-height: 365px; padding: 28px; border-top: 3px solid var(--text); background: var(--surface); }
.profile-card.focus { border-color: var(--cyan); background: #191f21; }
.card-kicker { margin-bottom: 41px; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.profile-card ul { margin: 0; padding: 0; list-style: none; }
.profile-card li { position: relative; padding: 0 0 17px 18px; color: #d0d1ce; font-size: 16px; line-height: 1.6; }
.profile-card li::before { position: absolute; top: .63em; left: 0; width: 6px; height: 6px; border: 1px solid var(--cyan); border-radius: 50%; content: ""; }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 0 35px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer p { margin: 0; }
.telegram-link { color: var(--cyan); font-size: inherit; font-weight: 800; text-decoration: none; }
.telegram-link:hover, .telegram-link:focus-visible { color: var(--text); }

@media (max-width: 760px) {
  .wrap { width: min(100% - 34px, 620px); }
  .header { height: 72px; }
  .nav { display: none; }
  .header-note { font-size: 9px; }
  .hero { grid-template-columns: 1fr; gap: 30px; min-height: 0; padding: 40px 0 65px; }
  .portrait-frame { max-width: none; }
  .portrait-frame img { height: min(122vw, 540px); object-position: 47% 26%; }
  .hero-content { padding: 0; }
  .hero h1 { font-size: clamp(43px, 14vw, 68px); letter-spacing: -4px; }
  .hero-copy { font-size: 16px; }
  .round-link { font-size: 15px; }
  .hero-mark { right: 0; bottom: 24px; font-size: 50px; }
  .section { padding: 75px 0; }
  .section-intro h2 { letter-spacing: -2.8px; }
  .expertise-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .expertise-card { min-height: 275px; padding: 22px; }
  .expertise-card h3 { margin-top: 55px; }
  .expertise-card p, .principles p, .profile-card li { font-size: 16px; }
  .approach-layout { grid-template-columns: 1fr; gap: 45px; }
  .principles article { grid-template-columns: 43px 1fr; }
  .profile { padding-bottom: 80px; }
  .profile-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .profile-card { min-height: 0; padding: 24px; }
  .card-kicker { margin-bottom: 29px; }
  .footer { flex-wrap: wrap; gap: 15px; }
  .footer p:nth-child(2) { width: 100%; order: 3; }
}
