:root {
  --primary: #f4a300;
  --primary-soft: #fff3d6;
  --text: #1a1a1a;
  --dark: #151719;
  --dark-2: #222832;
  --slate: #4f5b69;
  --muted: #647083;
  --line: #d7dde6;
  --white: #ffffff;
  --bg: #fbfcfe;
  --radius-sm: 8px;
  --radius-md: 16px; /* standard 8px grid radius */
  --radius-lg: 24px; /* standard 8px grid radius */
  --shadow: 0 4px 20px -2px rgba(26, 32, 43, 0.04), 0 10px 30px -5px rgba(26, 32, 43, 0.06);
  --shadow-strong: 0 10px 30px -5px rgba(19, 23, 31, 0.08), 0 24px 60px -10px rgba(19, 23, 31, 0.16);
  --shell: 1200px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* 8px Spacing System */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;

  /* Typography Hierarchy */
  --hero-title-size: clamp(36px, 4vw + 24px, 72px);
  --hero-subtitle-size: clamp(28px, 3vw + 18px, 54px);
  --section-title-size: clamp(28px, 2vw + 22px, 48px);
  --body-size: clamp(16px, 0.4vw + 14.5px, 20px);
  --body-lh: 1.625;
  --body-ls: -0.011em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 10% 8%, rgba(218, 238, 255, 0.6), transparent 400px),
    radial-gradient(circle at 78% 20%, rgba(255, 243, 214, 0.8), transparent 450px),
    radial-gradient(circle at 52% 51%, rgba(236, 226, 255, 0.5), transparent 500px),
    var(--bg);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  letter-spacing: var(--body-ls);
  overflow-x: hidden;
  width: 100%;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(244, 163, 0, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 24px;
  padding-bottom: 12px;
  background: transparent;
}

.nav {
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: transparent;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 28px;
  height: 25px;
  object-fit: contain;
}

.nav__links,
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  background: var(--dark);
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nav__links a,
.footer__nav a {
  min-width: 76px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
  padding-inline: 14px;
}

.nav__links a:hover,
.nav__links a.is-active,
.footer__nav a:hover {
  color: var(--white);
  background: #2d3139;
}

.nav__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.nav__toggle {
  display: none;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 700 13px/1 var(--font);
  padding: 0 var(--space-3);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(244, 163, 0, 0.6);
  outline-offset: 2px;
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--dark {
  color: var(--white);
  background: var(--dark);
}

.btn--dark:hover {
  background: #222832;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn--gold {
  color: var(--text);
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(244, 163, 0, 0.3);
}

.btn--gold:hover {
  background: #e09600;
  box-shadow: 0 10px 22px rgba(244, 163, 0, 0.4);
}

.btn--light {
  color: var(--text);
  border: 1.5px solid #8b94a2;
  background: transparent;
}

.btn--light:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--text);
}

.btn--resume {
  min-width: 110px;
  color: var(--text);
  border: 1.5px solid var(--text);
  background: transparent;
  padding: 0 var(--space-3);
}

.btn--resume:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  background: var(--primary);
  border-radius: 50%;
}

.btn--icon:hover {
  background: #e09600;
}

.btn--icon svg {
  fill: currentColor;
  stroke: none;
  width: 14px;
  height: 14px;
}

.btn--arrow {
  height: 46px;
  padding-right: 0;
}

.btn--arrow svg {
  width: 46px;
  height: 46px;
  margin-left: 4px;
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--primary);
  padding: 15px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--arrow:hover svg {
  transform: translate(3px, -3px);
  background: #e09600;
}

.section {
  padding-block: var(--space-12); /* 96px */
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: #1a1a1a;
  font-size: var(--section-title-size);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-16) var(--space-12);
}

.hero__content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin: 0 0 var(--space-2);
  color: var(--text);
  font-size: var(--hero-title-size);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__profile {
  width: 76px;
  height: 76px;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero__subtitle {
  margin: 0 0 var(--space-3);
  color: #374151;
  font-size: var(--hero-subtitle-size);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__subtitle span {
  color: var(--muted);
  font-weight: 500;
}

.hero__text {
  max-width: 620px;
  margin: 0 auto var(--space-5);
  color: #555c68;
  font-size: var(--body-size);
  font-weight: 500;
  line-height: var(--body-lh);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero__btn-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--play {
  width: 44px;
  height: 44px;
  min-height: auto;
  padding: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(244, 163, 0, 0.3);
}

.btn--play:hover {
  background: #e09600;
}

.btn--play svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
  transform: translateX(1px);
}

.about-hero {
  margin-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.about-hero__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.about-hero__social p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.about-hero__social div {
  display: flex;
  gap: 12px;
}

.about-hero__social a {
  height: 44px;
  padding-inline: 24px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #2d3139;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 200ms ease;
}

.about-hero__social a:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Rotation tilt effects from design */
.about-hero__social a:nth-child(1) {
  transform: rotate(-3deg);
}

.about-hero__social a:nth-child(1):hover {
  transform: scale(1.05) rotate(-3deg);
}

.about-hero__social a:nth-child(2) {
  transform: rotate(5deg) translateY(-2px);
}

.about-hero__social a:nth-child(2):hover {
  transform: scale(1.05) rotate(5deg) translateY(-2px);
}

.about-hero__social a:nth-child(3) {
  transform: rotate(2deg);
}

.about-hero__social a:nth-child(3):hover {
  transform: scale(1.05) rotate(2deg);
}

.about-hero__panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--dark-2);
  padding: var(--space-12) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-strong);
  margin-top: 160px;
}

.about-hero__gallery {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: var(--space-2);
  margin-top: -240px;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 5;
}

.about-hero__gallery img {
  width: 140px;
  height: 220px;
  border-radius: 999px;
  border: 4px solid var(--primary);
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform 300ms ease, box-shadow 300ms ease;
  background: var(--dark);
}

/* Height/offset variation matching the mockup */
.about-hero__gallery img:nth-child(1),
.about-hero__gallery img:nth-child(5) {
  height: 180px;
  transform: translateY(15px);
}

.about-hero__gallery img:nth-child(1):hover {
  transform: scale(1.05) translateY(5px);
}

.about-hero__gallery img:nth-child(5):hover {
  transform: scale(1.05) translateY(5px);
}

.about-hero__gallery img:nth-child(2),
.about-hero__gallery img:nth-child(4) {
  height: 205px;
  transform: translateY(5px);
}

.about-hero__gallery img:nth-child(2):hover {
  transform: scale(1.05) translateY(-5px);
}

.about-hero__gallery img:nth-child(4):hover {
  transform: scale(1.05) translateY(-5px);
}

.about-hero__gallery img:nth-child(3) {
  height: 230px;
  transform: translateY(-5px);
}

.about-hero__gallery img:nth-child(3):hover {
  transform: scale(1.05) translateY(-15px);
}

.about-hero__word {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  user-select: none;
  z-index: 1;
}

.about-hero__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.vision-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--dark);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.vision-card h2 {
  margin: 0 0 var(--space-2);
  font-size: clamp(16px, 0.2vw + 15.5px, 18px);
  font-weight: 900;
  display: flex;
  align-items: center;
}

.vision-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(13px, 0.1vw + 12.5px, 14px);
  line-height: 1.625;
}

.tabs {
  margin-top: 40px;
  border-block: 1.5px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.tabs__row {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.tabs__row span {
  cursor: pointer;
  transition: color 200ms ease;
  position: relative;
  padding-block: 8px;
}

.tabs__row span:hover,
.tabs__row span.is-active {
  color: var(--primary);
}

.tabs__row span.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 99px;
}

.process {
  padding-bottom: 40px;
}

.process__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.process__grid::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 16%;
  right: 16%;
  height: 120px;
  border-left: 2px solid rgba(87, 98, 114, 0.25);
  border-right: 2px solid rgba(87, 98, 114, 0.25);
  border-bottom: 2px solid rgba(87, 98, 114, 0.25);
  border-radius: 0 0 24px 24px;
  z-index: 1;
  pointer-events: none;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  padding: var(--space-6) var(--space-4) var(--space-4);
  text-align: center;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.process-card__icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.process-card__icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.process-card h3 {
  margin: 0 0 var(--space-1);
  font-size: clamp(16px, 0.15vw + 15.5px, 18px);
  font-weight: 850;
  color: var(--text);
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 0.1vw + 13.5px, 16px);
  line-height: 1.6;
}

.mastery {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 58px;
  align-items: center;
  min-height: 515px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(43, 54, 68, 0.96), rgba(69, 81, 96, 0.96)),
    url("all_eliments/Assicivement_section/Background.svg") center / cover no-repeat;
  padding: 74px 78px;
}

.mastery__intro h2 {
  margin: 0;
  color: var(--white);
  font-size: 43px;
  font-weight: 900;
  line-height: 1.05;
}

.mastery__intro h2 span {
  color: var(--primary);
}

.mastery__intro p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.mastery__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 36px;
}

.mastery__badges span {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #1c222b;
  padding: 14px 16px;
  font-size: 10px;
  font-weight: 900;
}

.mastery__badges img {
  width: 24px;
  height: 24px;
}

.mastery__metrics {
  display: grid;
  gap: 26px;
}

.mastery__metrics article {
  border-radius: 8px;
  background: rgba(33, 41, 52, 0.78);
  padding: 24px;
}

.mastery__metrics h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.mastery__metrics p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.mastery__metrics span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #f7d57a 72%, rgba(255, 255, 255, 0.2) 72%);
}

.featured {
  padding-block: var(--space-8) var(--space-10);
  background: transparent;
}

.featured__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8);
}

.featured__stage {
  position: relative;
  height: 480px;
  margin-top: var(--space-6);
}

.project-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), z-index 250ms ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card--left {
  width: 380px;
  height: 290px;
  left: 0;
  top: 70px;
  transform: rotate(-6deg);
  z-index: 1;
}

.project-card--center {
  width: 370px;
  height: 400px;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(4deg);
  z-index: 3;
}

.project-card--right {
  width: 380px;
  height: 330px;
  right: 0;
  top: 50px;
  transform: rotate(6deg);
  z-index: 2;
}

.project-card:hover {
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.project-card--left:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.02);
}

.project-card--center:hover {
  transform: translateX(-50%) rotate(0deg) translateY(-10px) scale(1.02);
}

.project-card--right:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.02);
}

.project-card__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #34d399;
  color: #064e3b;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project-card__btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(244, 163, 0, 0.3);
  transition: background 200ms ease, transform 200ms ease;
}

.project-card__btn:hover {
  background: #e09600;
  transform: scale(1.1);
}

.project-card__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-card__img-wrapper {
  position: relative;
  width: 100%;
  height: calc(100% - 54px);
}

.project-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.project-card__play svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
  transform: translateX(1px);
}

.project-card__banner {
  height: 54px;
  background: var(--primary);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.insights {
  padding-block: var(--space-8) var(--space-10);
}

.insights__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-6);
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  padding-block: var(--space-2);
}

.insight-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), z-index 250ms ease;
  position: relative;
}

.insight-card:nth-child(1) {
  transform: rotate(-3deg);
}

.insight-card:nth-child(2) {
  transform: rotate(3deg) translateY(-8px);
}

.insight-card:nth-child(3) {
  transform: rotate(-2deg);
}

.insight-card:nth-child(4) {
  transform: rotate(4deg) translateY(6px);
}

.insight-card:hover {
  transform: scale(1.05) rotate(0deg) translateY(-10px) !important;
  box-shadow: var(--shadow-strong);
  z-index: 5;
}

.insight-card img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.insight-card__content {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-card h3 {
  margin: 0 0 var(--space-1);
  color: var(--text);
  font-size: clamp(16px, 0.1vw + 15.5px, 18px);
  font-weight: 850;
  line-height: 1.35;
}

.insight-card p {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: clamp(14px, 0.1vw + 13.5px, 16px);
  line-height: 1.6;
}

.btn--small {
  min-height: 32px;
  padding-inline: 16px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  align-self: flex-start;
  box-shadow: none;
  margin-top: auto;
}

.testimonials {
  padding-block: var(--space-8) var(--space-6);
}

.testimonials__panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--dark-2);
  padding: var(--space-10) var(--space-3) var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.testimonials h2 {
  margin: 0;
  color: var(--white);
  font-size: var(--section-title-size);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.testimonials .eyebrow {
  color: var(--primary);
}

.testimonials__strip {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 1200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 2;
}

.testimonials__strip img {
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
  transition: transform 300ms ease, z-index 300ms ease, filter 300ms ease;
  cursor: pointer;
}

/* Card 1 (leftmost) */
.testimonials__strip img:nth-child(1) {
  width: 190px;
  transform: rotate(-10deg) translate(50px, 15px);
  z-index: 1;
}

/* Card 2 */
.testimonials__strip img:nth-child(2) {
  width: 250px;
  transform: rotate(-5deg) translate(20px, 0px);
  z-index: 3;
}

/* Card 3 (center) */
.testimonials__strip img:nth-child(3) {
  width: 290px;
  transform: translateY(-25px);
  z-index: 5;
}

/* Card 4 */
.testimonials__strip img:nth-child(4) {
  width: 250px;
  transform: rotate(5deg) translate(-20px, 0px);
  z-index: 3;
}

/* Card 5 (rightmost) */
.testimonials__strip img:nth-child(5) {
  width: 190px;
  transform: rotate(10deg) translate(-50px, 15px);
  z-index: 1;
}

/* Hover effects */
.testimonials__strip img:hover {
  z-index: 10 !important;
  transform: scale(1.1) rotate(0deg) translateY(-40px) !important;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.5));
}

.knowledge {
  padding-block: var(--space-8) var(--space-6);
}

.knowledge__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-5);
}

.knowledge__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.knowledge-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.knowledge-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.knowledge-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.knowledge-card__content {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.knowledge-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
}

.knowledge-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-bottom {
  padding-top: var(--space-6);
}

.about-bottom .shell {
  position: relative;
}

.about-bottom__word {
  display: block;
  color: rgba(244, 163, 0, 0.16);
  text-align: center;
  font-size: clamp(68px, 12vw, 166px);
  font-weight: 900;
  line-height: 0.9;
}

.about-bottom__gallery {
  display: grid;
  grid-template-columns: 210px 235px 180px 235px 210px;
  justify-content: center;
  align-items: end;
  gap: var(--space-2);
  margin-top: -32px;
}

.about-bottom__gallery img {
  width: 100%;
  aspect-ratio: 1;
  border: 4px solid var(--primary);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-bottom__gallery img:nth-child(1),
.about-bottom__gallery img:nth-child(3),
.about-bottom__gallery img:nth-child(5) {
  border-radius: 50%;
}

.about-bottom__gallery img:nth-child(2),
.about-bottom__gallery img:nth-child(4) {
  border-radius: var(--radius-sm);
  transform: translateY(-18px);
}

.about-bottom__box {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow);
}

.about-bottom__box h2 {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin: 0 0 var(--space-2);
  color: #5a6574;
  font-size: clamp(16px, 0.2vw + 15.5px, 18px);
  font-weight: 900;
}

.about-bottom__box h2 img {
  width: 22px;
}

.about-bottom__box p {
  margin: 0 0 var(--space-2);
  color: #687384;
  font-size: clamp(15px, 0.1vw + 14.5px, 17px);
  line-height: 1.6;
  font-weight: 500;
}

.contact {
  padding-top: var(--space-8);
}

.contact__panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-5);
  align-items: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--white);
  background: var(--slate);
  padding: var(--space-6) var(--space-8);
}

.contact__panel h2 {
  margin: 0;
  color: var(--white);
  font-size: var(--section-title-size);
  font-weight: 900;
  line-height: 1.2;
}

.contact__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.contact__list li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
}

.contact__list img {
  width: 16px;
  height: 16px;
}

.contact__copy p {
  max-width: 410px;
  margin: 0 0 var(--space-3);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 0.1vw + 13.5px, 16px);
  line-height: 1.6;
  font-weight: 500;
}

.footer {
  margin-bottom: var(--space-6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-3);
  color: var(--white);
  background: var(--dark);
  padding: var(--space-3) var(--space-8);
}

.footer__socials {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-1);
}

.footer__socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  transition: transform 180ms ease, background-color 180ms ease;
}

.footer__socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.footer__socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer__copy {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  color: rgba(255, 255, 255, 0.65);
  background: var(--dark);
  padding: var(--space-3) var(--space-3) var(--space-4);
  text-align: center;
  font-size: 11px;
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1200px) {
  :root {
    --shell: 1080px;
  }

  .project-card--left,
  .project-card--right {
    width: 315px;
  }

  .project-card--center {
    width: 315px;
  }

  .about-bottom__gallery {
    grid-template-columns: 175px 205px 165px 205px 175px;
  }
}

@media (max-width: 992px) {
  :root {
    --shell: 880px;
  }

  .nav {
    display: grid;
    height: auto;
    min-height: 62px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-2);
  }

  .nav__toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--dark-2);
    cursor: pointer;
    position: relative;
    transition: background-color 250ms ease;
  }

  .nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 11px;
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
                top 250ms cubic-bezier(0.4, 0, 0.2, 1),
                opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__toggle span:nth-child(1) {
    top: 14px;
  }

  .nav__toggle span:nth-child(2) {
    top: 20px;
  }

  .nav__toggle span:nth-child(3) {
    top: 26px;
  }

  .nav.is-open .nav__toggle span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .nav.is-open .nav__toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-6px);
  }

  .nav.is-open .nav__toggle span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .nav__links,
  .nav__actions {
    display: none;
    grid-column: 1 / -1;
  }

  .nav.is-open .nav__links,
  .nav.is-open .nav__actions {
    display: flex;
  }

  .nav.is-open .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    margin-top: var(--space-1);
  }

  .nav.is-open .nav__actions {
    justify-content: stretch;
    gap: var(--space-2);
    margin-top: var(--space-1);
  }

  .nav__actions .btn {
    flex: 1;
  }

  .hero {
    min-height: 555px;
  }

  .hero__profile {
    position: static;
    margin: 20px auto 0;
  }

  .hero h1 {
    margin-top: 18px;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .about-hero__cards,
  .mastery,
  .contact__panel,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__panel {
    min-height: 520px;
  }

  .tabs__row {
    grid-template-columns: repeat(6, max-content);
    gap: 38px;
    overflow-x: auto;
  }

  .featured__stage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .project-card,
  .project-card--center,
  .project-card--left,
  .project-card--right {
    position: relative;
    inset: auto;
    width: auto;
    height: 330px;
    transform: none;
  }

  .project-card--right {
    grid-column: 1 / -1;
  }

  .project-card--left:hover,
  .project-card--center:hover,
  .project-card--right:hover {
    transform: translateY(-8px) scale(1.02);
  }

  .insights__grid,
  .knowledge__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .process__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: var(--space-3);
  }

  .process__grid::before {
    display: none;
  }

  .featured {
    margin-top: 0;
    padding-top: var(--space-6);
  }

  .featured__title {
    color: var(--slate);
  }

  .testimonials__strip {
    width: 1200px;
    transform: translateX(-50%) scale(0.8);
    transform-origin: bottom center;
  }

  .about-bottom__gallery {
    grid-template-columns: repeat(5, 1fr);
  }

  .contact__panel,
  .footer__inner {
    justify-items: center;
    text-align: center;
  }

  .contact__list,
  .footer__socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-title {
    font-size: var(--section-title-size);
  }

  .hero h1 {
    font-size: var(--hero-title-size);
  }

  .hero__lead {
    font-size: clamp(24px, 3vw + 14px, 32px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    gap: var(--space-2);
  }

  .hero__btn-group {
    display: flex;
    width: 100%;
    gap: var(--space-1);
  }

  .hero__btn-group .btn--dark {
    flex: 1;
  }

  .hero__actions .btn--light {
    width: 100%;
  }

  .about-hero__social {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
  }

  .about-hero__social div {
    padding-right: 0;
  }

  .about-hero__social a:nth-child(2) {
    transform: none;
  }

  .about-hero__word {
    font-size: 98px;
  }

  .about-hero__panel {
    min-height: 560px;
    padding-inline: var(--space-3);
  }

  .about-hero__cards {
    left: var(--space-3);
    right: var(--space-3);
  }

  .process__grid,
  .insights__grid,
  .knowledge__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    gap: var(--space-4);
  }

  .featured__stage {
    grid-template-columns: 1fr;
    height: auto;
  }

  .project-card,
  .project-card--center,
  .project-card--left,
  .project-card--right {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    transform: none !important;
  }

  .project-card:hover {
    transform: translateY(-4px) !important;
  }

  .mastery {
    padding: var(--space-6) var(--space-4);
  }

  .mastery__badges {
    grid-template-columns: 1fr;
  }

  .testimonials__panel {
    min-height: 380px;
  }

  .testimonials__strip {
    width: 1200px;
    transform: translateX(-50%) scale(0.6);
    transform-origin: bottom center;
  }

  .about-bottom__word {
    font-size: 96px;
  }

  .about-bottom__gallery {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -10px;
    gap: var(--space-1);
  }

  .about-bottom__gallery img:nth-child(4),
  .about-bottom__gallery img:nth-child(5) {
    display: none;
  }
}

@media (max-width: 576px) {
  .site-header {
    top: var(--space-1);
  }

  .hero {
    min-height: 480px;
    padding-block: var(--space-12) var(--space-8);
  }

  .hero h1 {
    font-size: var(--hero-title-size);
  }

  .hero__lead {
    font-size: clamp(20px, 4vw + 12px, 25px);
  }

  .about-hero__social div {
    flex-wrap: wrap;
    gap: var(--space-1);
  }

  .about-hero__social a {
    min-width: 0;
    flex: 1 1 120px;
    height: 40px;
    padding-inline: var(--space-2);
  }

  .vision-card,
  .contact__panel {
    padding-inline: var(--space-3);
  }

  .about-hero__cards {
    gap: var(--space-2);
  }

  .section {
    padding-block: var(--space-8); /* 64px vertical spacing */
  }

  .section-title {
    font-size: var(--section-title-size);
  }

  .award-card {
    min-height: auto;
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-3);
  }

  .testimonials__panel {
    min-height: auto;
    padding-bottom: var(--space-6);
  }

  .testimonials__strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    margin-top: var(--space-4);
    display: flex;
    justify-content: center;
  }

  .testimonials__strip img {
    display: none !important;
  }

  .testimonials__strip img:nth-child(3) {
    display: block !important;
    width: 100%;
    max-width: 290px;
    transform: none !important;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  }

  .about-bottom__box {
    padding: var(--space-3);
  }

  .footer__inner {
    padding-inline: var(--space-2);
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: var(--space-1);
  }
}