:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --ink-strong: #ffffff;
  --muted: #9fb4c3;
  --paper: #07131d;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(210, 232, 245, 0.16);
  --blue: #0d8bd9;
  --blue-soft: #3db4ff;
  --orange: #f59e25;
  --orange-strong: #ff7a1a;
  --teal: #25c4bd;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(13, 139, 217, 0.22), transparent 30%),
    linear-gradient(180deg, #07131d 0%, #0a1722 45%, #f4f7f8 45%, #f4f7f8 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.topbar {
  position: fixed;
  top: 16px;
  right: clamp(16px, 4vw, 54px);
  left: clamp(16px, 4vw, 54px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 13, 22, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(245, 158, 37, 0.72);
  border-radius: 50%;
  background: rgba(245, 158, 37, 0.12);
  color: var(--orange);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(226, 239, 246, 0.7);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(236, 246, 252, 0.78);
  font-size: 0.9rem;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.38fr);
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(112px, 14vw, 170px) clamp(18px, 5vw, 64px) clamp(42px, 7vw, 76px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 11, 18, 0.92) 0%, rgba(4, 15, 24, 0.72) 35%, rgba(4, 15, 24, 0.12) 78%),
    linear-gradient(0deg, rgba(3, 11, 18, 0.96) 0%, rgba(3, 11, 18, 0.1) 42%),
    url("assets/hero-final-portrait-eye.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, #07131d);
}

.hero-content {
  max-width: 760px;
}

.kicker,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  color: var(--ink-strong);
  font-size: clamp(3.8rem, 10.8vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin-bottom: 22px;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  color: rgba(235, 246, 252, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  color: #111820;
  box-shadow: 0 16px 38px rgba(245, 126, 24, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.dark {
  border-color: rgba(20, 32, 42, 0.18);
  background: #14202a;
  color: #fff;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(3, 13, 22, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel p:last-child {
  margin-bottom: 0;
  color: rgba(236, 246, 252, 0.82);
  font-size: 1.04rem;
  line-height: 1.55;
}

.metric-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -28px clamp(18px, 5vw, 64px) 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(6, 20, 31, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric {
  min-height: 136px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.metric span {
  color: rgba(229, 242, 249, 0.72);
  line-height: 1.45;
}

.section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 5vw, 64px);
}

.section-copy {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.story-section .section-copy {
  display: grid;
  gap: 3.3px;
  line-height: 1.34;
  white-space: normal;
}

.story-section .section-copy span {
  display: block;
}

.story-section,
.activity-section,
.expertise-section,
.achievements-section,
.experience-section,
.sectors-section,
.contact-section {
  background: #f4f7f8;
  color: #14202a;
}

.story-section h2,
.activity-section h2,
.expertise-section h2,
.achievements-section h2,
.experience-section h2,
.sectors-section h2,
.contact-section h2 {
  color: #14202a;
}

.story-section .section-copy,
.activity-section p,
.expertise-section p,
.achievements-section p,
.experience-section p,
.sectors-section p,
.contact-section p {
  color: #5b6a76;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(20, 32, 42, 0.1);
  border-radius: 8px;
  background: #fff;
}

.timeline-item time {
  color: var(--orange-strong);
  font-weight: 900;
}

.timeline-item h3,
.venture-card h3,
.role-item h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.timeline-item p,
.venture-card p,
.role-item p,
.contact-section p {
  line-height: 1.6;
}

.timeline-item p {
  display: grid;
  gap: 2px;
}

.timeline-item p span,
.timeline-item p em {
  display: block;
}

.section-heading {
  display: grid;
  max-width: 980px;
  margin-bottom: 36px;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.venture-card {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(20, 32, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 32, 42, 0.08);
}

.venture-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(13, 139, 217, 0.08), rgba(245, 158, 37, 0.08)),
    #fff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.expertise-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(20, 32, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 32, 42, 0.07);
}

.expertise-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(13, 139, 217, 0.1);
  color: #096da8;
  font-weight: 900;
}

.expertise-card h3 {
  color: #14202a;
}

.expertise-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #405260;
  line-height: 1.65;
}

.venture-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #405260;
  line-height: 1.65;
}

.expertise-card li + li,
.venture-card li + li {
  margin-top: 6px;
}

.venture-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(245, 158, 37, 0.12);
  color: #a44c08;
  font-size: 0.78rem;
  font-weight: 900;
}

.role-band {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 15, 24, 0.95), rgba(5, 15, 24, 0.82)),
    url("assets/linkedin-eye-wordcloud-1584x396.png") center / cover;
  color: #fff;
}

.role-band .section-heading {
  position: relative;
  z-index: 1;
}

.role-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.role-item {
  min-height: 244px;
  padding: 24px;
  background: rgba(4, 16, 26, 0.72);
  backdrop-filter: blur(12px);
}

.role-item p {
  color: rgba(235, 246, 252, 0.68);
}

.role-number {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-weight: 900;
}

.achievements-section {
  background: #fff;
}

.achievement-list {
  display: grid;
  gap: 14px;
}

.achievement-item {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(20, 32, 42, 0.1);
  border-radius: 8px;
  background: #f7fafb;
}

.achievement-item strong {
  color: var(--orange-strong);
}

.achievement-item h3 {
  color: #14202a;
}

.experience-section {
  background: #f4f7f8;
}

.experience-detail-list {
  display: grid;
  gap: 16px;
}

.experience-detail {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  border: 1px solid rgba(20, 32, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 32, 42, 0.06);
}

.experience-detail span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange-strong);
  font-weight: 900;
}

.experience-detail h3 {
  color: #14202a;
  font-size: 1.35rem;
  line-height: 1.2;
}

.experience-detail h3 small {
  font-size: 0.72em;
  font-weight: 700;
}

.experience-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #405260;
  line-height: 1.55;
}

.experience-detail li::marker {
  color: var(--orange-strong);
}

.sectors-section {
  background:
    linear-gradient(180deg, rgba(7, 19, 29, 0.92), rgba(7, 19, 29, 0.82)),
    url("assets/hero-industrial-training.png") center / cover;
  color: #fff;
}

.sectors-section h2 {
  color: #fff;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.large-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(244, 250, 253, 0.9);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.tool-panel {
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(4, 16, 26, 0.62);
}

.tools .large-chip {
  border-color: rgba(245, 158, 37, 0.26);
  background: rgba(245, 158, 37, 0.1);
  color: #ffe1b3;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 64px);
  background: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-section h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

@media (max-width: 1060px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 900px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .metric-strip,
  .venture-grid,
  .expertise-grid,
  .role-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .achievement-item {
    grid-template-columns: 1fr;
  }

  .experience-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .topbar {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 10px 14px 12px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: rgba(3, 13, 22, 0.96);
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 9px 10px;
    white-space: nowrap;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 820px;
    padding-top: 58px;
  }

  .hero-media {
    background-position: 64% center;
  }

  h1 {
    font-size: clamp(3.3rem, 20vw, 5.4rem);
  }

  .metric-strip,
  .venture-grid,
  .expertise-grid,
  .role-list {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}
