

:root {
  --accent: #E8FF00;
  --ink: #111;
  --bg: #fff;
  --bg-alt: #fafafa;
  --muted: #555;
  --muted-2: #6b6b6b;
  --muted-3: #8a8a8a;
  --muted-4: #9a9a9a;
  --line: #ececec;
  --line-soft: #f0f0f0;
  --line-hair: #eee;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 44px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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


[id] { scroll-margin-top: 84px; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}


.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 16px; }


.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.arrow { display: inline-block; }


.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand__cursor {
  width: 9px;
  height: 17px;
  background: var(--accent);
  display: inline-block;
  margin-left: 3px;
}

.nav__desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
  padding-bottom: 3px;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}


.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lang__sep { color: #d4d4d4; font-weight: 400; }
.lang__btn {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  padding: 6px;
  color: var(--muted-4);
  font-weight: 500;
}
.lang__btn.is-active { color: var(--ink); font-weight: 600; }


.nav__cta {
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}


.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.nav__mobile {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px var(--pad-x) 26px;
  flex-direction: column;
  gap: 4px;
  background: #fff;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  padding: 10px 0 10px 12px;
  border-left: 3px solid transparent;
}
.nav__mobile-link.is-active {
  font-weight: 700;
  color: var(--ink);
  border-left: 3px solid var(--accent);
}
.nav__mobile-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.nav__mobile-cta {
  margin-top: 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 20px;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
}


@media (max-width: 879px) {
  .nav__desktop { display: none; }
  .nav__burger { display: flex; }
  
  .nav__mobile-link { padding: 14px 0 14px 12px; }
  .nav__mobile-lang .lang__btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
  }
}


.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) var(--pad-x) clamp(48px, 7vw, 96px);
}
.hero__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.hero__copy { flex: 1 1 420px; min-width: min(300px, 100%); }
.hero .eyebrow { margin-bottom: 26px; }
.hero__h1 {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.hl {
  background-image: linear-gradient(transparent 0.08em, var(--accent) 0.08em, var(--accent) 0.86em, transparent 0.86em);
  padding: 0 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero__sub {
  margin: 28px 0 0;
  max-width: 540px;
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.62;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  align-items: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(232, 255, 0, 0.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 255, 0, 0.5);
}
.btn-text {
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid #e3e3e3;
  padding-bottom: 3px;
  transition: border-color .15s ease;
}
.btn-text:hover { border-color: var(--ink); }
.hero__cred {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: #777;
  letter-spacing: 0.02em;
}
.hero__cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.hero__visual {
  flex: 1 1 300px;
  min-width: min(260px, 100%);
  display: flex;
  justify-content: center;
}
.hero__net {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 10px 0;
}
.hero__net svg { display: block; max-width: 400px; overflow: visible; }


@media (max-width: 879px) {
  .hero__visual { display: none; }
}


.proof {
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
  background: #fff;
  padding: 24px 0 26px;
  overflow: hidden;
}
.proof__label {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: var(--maxw);
  margin: 0 auto 18px;
  padding: 0 var(--pad-x);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-4);
}
.proof__label .dot { width: 7px; height: 7px; }

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee--clients { margin-bottom: 18px; }
.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
}
.marquee--clients .marquee__track { animation: hh-marq 22s linear infinite; }
.marquee--voices .marquee__track { animation: hh-marq 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }


.marquee__group {
  display: flex;
  align-items: center;
}
.marquee--clients .marquee__group { gap: 54px; padding-right: 54px; }
.marquee--voices .marquee__group { gap: 16px; padding-right: 16px; }

.client {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #c4c4c2;
  white-space: nowrap;
}

.voice {
  flex: 0 0 auto;
  width: min(360px, 84vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.voice__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.voice__stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
}
.voice__company {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voice__quote {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #444;
  flex: 1;
}
.voice__byline {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-4);
  margin-top: auto;
}


.services {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
}
.services__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) var(--pad-x);
}
.services .eyebrow { margin-bottom: 18px; }
.services__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 48px;
}
.services__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.services__intro {
  margin: 0;
  max-width: 380px;
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.55;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}
.card__bar { height: 6px; background: var(--accent); }
.card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.card__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-4);
}
.card__title {
  margin: 0;
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.28;
}
.card__desc {
  margin: 0;
  color: var(--muted-2);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.card__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  border: 1px solid #e2e2e0;
  padding: 5px 9px;
  border-radius: 2px;
}


.approach {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad-x);
}
.approach__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 80px);
}
.approach__intro { flex: 1 1 400px; min-width: min(300px, 100%); }
.approach__intro .eyebrow { margin-bottom: 20px; }
.approach__title {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.approach__body {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.66;
  color: var(--muted);
  max-width: 480px;
}
.principles {
  flex: 1 1 360px;
  min-width: min(300px, 100%);
  display: flex;
  flex-direction: column;
}
.principle {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.principle__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  padding-top: 3px;
}
.principle__title {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.principle__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
  color: var(--muted-2);
}


.stack { background: var(--ink); color: #fff; }
.stack__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) var(--pad-x);
}
.stack__title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.stack__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  align-items: center;
}
.stack__item {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  padding: 0 clamp(14px, 2vw, 26px);
  border-right: 1px solid #333;
  line-height: 1;
}


.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
}
.process__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) var(--pad-x);
}
.process .eyebrow { margin-bottom: 18px; }
.process__title {
  margin: 0 0 46px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.step { display: flex; gap: 24px; }
.step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #aacc00;
  margin-top: 5px;
}
.step__line {
  width: 2px;
  flex: 1;
  min-height: 18px;
  background: #dcdcda;
  margin-top: 4px;
}
.step:last-child .step__line { background: transparent; }
.step__body { padding-bottom: 34px; }
.step__num {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-3);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.step__title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.step__sub {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted-2);
  max-width: 560px;
}
.step__sub:empty { display: none; }


.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--pad-x);
}
.about__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  justify-content: space-between;
}
.about__copy { flex: 1 1 460px; min-width: min(300px, 100%); }
.about__copy .eyebrow { margin-bottom: 18px; }
.about__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.about__text {
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.66;
  color: var(--muted);
  max-width: 520px;
}
.about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: gap .15s ease;
}
.about__link:hover { gap: 14px; }
.about__portrait-wrap { flex: 0 0 auto; display: flex; justify-content: center; }
.about__portrait {
  position: relative;
  width: clamp(160px, 20vw, 212px);
  height: clamp(160px, 20vw, 212px);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e4e4e2;
  background-image: repeating-linear-gradient(45deg, #f4f4f2 0, #f4f4f2 11px, #ededeb 11px, #ededeb 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__portrait-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-4);
  background: #fff;
  padding: 5px 11px;
  border-radius: 2px;
  border: 1px solid #e4e4e2;
}


.ctaband { background: var(--ink); color: #fff; }
.ctaband__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) var(--pad-x);
  text-align: center;
}
.ctaband__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.ctaband__sub {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: #bdbdbd;
}
.ctaband__btn {
  display: inline-block;
  margin-top: 40px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 38px;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(232, 255, 0, 0.25);
  transition: transform .15s ease;
}
.ctaband__btn:hover { transform: translateY(-2px); }


.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--pad-x) 40px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brandcol { max-width: 380px; }
.footer__brand {
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}
.footer__brand .brand__cursor { width: 9px; height: 18px; }
.footer__blurb {
  margin: 0 0 20px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.6;
}
.footer__email {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.footer__cols {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}
.footer__col-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-4);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  color: #444;
  text-decoration: none;
  font-size: 15px;
  transition: color .15s ease;
}
.footer__links a:hover { color: var(--ink); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.footer__copy { font-size: 13px; color: var(--muted-4); }
.footer__lang { font-size: 13.5px; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
.footer__legal-sep { color: #d4d4d4; font-size: 12px; }
.footer__legal-link {
  font-size: 13px;
  color: var(--muted-4);
  text-decoration: none;
  transition: color .15s ease;
}
.footer__legal-link:hover { color: var(--ink); }


@keyframes hh-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hh-pulse { 0% { opacity: 0; } 4% { opacity: 1; } 16% { opacity: 1; } 26% { opacity: 0; } 100% { opacity: 0; } }
@keyframes hh-flow {
  0% { stroke-dashoffset: 12; opacity: 0; }
  3% { opacity: 1; }
  16% { stroke-dashoffset: -100; opacity: 1; }
  21% { opacity: 0; }
  100% { stroke-dashoffset: -100; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none !important; }
  .hero__net [data-anim] { animation: none !important; opacity: 0 !important; }
}


.ap-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 108px) var(--pad-x) clamp(40px, 6vw, 72px);
}
.ap-header__grid {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  justify-content: space-between;
}
.ap-header__copy { flex: 1 1 480px; min-width: min(300px, 100%); }
.ap-header .eyebrow { margin-bottom: 22px; }
.ap-header__name {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.ap-header__tagline {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.ap-header__intro {
  margin: 30px 0 0;
  max-width: 560px;
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.62;
  color: var(--muted);
}
.ap-portrait {
  position: relative;
  width: clamp(200px, 26vw, 280px);
  height: clamp(200px, 26vw, 280px);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e4e4e2;
  background-image: repeating-linear-gradient(45deg, #f4f4f2 0, #f4f4f2 11px, #ededeb 11px, #ededeb 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ap-portrait__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-4);
  background: #fff;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid #e4e4e2;
}

.ap-timeline {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
}
.ap-timeline__inner { max-width: 1000px; margin: 0 auto; padding: clamp(60px, 8vw, 104px) var(--pad-x); }
.ap-timeline .eyebrow { margin-bottom: 18px; }
.ap-timeline__title {
  margin: 0 0 44px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.ap-exp { display: flex; gap: 24px; }
.ap-exp__rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.ap-exp__dot {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 0 0 1px #aacc00; margin-top: 5px;
}
.ap-exp__line { width: 2px; flex: 1; min-height: 18px; background: #dcdcda; margin-top: 4px; }
.ap-exp:last-child .ap-exp__line { background: transparent; }
.ap-exp__body { padding-bottom: 34px; }
.ap-exp__dates {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-3);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.ap-exp__role { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.ap-exp__org { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 4px; }
.ap-exp__desc {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted-2);
  max-width: 560px;
}

.ap-skills { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 8vw, 104px) var(--pad-x); }
.ap-skills .eyebrow { margin-bottom: 18px; }
.ap-skills__title {
  margin: 0 0 44px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.ap-skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.ap-skillcol { border-top: 2px solid var(--ink); padding-top: 20px; }
.ap-skillcol__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.ap-skillcol__items { display: flex; flex-direction: column; gap: 11px; }
.ap-skillcol__item { display: flex; align-items: center; gap: 11px; font-size: 16px; color: #333; }
.ap-skillcol__item .sq { width: 6px; height: 6px; background: var(--accent); display: inline-block; flex-shrink: 0; }

.ap-langs { background: var(--ink); color: #fff; }
.ap-langs__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 8vw, 104px) var(--pad-x); }
.ap-langs__grid { display: flex; flex-wrap: wrap; gap: clamp(40px, 6vw, 80px); }
.ap-langs__intro { flex: 1 1 320px; min-width: min(280px, 100%); }
.ap-langs__eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.ap-langs__title { margin: 0; font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; }
.ap-langs__note { margin: 26px 0 0; font-size: 16.5px; line-height: 1.66; color: #bdbdbd; max-width: 440px; }
.ap-langs__list { flex: 1 1 320px; min-width: min(280px, 100%); display: flex; flex-direction: column; }
.ap-lang {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #2a2a2a;
}
.ap-lang__name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.ap-lang__level { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.04em; }


.rp-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 108px) var(--pad-x) clamp(40px, 6vw, 64px);
}
.rp-header .eyebrow { margin-bottom: 24px; }
.rp-header__title {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.rp-header__sub {
  margin: 30px 0 0;
  max-width: 680px;
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.62;
  color: var(--muted);
}
.rp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-alt);
}
.rp-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }
.rp-badge__text { font-family: var(--mono); font-size: 12.5px; color: var(--muted); letter-spacing: 0.03em; }

.rp-focus {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
}
.rp-focus__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 8vw, 104px) var(--pad-x); }
.rp-focus__grid { display: flex; flex-wrap: wrap; gap: clamp(40px, 6vw, 72px); }
.rp-focus__intro { flex: 1 1 420px; min-width: min(300px, 100%); }
.rp-focus__intro .eyebrow { margin-bottom: 20px; }
.rp-focus__title {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.rp-focus__body { margin: 26px 0 0; font-size: 17px; line-height: 1.66; color: var(--muted); max-width: 520px; }
.rp-focus__cards { flex: 1 1 320px; min-width: min(280px, 100%); display: flex; flex-direction: column; gap: 16px; }
.rp-field {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 5px;
  padding: 24px 26px;
}
.rp-field__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-3);
  margin-bottom: 10px;
}
.rp-field__name { margin: 0 0 10px; font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.rp-field__desc { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted-2); }

.rp-pubs { max-width: 1000px; margin: 0 auto; padding: clamp(60px, 8vw, 104px) var(--pad-x); }
.rp-pubs .eyebrow { margin-bottom: 18px; }
.rp-pubs__title { margin: 0 0 12px; font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; }
.rp-pubs__note { margin: 0 0 14px; max-width: 620px; font-size: 15px; line-height: 1.6; color: var(--muted-3); }
.rp-pub {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.rp-pub__main { flex: 1 1 440px; min-width: min(280px, 100%); }
.rp-pub__title { margin: 0; font-size: 19px; font-weight: 700; letter-spacing: -0.012em; line-height: 1.4; max-width: 620px; }
.rp-pub__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; }
.rp-pub__venue, .rp-pub__year { font-family: var(--mono); font-size: 13px; color: var(--muted-2); }
.rp-pub__metadot { width: 3px; height: 3px; border-radius: 50%; background: #ccc; display: inline-block; }
.rp-pub__status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.rp-bg { background: var(--ink); color: #fff; }
.rp-bg__inner { max-width: 1000px; margin: 0 auto; padding: clamp(60px, 8vw, 104px) var(--pad-x); }
.rp-bg__eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.rp-bg__title { margin: 0 0 44px; font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; }
.rp-edu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid #2a2a2a;
}
.rp-edu__main { flex: 1 1 360px; min-width: min(260px, 100%); }
.rp-edu__degree { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.rp-edu__place { font-size: 15px; color: #bdbdbd; margin-top: 6px; }
.rp-edu__note { margin: 8px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--muted-3); max-width: 520px; }
.rp-edu__dates { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.03em; white-space: nowrap; }

.rp-cta { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 110px) var(--pad-x); }
.rp-cta__box {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(32px, 4vw, 52px);
  background: var(--bg-alt);
}
.rp-cta__copy { flex: 1 1 380px; min-width: min(280px, 100%); }
.rp-cta__title { margin: 0; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.rp-cta__body { margin: 16px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--muted-2); max-width: 460px; }
.rp-cta__btn {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(232, 255, 0, 0.35);
  transition: transform .15s ease;
}
.rp-cta__btn:hover { transform: translateY(-2px); }


.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--pad-x) clamp(56px, 8vw, 96px);
}
.legal .eyebrow { margin-bottom: 22px; }
.legal__title {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  hyphens: auto;
}
.legal__placeholder {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 36px 0 0;
  padding: 20px 22px;
  border: 1px dashed #d8d8d6;
  border-radius: 5px;
  background: var(--bg-alt);
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.6;
}
.legal__placeholder .dot { margin-top: 6px; }


.legal__body {
  margin-top: 40px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  hyphens: auto;
}
.legal__body > :first-child { margin-top: 0; }
.legal__body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 40px 0 12px;
}
.legal__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 8px;
}
.legal__body p { margin: 0 0 16px; }
.legal__body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}
.legal__body ul, .legal__body ol { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { margin: 0 0 8px; }
.legal__body strong { color: var(--ink); font-weight: 700; }
.legal__meta {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--muted-4);
}


.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  display: none;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.22);
}
.consent.is-visible { display: block; }
.consent__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 44px) max(16px, env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}
.consent__text {
  margin: 0;
  flex: 1 1 360px;
  font-size: 14px;
  line-height: 1.55;
  color: #dcdcdc;
}
.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.consent__link {
  color: #fff;
  font-size: 13.5px;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.consent__btn {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  padding: 10px 20px;
  border: 1px solid transparent;
  transition: border-color .15s ease, transform .15s ease;
}
.consent__btn--ghost { background: transparent; color: #fff; border-color: #444; }
.consent__btn--ghost:hover { border-color: #fff; }
.consent__btn--solid { background: var(--accent); color: var(--ink); }
.consent__btn--solid:hover { transform: translateY(-1px); }


.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}


.booking-locked { overflow: hidden; }

.booking {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.55);
  -webkit-backdrop-filter: saturate(140%) blur(4px);
  backdrop-filter: saturate(140%) blur(4px);
  opacity: 0;
  transition: opacity .18s ease;
}
.booking.is-open { display: flex; opacity: 1; }

.booking__panel {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.22);
  overflow: hidden;
  transform: translateY(8px);
  transition: transform .18s ease;
}
.booking.is-open .booking__panel { transform: translateY(0); }

.booking__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.booking__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.booking__close {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.booking__close:hover { border-color: var(--ink); background: var(--bg-alt); }
.booking__close:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.booking__body {
  width: 100%;
  height: min(650px, 72vh);
  height: min(650px, 72dvh);
}
.booking__body iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 520px) {
  .booking { padding: 0; }
  .booking__panel {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }
  .booking__body { flex: 1 1 auto; height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .booking,
  .booking__panel { transition: none; }
  .booking__panel { transform: none; }
}


@media (max-width: 600px) {
  
  .footer__links a { padding: 8px 0; }
  .footer__legal-link { padding: 6px 0; }
  .footer__lang .lang__btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
  }
  
  .consent__actions { width: 100%; }
  .consent__btn { flex: 1 1 auto; min-height: 44px; }
}

@media (max-width: 400px) {
  .nav__inner { gap: 14px; }   
  .footer__top { gap: 32px; }  
}
