:root {
  --bg: #080b10;
  --panel: #0f141b;
  --panel-soft: #111821;
  --text: #f5f7fa;
  --muted: #929cab;
  --line: rgba(255,255,255,.09);
  --accent: #72e7b8;
  --accent-blue: #7d9cff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 3%, rgba(125,156,255,.11), transparent 31%),
    radial-gradient(circle at 90% 18%, rgba(114,231,184,.07), transparent 28%),
    var(--bg);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection {
  background: var(--accent);
  color: #07100d;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .028;
  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='.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  min-height: 72px;
  padding: 12px 14px 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8,11,16,.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #07100d;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  font-weight: 800;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: .9rem;
}

.brand-text small {
  color: var(--muted);
  font-size: .66rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 11px 14px;
  border-radius: 10px;
  color: #07100d;
  background: var(--accent);
  font-size: .82rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: white;
}

.hero {
  min-height: 780px;
  padding: 80px 0 88px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 72px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #bdc5d0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(114,231,184,.1);
}

.hero h1,
.content-section h2,
.contact-panel h2 {
  font-family: "Manrope", sans-serif;
}

.hero h1 {
  max-width: 820px;
  margin: 24px 0 28px;
  font-size: clamp(3.5rem, 6vw, 6.25rem);
  line-height: .97;
  letter-spacing: -.062em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--accent), #defbf1 52%, var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-summary {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 34px 0 46px;
}

.btn {
  padding: 15px 19px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 700;
  transition: .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #07100d;
  background: var(--accent);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.45;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.portrait-frame {
  position: relative;
  z-index: 3;
  width: min(340px, 76%);
  transform: translateY(-44px);
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(16,21,29,.9);
  box-shadow: 0 42px 95px rgba(0,0,0,.46);
}

.portrait-topline {
  padding: 3px 4px 11px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .15em;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 16px;
}

.portrait-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 3px 3px;
}

.portrait-caption div {
  display: grid;
}

.portrait-caption strong {
  font-size: .84rem;
}

.portrait-caption span {
  color: var(--muted);
  font-size: .67rem;
}

.caption-icon {
  font-size: 1rem !important;
  color: var(--accent) !important;
}


.skill-badge {
  position: absolute;
  z-index: 4;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(13,17,23,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  color: #d3dae4;
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.skill-one {
  left: -5%;
  top: 15%;
}

.skill-two {
  right: -11%;
  top: 24%;
}

.skill-three {
  left: -12%;
  top: 46%;
  color: var(--accent);
}

.skill-four {
  right: -8%;
  top: 53%;
}

.skill-five {
  left: 4%;
  bottom: 2%;
}

.skill-six {
  right: -10%;
  bottom: 10%;
  color: var(--accent-blue);
}

.accent-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(114,231,184,.18);
}

.ring-one {
  width: 440px;
  height: 440px;
}

.ring-two {
  width: 520px;
  height: 520px;
  border-color: rgba(125,156,255,.1);
}

.trust-bar {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #737d8d;
  font-size: .64rem;
  letter-spacing: .13em;
  white-space: nowrap;
}

.content-section {
  position: relative;
  padding: 108px 0;
  border-bottom: 1px solid var(--line);
}

.section-number {
  position: absolute;
  top: 108px;
  right: 0;
  color: rgba(255,255,255,.08);
  font-family: "Manrope", sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
}

.content-section h2 {
  margin: 18px 0 0;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -.052em;
}

.about-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 110px;
}

.section-intro h2 {
  max-width: 680px;
}

.about-copy {
  max-width: 650px;
}

.about-copy .lead {
  color: #dbe2ea;
  font-size: 1.28rem;
}

.about-copy p {
  color: var(--muted);
}

.principle-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.principle-grid div {
  min-height: 112px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.02);
}

.principle-grid span {
  color: var(--accent);
  font-size: .64rem;
}

.principle-grid strong {
  display: block;
  margin-top: 22px;
  font-size: .8rem;
}

.section-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading > p {
  max-width: 430px;
  color: var(--muted);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.expertise-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  transition: .25s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114,231,184,.28);
}

.expertise-primary {
  background:
    radial-gradient(circle at 95% 0%, rgba(125,156,255,.13), transparent 34%),
    linear-gradient(180deg, rgba(114,231,184,.075), rgba(255,255,255,.02));
}

.card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-label span {
  color: var(--accent);
  font-size: .7rem;
}

.card-label small {
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .11em;
}

.expertise-card h3 {
  margin: 54px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.62rem;
}

.expertise-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.tag-list {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b9c2ce;
  background: rgba(255,255,255,.025);
  font-size: .66rem;
}

.experience-layout {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 94px;
}

.experience-sidebar {
  position: sticky;
  top: 118px;
  align-self: start;
}

.experience-sidebar h2 {
  max-width: 520px;
}

.experience-sidebar p {
  max-width: 460px;
  color: var(--muted);
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-meta {
  display: grid;
  align-content: start;
  gap: 4px;
}

.timeline-meta span {
  color: var(--accent);
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.timeline-meta small {
  color: var(--muted);
  font-size: .65rem;
}

.timeline-content h3 {
  margin: 0 0 4px;
  font-size: 1.26rem;
}

.timeline-content h4 {
  margin: 0 0 11px;
  color: #b4bdca;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
}

.credential-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.credential-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel);
}

.credential-card span {
  color: var(--accent);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin: 48px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.credential-card p {
  color: var(--muted);
  font-size: .8rem;
}

.credential-card strong {
  color: var(--accent);
  font-size: 1.55rem;
}

.contact-section {
  padding: 104px 0;
}

.contact-panel {
  padding: 56px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 72px;
  border: 1px solid rgba(114,231,184,.15);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 8%, rgba(114,231,184,.12), transparent 34%),
    radial-gradient(circle at 94% 92%, rgba(125,156,255,.12), transparent 31%),
    var(--panel);
}

.contact-panel h2 {
  max-width: 680px;
  margin: 20px 0;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.contact-copy p {
  max-width: 570px;
  color: var(--muted);
}

.contact-cta {
  margin-top: 24px;
  display: inline-flex;
  gap: 15px;
  padding: 14px 18px;
  border-radius: 11px;
  color: #07100d;
  background: var(--accent);
  font-weight: 700;
}

.contact-list {
  display: flex;
  flex-direction: column;
}

.contact-list a {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: .7rem;
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-size: .84rem;
}

.contact-list b {
  color: var(--accent);
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .73rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .about-layout,
  .experience-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .experience-sidebar {
    position: static;
  }

  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .trust-bar,
  .site-footer {
    width: calc(100% - 28px);
  }

  .site-header {
    width: calc(100% - 20px);
    top: 10px;
  }

  .brand-text small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 60px;
  }

  .hero h1 {
    font-size: 3.32rem;
  }

  .hero-proof {
    gap: 9px;
  }

  .hero-proof div {
    padding-right: 8px;
  }

  .hero-proof strong {
    font-size: 1.05rem;
  }

  .hero-proof span {
    font-size: .6rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .portrait-frame {
    width: min(290px, 74%);
  }

  .floating-card {
    min-width: 180px;
    padding: 11px 12px;
  }

  .floating-card strong {
    font-size: .69rem;
  }

  .ring-one {
    width: 360px;
    height: 360px;
  }

  .ring-two {
    display: none;
  }

  .trust-bar {
    justify-content: flex-start;
  }

  .content-section {
    padding: 76px 0;
  }

  .section-number {
    top: 76px;
    font-size: 3rem;
  }

  .principle-grid,
  .expertise-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-panel {
    padding: 30px 22px;
    gap: 40px;
  }

  .contact-list a {
    grid-template-columns: 70px 1fr auto;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}

.skill-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(114,231,184,.08);
}

.skill-two::before,
.skill-four::before,
.skill-six::before {
  background: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(125,156,255,.08);
}

@media (max-width: 980px) {
  .portrait-frame {
    transform: translateY(-30px);
  }

  .skill-one { left: 3%; }
  .skill-two { right: 2%; }
  .skill-three { left: 0; }
  .skill-four { right: 0; }
  .skill-five { left: 8%; bottom: 1%; }
  .skill-six { right: 2%; }
}

@media (max-width: 720px) {
  .portrait-frame {
    transform: translateY(-22px);
  }

  .skill-badge {
    padding: 7px 10px;
    font-size: .58rem;
  }

  .skill-one { left: -2%; top: 13%; }
  .skill-two { right: -4%; top: 22%; }
  .skill-three { left: -7%; top: 45%; }
  .skill-four { right: -6%; top: 53%; }
  .skill-five { left: 5%; bottom: 0; }
  .skill-six { right: -4%; bottom: 9%; }
}


/* Mobile navigation */
@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .main-nav.mobile-open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(8, 11, 16, .97);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .42);
  }

  .main-nav.mobile-open a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    color: #dbe2eb;
  }

  .main-nav.mobile-open a:hover,
  .main-nav.mobile-open a:focus {
    color: var(--text);
    background: rgba(255, 255, 255, .055);
  }

  .menu-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: rgba(255,255,255,.05);
  }

  .menu-toggle span {
    position: absolute;
    left: 8px;
    width: 24px;
    transition: transform .22s ease, top .22s ease, opacity .18s ease;
  }

  .menu-toggle span:first-child {
    top: 14px;
  }

  .menu-toggle span:last-child {
    top: 23px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 19px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 19px;
    transform: rotate(-45deg);
  }
}


/* Enhanced mobile presentation */
.mobile-quick-card,
.mobile-bottom-cta {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
    background:
      radial-gradient(circle at 50% 0%, rgba(125,156,255,.18), transparent 28%),
      radial-gradient(circle at 100% 18%, rgba(114,231,184,.10), transparent 24%),
      var(--bg);
  }

  .site-header {
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: .82rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 54px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    font-size: .61rem;
    padding: 7px 10px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.8rem, 13vw, 3.6rem);
    line-height: .98;
    letter-spacing: -.055em;
  }

  .hero h1 span {
    margin-top: 6px;
  }

  .hero-summary {
    font-size: .96rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 28px 0 26px;
  }

  .btn {
    padding: 13px 12px;
    text-align: center;
    font-size: .78rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-top: 18px;
  }

  .hero-proof div {
    min-height: 84px;
    padding: 12px 8px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.025);
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    margin-top: 5px;
    font-size: .56rem;
    line-height: 1.35;
  }

  .mobile-quick-card {
    margin-top: 14px;
    padding: 11px;
    display: grid;
    grid-template-columns: 46px 1fr 36px;
    gap: 11px;
    align-items: center;
    border: 1px solid rgba(114,231,184,.16);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(114,231,184,.08), rgba(125,156,255,.06)),
      rgba(255,255,255,.025);
  }

  .mobile-avatar {
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--line);
  }

  .mobile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 16%;
  }

  .mobile-quick-card > div:nth-child(2) {
    display: grid;
  }

  .mobile-quick-card strong {
    font-size: .78rem;
  }

  .mobile-quick-card span {
    color: var(--muted);
    font-size: .62rem;
  }

  .mobile-quick-card > a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #07100d;
    background: var(--accent);
    font-weight: 800;
  }

  .hero-visual {
    min-height: 390px;
    width: 100%;
    margin-top: 4px;
  }

  .portrait-frame {
    width: min(270px, 72%);
    transform: translateY(-18px);
    padding: 9px;
    border-radius: 22px;
  }

  .portrait-frame img {
    border-radius: 14px;
  }

  .portrait-caption {
    padding-top: 11px;
  }

  .portrait-caption strong {
    font-size: .76rem;
  }

  .portrait-caption span {
    font-size: .6rem;
  }

  .skill-badge {
    padding: 7px 9px;
    font-size: .54rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.26);
  }

  .skill-one { left: -1%; top: 8%; }
  .skill-two { right: -4%; top: 19%; }
  .skill-three { left: -5%; top: 41%; }
  .skill-four { right: -5%; top: 50%; }
  .skill-five { left: 6%; bottom: 0; }
  .skill-six { right: -3%; bottom: 8%; }

  .trust-bar {
    margin-top: 6px;
    padding: 15px 0;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-bar::-webkit-scrollbar {
    display: none;
  }

  .content-section h2,
  .contact-panel h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .expertise-card {
    min-height: 270px;
    padding: 22px;
  }

  .expertise-card h3 {
    margin-top: 38px;
    font-size: 1.4rem;
  }

  .timeline-item {
    padding: 24px 0;
  }

  .credential-card {
    min-height: 190px;
  }

  .contact-panel {
    border-radius: 22px;
  }

  .mobile-bottom-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 120;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(8,11,16,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0,0,0,.42);
  }

  .mobile-bottom-cta a {
    padding: 12px 10px;
    border-radius: 11px;
    text-align: center;
    font-size: .76rem;
    font-weight: 700;
  }

  .mobile-bottom-cta a:first-child {
    color: #07100d;
    background: var(--accent);
  }

  .mobile-bottom-cta a:last-child {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
  }
}

.brand-photo {
  overflow: hidden;
  padding: 0;
  background: #1a2029;
  border: 1px solid rgba(255,255,255,.14);
}

.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.hero-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
}

@media (max-width: 720px) {
  .hero-contact-actions {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-contact-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 8px;
    font-size: .72rem;
  }

  .mobile-bottom-cta {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-bottom-cta a {
    padding: 11px 6px;
    font-size: .68rem;
  }

  .mobile-bottom-cta a:nth-child(1) {
    color: #07100d;
    background: var(--accent);
  }

  .mobile-bottom-cta a:nth-child(2),
  .mobile-bottom-cta a:nth-child(3) {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
  }
}

/* Professional contact action group */
.hero-contact-actions {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin: 34px 0 46px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.contact-action {
  min-width: 132px;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 11px;
  color: #c8d0dc;
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.contact-action-primary {
  color: #07100d;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(114,231,184,.18);
}

.contact-action-primary:hover,
.contact-action-primary:focus-visible {
  color: #07100d;
  background: #86efc5;
}

.action-arrow {
  font-size: 1rem;
}

/* Active navigation highlight */
.main-nav a {
  position: relative;
  padding: 9px 11px;
  border-radius: 9px;
  transition: color .2s ease, background .2s ease;
}

.main-nav a.active {
  color: var(--text);
  background: rgba(114,231,184,.10);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

/* Refined mobile bottom contact bar */
@media (max-width: 720px) {
  .hero-contact-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5px;
    padding: 5px;
    margin: 26px 0 24px;
  }

  .contact-action {
    min-width: 0;
    min-height: 46px;
    padding: 0 8px;
    font-size: .7rem;
  }

  .mobile-bottom-cta {
    grid-template-columns: 1.2fr 1fr;
    gap: 6px;
    padding: 6px;
  }

  .mobile-bottom-cta a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: .68rem;
    font-weight: 700;
  }

  .mobile-bottom-cta a:first-child {
    color: #07100d;
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(114,231,184,.16);
  }

  .mobile-bottom-cta a:nth-child(2),
  .mobile-bottom-cta a:nth-child(3) {
    color: #d5dce6;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.035);
  }

  .main-nav.mobile-open a.active {
    color: var(--text);
    background: rgba(114,231,184,.11);
    border: 1px solid rgba(114,231,184,.16);
  }

  .main-nav.mobile-open a.active::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .mobile-bottom-cta a:nth-child(2) {
    color: #d5dce6;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.035);
  }
}

@media (max-width: 720px) {
  .hero-visual {
    padding-bottom: 24px;
  }
}

/* Final mobile fix for Risk Management badge */
@media (max-width: 720px) {
  .hero-visual {
    min-height: 440px;
    padding-bottom: 52px;
  }

  .skill-five {
    left: 2%;
    top: auto;
    bottom: -8px;
    max-width: 145px;
    z-index: 6;
  }

  .skill-six {
    right: 1%;
    bottom: 11%;
  }
}

@media (max-width: 390px) {
  .skill-five {
    left: 0;
    bottom: -10px;
    font-size: .51rem;
  }

  .skill-six {
    right: -1%;
    bottom: 13%;
    font-size: .51rem;
  }
}

/* Definitive mobile overlap fix */
.mobile-risk-badge {
  display: none;
}

@media (max-width: 720px) {
  .hero-visual .skill-five {
    display: none !important;
  }

  .mobile-risk-badge {
    position: absolute;
    left: 50%;
    bottom: 2px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    background: rgba(13,17,23,.96);
    color: #d3dae4;
    box-shadow: 0 12px 28px rgba(0,0,0,.3);
    font-size: .56rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-risk-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(114,231,184,.08);
  }

  .hero-visual {
    min-height: 455px !important;
    padding-bottom: 62px !important;
  }
}

/* Absolute final mobile rule: Risk Management is desktop/tablet only */
@media (max-width: 720px) {
  .hero-visual .skill-badge.skill-five,
  .hero-visual .mobile-risk-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .hero-visual {
    min-height: 410px !important;
    padding-bottom: 18px !important;
  }
}
