@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600;6..96,700&family=Kalam:wght@400;700&family=Manrope:wght@400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --font-tech: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-mystic: "Bodoni Moda", Georgia, serif;
  --font-hand: "Kalam", cursive;
  --header-space: calc(var(--nav-height) + 5rem + env(safe-area-inset-top));
  --cream: #f7f0e3;
  --cream-soft: #fffaf0;
  --dark: #19191c;
  --dark-soft: #2a2a2f;

  --text: #25221e;
  --muted: #6f675d;
  --surface: rgba(255, 255, 255, 0.5);
  --surface-strong: rgba(255, 255, 255, 0.72);
  --border: rgba(40, 35, 28, 0.12);

  --accent: #d68c73;
  --accent-two: #9bb7a4;
  --accent-three: #c6a4d9;

  --shadow: 0 24px 70px rgba(57, 45, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1120px;
  --nav-height: 76px;

  --page-bg:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(155, 183, 164, 0.18), transparent 30rem),
    var(--cream);

}

html[data-theme="dark"] {
  --text: #f5f0e8;
  --muted: #b9b1a8;
  --surface: rgba(45, 45, 50, 0.52);
  --surface-strong: rgba(48, 48, 54, 0.78);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);

  --page-bg:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(155, 183, 164, 0.14), transparent 30rem),
    var(--dark);

}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--page-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--text);
  background: transparent;
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: color 250ms ease;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

span {
  overflow-wrap: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-tech);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

button,
input,
textarea {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

p {
  color: var(--muted);
}

/* Background Blurs */

.background-blur {
  position: fixed;
  z-index: -2;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.blur-one {
  top: 8rem;
  left: -8rem;
  background: var(--accent);
}

.blur-two {
  right: -7rem;
  top: 18rem;
  background: var(--accent-two);
}

.blur-three {
  left: 40%;
  bottom: -10rem;
  background: var(--accent-three);
}

/* Header / Glass Navbar */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 1rem;
}

.navbar {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: var(--nav-height);
  margin-inline: auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-three));
  border-radius: 50%;
  font-size: 0.85rem;
}

.brand-text {
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a,
.theme-toggle {
  padding: 0.7rem 0.95rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.theme-toggle:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.theme-icon {
  line-height: 1;
}

.future-link {
  opacity: 0.75;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease;
}


/* Hero */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-space);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  grid-template-areas: "copy media";
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-bottom: 4rem;
}

.hero-content {
  grid-area: copy;
  position: relative;
  z-index: 5;
  min-width: 0;
  max-width: 680px;
}

.hero-title {
  max-width: 100%;
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 6.4vw, 5.9rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-title span {
  display: block;
  max-width: 100%;
  color: var(--muted);
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero-description {
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.hero-media-card {
  --hero-card-radius: calc(var(--radius-lg) + 16px);
  --hero-card-bg:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.22), transparent 42%),
    radial-gradient(circle at bottom right, rgba(198, 164, 217, 0.22), transparent 45%),
    var(--surface);
  --hero-card-inset: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  --hero-video-opacity: 0.78;
  --hero-overlay-bg:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.18));

  grid-area: media;
  position: relative;
  isolation: isolate;
  z-index: 1;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 460px;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--hero-card-radius);
  background: var(--hero-card-bg);
  box-shadow: var(--shadow), var(--hero-card-inset);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  clip-path: inset(0 round var(--hero-card-radius));
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
}

.hero-card-video,
.hero-card-overlay {
  position: absolute;
  border-radius: inherit;
  clip-path: inset(0 round var(--hero-card-radius));
}

.hero-card-video {
  inset: -1px;
  z-index: 1;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  opacity: var(--hero-video-opacity);
  filter: saturate(0.95) contrast(0.95);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-card-overlay {
  inset: 0;
  z-index: 2;
  background: var(--hero-overlay-bg);
  pointer-events: none;
}

.hero-media-card::before {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  z-index: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 217, 0.28), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-card-picture {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(78%, 350px);
  max-height: 80%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-card-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.18));
}


html[data-theme="dark"] .hero-media-card {
  --hero-card-bg:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.14), transparent 42%),
    radial-gradient(circle at bottom right, rgba(198, 164, 217, 0.16), transparent 45%),
    var(--surface);
  --hero-card-inset: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --hero-video-opacity: 0.58;
  --hero-overlay-bg:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.36)),
    radial-gradient(circle at center, transparent 28%, rgba(0, 0, 0, 0.3));
}


/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #b8725f);
  box-shadow: 0 18px 40px rgba(214, 140, 115, 0.25);
}

.secondary-button {
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

/* Section Headings */

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading p {
  font-size: 1.05rem;
}

/* Marquee Experience Cards */

.experience-section {
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 34s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.experience-card {
  width: min(82vw, 350px);
  min-height: 280px;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 2.2rem;
  color: var(--accent);
  font-weight: 900;
}

.experience-card h3 {
  margin-bottom: 0.8rem;
}

.experience-card p {
  margin-bottom: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Prescription Logistics Resolution */

.logistics-section {
  overflow: hidden;
}

.logistics-grid {
  display: grid;
  gap: 1.15rem;
}

.logistics-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.problem-panel,
.approach-panel {
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.problem-panel {
  background:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.16), transparent 45%),
    var(--surface);
}

.approach-panel {
  background:
    radial-gradient(circle at top right, rgba(155, 183, 164, 0.18), transparent 45%),
    var(--surface-strong);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-panel h3,
.approach-panel h3 {
  margin-bottom: 0.85rem;
}

.problem-panel p:last-child,
.approach-panel p:last-child {
  margin-bottom: 0;
}

/* Skill Bubbles */

.skill-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: .5rem;
  margin-bottom: 1.35rem;
}

.skill-bubbles span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  padding: 0.5rem 0.85rem;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.86), rgba(198, 164, 217, 0.28)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 45%);
  border: 1px solid rgba(214, 140, 115, 0.28);
  border-radius: 999px;
  box-shadow:
    0 10px 28px rgba(198, 164, 217, 0.16),
    0 0 18px rgba(214, 140, 115, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.skill-bubbles span::before {
  content: "✦";
  color: var(--accent);
  font-size: 0.72rem;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(214, 140, 115, 0.55),
    0 0 14px rgba(198, 164, 217, 0.45);
}

.skill-bubbles span::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-70%) rotate(12deg);
  opacity: 0;
  pointer-events: none;
}

.skill-bubbles span:hover,
.skill-bubbles span:active {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(198, 164, 217, 0.55);
  box-shadow:
    0 14px 34px rgba(198, 164, 217, 0.24),
    0 0 26px rgba(214, 140, 115, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.skill-bubbles span:hover::after,
.skill-bubbles span:active::after {
  opacity: 1;
  animation: goddess-shimmer 900ms ease;
}

html[data-theme="dark"] .skill-bubbles span {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(48, 48, 54, 0.92), rgba(198, 164, 217, 0.18)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 42%);
  border-color: rgba(198, 164, 217, 0.28);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(198, 164, 217, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .skill-bubbles span:hover,
html[data-theme="dark"] .skill-bubbles span:active {
  border-color: rgba(214, 140, 115, 0.42);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(198, 164, 217, 0.22),
    0 0 18px rgba(214, 140, 115, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@keyframes goddess-shimmer {
  from {
    transform: translateX(-70%) rotate(12deg);
  }

  to {
    transform: translateX(70%) rotate(12deg);
  }
}

/* ------------- Human Impact Section ------------------ */

.human-impact-section {
  position: relative;
  overflow: hidden;
}

.human-impact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.14), transparent 42%),
    radial-gradient(circle at bottom right, rgba(155, 183, 164, 0.14), transparent 42%),
    radial-gradient(circle at center right, rgba(198, 164, 217, 0.12), transparent 46%),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.human-impact-card::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  top: -8rem;
  right: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 217, 0.18), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

html[data-theme="dark"] .human-impact-card {
  background:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.12), transparent 42%),
    radial-gradient(circle at bottom right, rgba(155, 183, 164, 0.1), transparent 42%),
    radial-gradient(circle at center right, rgba(198, 164, 217, 0.1), transparent 46%),
    var(--surface);
}

.human-impact-header {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-bottom: 3.5rem;
}

.human-impact-header h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.human-impact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.human-impact-story {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.human-impact-story p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.human-impact-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact-point {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.65), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(214, 140, 115, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(57, 45, 34, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

html[data-theme="dark"] .impact-point {
  background:
    linear-gradient(135deg, rgba(48, 48, 54, 0.85), rgba(45, 45, 50, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.impact-point:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 140, 115, 0.26);
  box-shadow: 0 18px 38px rgba(57, 45, 34, 0.12);
}

html[data-theme="dark"] .impact-point:hover {
  border-color: rgba(214, 140, 115, 0.22);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.impact-number {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-three));
  box-shadow: 0 12px 24px rgba(214, 140, 115, 0.22);
}

.impact-point h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.impact-point p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.human-impact-footer {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.human-impact-footer p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.9;
}

/* Leadership Pillars */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar-card,
.mindset-card,
.contact-card,
.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pillar-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-two), var(--accent-three));
  border-radius: 50%;
}

.pillar-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
  color: var(--muted);
}

.pillar-card li + li {
  margin-top: 0.4rem;
}

/* Timeline */

.timeline-section {
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  padding: 1rem 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 2px;
  background: var(--border);
  overflow: hidden;
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--accent), var(--accent-two), var(--accent-three));
  transition: height 120ms linear;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.4rem;
  padding: 0 0 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 1rem;
  height: 1rem;
  margin-top: 1.3rem;
  margin-left: 0.55rem;
  background: var(--cream-soft);
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(214, 140, 115, 0.12);
}

html[data-theme="dark"] .timeline-dot {
  background: var(--dark-soft);
}

.timeline-content {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.timeline-date {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin-bottom: 0.75rem;
}

.timeline-content p:last-child {
  margin-bottom: 0;
}

/* Team Building Section */

.team-building-section {
  overflow: hidden;
}

.team-engagement-list {
  display: grid;
  gap: 1.25rem;
}

.team-engagement-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.6rem);
  background:
    radial-gradient(circle at bottom right, rgba(214, 140, 115, 0.13), transparent 42%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.team-engagement-feature::before {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -5rem;
  bottom: -6rem;
  background: radial-gradient(circle, rgba(155, 183, 164, 0.2), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.team-engagement-feature:nth-child(even) {
  background:
    radial-gradient(circle at top left, rgba(155, 183, 164, 0.16), transparent 42%),
    radial-gradient(circle at bottom right, rgba(198, 164, 217, 0.14), transparent 42%),
    var(--surface);
}

.team-feature-video-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.22), transparent 42%),
    radial-gradient(circle at bottom right, rgba(155, 183, 164, 0.22), transparent 42%),
    var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow:
    0 18px 45px rgba(57, 45, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.team-feature-video-wrap::after {
  content: "";
  position: absolute;
  inset: auto -20% -18% -20%;
  z-index: 1;
  height: 42%;
  background:
    radial-gradient(circle, rgba(198, 164, 217, 0.32), transparent 65%),
    radial-gradient(circle, rgba(214, 140, 115, 0.22), transparent 60%);
  filter: blur(26px);
  pointer-events: none;
}

.team-feature-video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-feature-content {
  position: relative;
  z-index: 2;
  padding: clamp(0.25rem, 2vw, 0.75rem);
}

.team-feature-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-feature-content h3 {
  max-width: 720px;
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.team-feature-content p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.team-feature-content .skill-bubbles {
  margin-top: 1.25rem;
}

html[data-theme="dark"] .team-engagement-feature {
  background:
    radial-gradient(circle at top left, rgba(198, 164, 217, 0.14), transparent 42%),
    radial-gradient(circle at bottom right, rgba(214, 140, 115, 0.12), transparent 42%),
    var(--surface);
}

html[data-theme="dark"] .team-engagement-feature:nth-child(even) {
  background:
    radial-gradient(circle at top left, rgba(155, 183, 164, 0.12), transparent 42%),
    radial-gradient(circle at bottom right, rgba(198, 164, 217, 0.13), transparent 42%),
    var(--surface);
}

html[data-theme="dark"] .team-feature-video-wrap {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Mindset Preview */

.mindset-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.mindset-card h2 {
  max-width: 720px;
  margin-bottom: 1rem;
}

.mindset-card p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

/* Contact */

.contact-section {
  padding-top: 3rem;
}

.contact-card {
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: calc(var(--radius-lg) + 10px);
}

.contact-card h2 {
  max-width: 850px;
  margin-bottom: 1rem;
}

.contact-card p {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: 1.08rem;
}

/* Mindset Page */

.mindset-page-hero {
  min-height: 72vh;
  padding-top: 12rem;
  display: flex;
  align-items: center;
}

.mindset-principles {
  display: grid;
  gap: 1.2rem;
}

.mindset-principle {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.principle-visual {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.principle-visual .eyebrow {
  margin-bottom: 1rem;
}

.principle-image-wrap {
  position: relative;
  flex: 1;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    radial-gradient(circle at top left, rgba(214, 140, 115, 0.22), transparent 45%),
    radial-gradient(circle at bottom right, rgba(155, 183, 164, 0.22), transparent 45%),
    var(--surface-strong);
}

.principle-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.principle-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.95);
}

.principle-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principle-text h2 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.principle-copy {
  max-width: 680px;
}

.principle-copy p {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.principle-copy p:last-child {
  margin-bottom: 0;
}



/* Footer */

.site-footer {
  padding: 2rem 1rem 3rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

/* Reveal Animations */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
  will-change: opacity, transform;
}

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

/* Mobile / Touch */

@media (hover: none) and (pointer: coarse) {
  .skill-bubbles span {
    cursor: pointer;
    touch-action: manipulation;
  }

  .skill-bubbles span:active {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(198, 164, 217, 0.6);
    box-shadow:
      0 16px 36px rgba(198, 164, 217, 0.28),
      0 0 28px rgba(214, 140, 115, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .skill-bubbles span:active::after {
    opacity: 1;
    animation: goddess-shimmer 900ms ease;
  }
}




/* Tablet / Small Desktop */

@media (max-width: 960px) {
  .human-impact-grid {
    grid-template-columns: 1fr;
  }

  .human-impact-header {
    margin-bottom: 2.5rem;
  }
}

/* Tablet Nav + Small Desktop */

@media (max-width: 1024px) {
  :root {
    --header-space: calc(68px + 4.75rem + env(safe-area-inset-top));
  }

  .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 68px;
    border-radius: 28px;
  }

  .brand {
    justify-self: start;
    margin-right: 0;
  }

  .brand-text {
    display: none;
  }

  .theme-toggle {
    justify-self: center;
    grid-column: 2;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    color: var(--text);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid var(--border);
  }

  html[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: auto;
    width: min(280px, calc(100vw - 2rem));
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  html[data-theme="dark"] .nav-links {
    background: rgba(36, 36, 40, 0.96);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 0.85rem 1rem;
    text-align: right;
    color: var(--text);
    background: transparent;
  }

  .nav-links a:hover {
    background: rgba(214, 140, 115, 0.12);
  }

  html[data-theme="dark"] .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: auto;
    padding-top: var(--header-space);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
  }

  .hero-media-card {
    justify-self: center;
    width: min(100%, 420px);
    max-width: 420px;
  }

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

  .mindset-card {
    grid-template-columns: 1fr;
  }

  .mindset-card .button {
    width: fit-content;
  }

  .mindset-principle {
    grid-template-columns: 1fr;
  }

  .principle-image-wrap,
  .principle-image {
    min-height: 220px;
  }

  .principle-copy {
    padding: 0;
  }

  .logistics-card {
    grid-template-columns: 1fr;
  }

  .team-engagement-feature {
    grid-template-columns: 1fr;
  }

  .team-feature-video-wrap {
    max-width: 260px;
  }

  .team-feature-content {
    padding: 0;
  }

  .team-feature-content h3,
  .team-feature-content p {
    max-width: 100%;
  }
}

/* Mobile */

@media (max-width: 560px) {
  :root {
    --mobile-header-space: calc(68px + 1.5rem + env(safe-area-inset-top));
    --header-space: var(--mobile-header-space);
  }

  .site-header {
    padding: calc(0.75rem + env(safe-area-inset-top)) 0.75rem 0.75rem;
  }

  main {
    padding-top: var(--mobile-header-space);
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-grid {
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .hero-media-card {
    --hero-card-radius: var(--radius-lg);

    width: 100%;
    aspect-ratio: 1 / 1.18;
    border-radius: var(--hero-card-radius);
  }

  .hero-card-image {
    width: min(78%, 300px);
    max-height: 75%;
  }

    .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
  }

  section[id] {
    scroll-margin-top: calc(var(--mobile-header-space) + 1rem);
  }

  .section {
    padding: 4.5rem 0;
  }

  .button {
    width: 100%;
  }

  .experience-card {
    min-height: 310px;
  }

  .timeline-content {
    padding: 1.1rem;
  }

  .mindset-page-hero {
    min-height: auto;
    padding-top: 10rem;
  }

  .principle-image-wrap,
  .principle-image {
    min-height: 190px;
  }

  .human-impact-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .human-impact-header h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .impact-point {
    flex-direction: column;
    padding: 1.1rem;
  }

  .impact-number {
    width: 2.9rem;
    height: 2.9rem;
  }

  .human-impact-footer p {
    font-size: 1rem;
  }

  .team-engagement-list {
    gap: 1rem;
  }

  .team-engagement-feature {
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .team-feature-video-wrap {
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .team-feature-content h3 {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
  }

  .team-feature-content p {
    font-size: 0.98rem;
  }

  .team-feature-content .skill-bubbles {
    margin-top: 1rem;
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

  .skill-bubbles span:hover::after,
  .skill-bubbles span:active::after {
    animation: none;
  }
}