@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Unbounded:wght@400;600;700&display=swap');


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
  --header-space: calc(
    var(--nav-height) + 5rem + env(safe-area-inset-top)
  );

  --cream: #f7f0e3;
  --cream-soft: #fffaf0;

  --dark: #03050a;
  --dark-soft: #090d15;

  --text: #25221e;
  --muted: #3e3b36;

  --surface: rgba(255, 255, 255, 0.50);
  --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;

  /* =======================================================
     LIGHT MODE SKY
     ======================================================= */

  --page-bg:
    linear-gradient(
      180deg,
      #218bc9 0%,
      #319bd5 24%,
      #4aafe0 48%,
      #75c5ea 72%,
      #a9def3 100%
    );
}


/* =========================================================
   DARK MODE VARIABLES
   ========================================================= */

html[data-theme="dark"] {
  --text: #f5f0e8;
  --muted: #b9b1a8;

  --surface: rgba(18, 22, 30, 0.58);
  --surface-strong: rgba(25, 29, 38, 0.82);

  --border: rgba(255, 255, 255, 0.12);

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);

  --page-bg:
    linear-gradient(
      180deg,
      #010207 0%,
      #03060d 35%,
      #050912 65%,
      #080c16 100%
    );
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

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

body {
  position: relative;

  margin: 0;

  min-height: 100vh;
  min-height: 100svh;

  color: var(--text);

  background: transparent;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  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;
}

button,
input,
textarea {
  font: inherit;
}

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


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.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
   ========================================================= */

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

  margin-inline: auto;
}


/* =========================================================
   SECTIONS
   ========================================================= */

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


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.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);
}


/* =========================================================
   =========================================================
   ANIMATED SKY
   =========================================================
   ========================================================= */


/* =========================================================
   SKY BASE
   ========================================================= */

body::before {
  content: "";

  position: fixed;

  inset: 0;

  z-index: -10;

  pointer-events: none;

  background:
    radial-gradient(
      ellipse 45% 32% at 50% 0%,
      rgba(255, 255, 255, 0.28),
      transparent 70%
    ),
    var(--page-bg);
}


/* =========================================================
   ATMOSPHERIC LIGHT
   ========================================================= */

body::after {
  content: "";

  position: fixed;

  inset: 0;

  z-index: -9;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(255, 255, 255, 0.04) 72%,
      rgba(255, 255, 255, 0.10) 100%
    );
}


/* =========================================================
   CLOUD CONTAINER
   ========================================================= */

.sky-clouds {
  position: fixed;

  inset: 0;

  z-index: -5;

  overflow: hidden;

  pointer-events: none;

  perspective: 1200px;
}


/* =========================================================
   CLOUD BASE
   ========================================================= */

.cloud {
  position: absolute;

  width: 24rem;
  height: 7rem;

  border-radius: 999px;

  /*
    Multiple gradients create smaller cloud lobes.
  */

  background:

    /* Tiny highlight */
    radial-gradient(
      ellipse at 30% 20%,
      rgba(255, 255, 255, 0.98) 0 4%,
      transparent 5%
    ),

    /* Far-left puff */
    radial-gradient(
      circle at 17% 61%,
      rgba(255, 255, 255, 0.97) 0 15%,
      transparent 16%
    ),

    /* Left-middle puff */
    radial-gradient(
      circle at 32% 43%,
      rgba(255, 255, 255, 1) 0 22%,
      transparent 23%
    ),

    /* Large central puff */
    radial-gradient(
      circle at 52% 35%,
      rgba(255, 255, 255, 1) 0 27%,
      transparent 28%
    ),

    /* Right-middle puff */
    radial-gradient(
      circle at 72% 48%,
      rgba(255, 255, 255, 0.98) 0 22%,
      transparent 23%
    ),

    /* Far-right puff */
    radial-gradient(
      circle at 87% 64%,
      rgba(255, 255, 255, 0.94) 0 15%,
      transparent 16%
    ),

    /* Main cloud body */
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f9fcfe 42%,
      #e6f3f8 68%,
      #c3e0ea 100%
    );

  /*
    Multiple shadows create the illusion of depth.
  */

  box-shadow:

    /* Large external shadow */
    0 22px 38px
      rgba(35, 103, 139, 0.15),

    /* Soft secondary shadow */
    0 8px 18px
      rgba(35, 103, 139, 0.08),

    /* Dark underside */
    inset 0 -18px 26px
      rgba(93, 151, 181, 0.20),

    /* Bright upper surface */
    inset 0 10px 18px
      rgba(255, 255, 255, 0.90);

  opacity: 0.90;

  filter: blur(0.55px);

  will-change: transform;
}


/* =========================================================
   LARGE BACK CLOUD LOBE
   ========================================================= */

.cloud::before {
  content: "";

  position: absolute;

  width: 11rem;
  height: 11rem;

  left: 3.8rem;
  bottom: 1.7rem;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 50% 30%,
      #ffffff 0%,
      #f9fcfe 44%,
      #e1f0f5 75%,
      #c5e0e9 100%
    );

  box-shadow:

    inset 0 -14px 22px
      rgba(83, 145, 177, 0.15),

    inset 0 8px 15px
      rgba(255, 255, 255, 0.85),

    0 12px 24px
      rgba(44, 112, 148, 0.08);

  z-index: -1;
}


/* =========================================================
   SECONDARY FRONT LOBE
   ========================================================= */

.cloud::after {
  content: "";

  position: absolute;

  width: 8.5rem;
  height: 8.5rem;

  left: 11.5rem;
  bottom: 1.8rem;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 45% 28%,
      #ffffff 0%,
      #fbfdff 42%,
      #dfedf3 75%,
      #c7e1ea 100%
    );

  box-shadow:

    inset 0 -12px 20px
      rgba(83, 145, 177, 0.12),

    inset 0 7px 14px
      rgba(255, 255, 255, 0.92),

    0 10px 22px
      rgba(45, 108, 143, 0.08);

  z-index: -1;
}


/* =========================================================
   CLOUD 1
   ========================================================= */

.cloud-1 {
  top: 13%;
  left: -30rem;

  width: 27rem;
  height: 7.5rem;

  opacity: 0.92;

  animation:
    cloudRight1 48s linear infinite,
    cloudFloat1 8s ease-in-out infinite;
}


/* =========================================================
   CLOUD 2
   ========================================================= */

.cloud-2 {
  top: 32%;
  right: -34rem;

  width: 34rem;
  height: 8rem;

  opacity: 0.72;

  transform: scale(0.95);

  animation:
    cloudLeft2 62s linear infinite,
    cloudFloat2 10s ease-in-out infinite;

  animation-delay:
    -18s,
    -4s;
}


/* =========================================================
   CLOUD 3
   ========================================================= */

.cloud-3 {
  top: 52%;
  left: -36rem;

  width: 31rem;
  height: 8rem;

  opacity: 0.55;

  transform: scale(0.88);

  animation:
    cloudRight3 70s linear infinite,
    cloudFloat3 12s ease-in-out infinite;

  animation-delay:
    -30s,
    -6s;
}


/* =========================================================
   CLOUD 4
   ========================================================= */

.cloud-4 {
  top: 71%;
  right: -31rem;

  width: 25rem;
  height: 7rem;

  opacity: 0.42;

  transform: scale(0.76);

  animation:
    cloudLeft4 56s linear infinite,
    cloudFloat2 9s ease-in-out infinite;

  animation-delay:
    -14s,
    -3s;
}


/* =========================================================
   CLOUD MOVEMENT — LEFT TO RIGHT
   ========================================================= */

@keyframes cloudRight1 {

  0% {
    transform:
      translate3d(-40vw, 0, 0)
      scale(0.90)
      rotateY(-4deg);
  }

  25% {
    transform:
      translate3d(-5vw, -8px, 0)
      scale(0.97)
      rotateY(2deg);
  }

  50% {
    transform:
      translate3d(42vw, 5px, 0)
      scale(1.03)
      rotateY(-2deg);
  }

  75% {
    transform:
      translate3d(88vw, -7px, 0)
      scale(0.98)
      rotateY(3deg);
  }

  100% {
    transform:
      translate3d(145vw, 0, 0)
      scale(0.90)
      rotateY(-4deg);
  }
}


/* =========================================================
   CLOUD MOVEMENT — RIGHT TO LEFT
   ========================================================= */

@keyframes cloudLeft2 {

  0% {
    transform:
      translate3d(40vw, 0, 0)
      scale(0.90)
      rotateY(4deg);
  }

  25% {
    transform:
      translate3d(5vw, 8px, 0)
      scale(0.98)
      rotateY(-2deg);
  }

  50% {
    transform:
      translate3d(-42vw, -5px, 0)
      scale(1.03)
      rotateY(2deg);
  }

  75% {
    transform:
      translate3d(-88vw, 7px, 0)
      scale(0.98)
      rotateY(-3deg);
  }

  100% {
    transform:
      translate3d(-145vw, 0, 0)
      scale(0.90)
      rotateY(4deg);
  }
}


/* =========================================================
   SECONDARY LEFT → RIGHT CLOUD
   ========================================================= */

@keyframes cloudRight3 {

  0% {
    transform:
      translate3d(-45vw, 0, 0)
      scale(0.82);
  }

  50% {
    transform:
      translate3d(45vw, -6px, 0)
      scale(0.92);
  }

  100% {
    transform:
      translate3d(150vw, 3px, 0)
      scale(0.82);
  }
}


/* =========================================================
   SECONDARY RIGHT → LEFT CLOUD
   ========================================================= */

@keyframes cloudLeft4 {

  0% {
    transform:
      translate3d(45vw, 0, 0)
      scale(0.78);
  }

  50% {
    transform:
      translate3d(-45vw, 7px, 0)
      scale(0.88);
  }

  100% {
    transform:
      translate3d(-150vw, -3px, 0)
      scale(0.78);
  }
}


/* =========================================================
   CLOUD FLOATING
   ========================================================= */

@keyframes cloudFloat1 {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -13px;
  }
}


@keyframes cloudFloat2 {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: 11px;
  }
}


@keyframes cloudFloat3 {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -8px;
  }
}


/* =========================================================
   DARK MODE — NIGHT SKY
   ========================================================= */

/*
   IMPORTANT:
   Do NOT use:

   html[data-theme="dark"] .sky-clouds {
     display: none;
   }

   The clouds remain visible and continue their existing
   movement animations.
*/


/* =========================================================
   NIGHT SKY BASE
   ========================================================= */

html[data-theme="dark"] body::before {
  background:

    /* Soft blue atmospheric glow */
    radial-gradient(
      ellipse 55% 38% at 50% 12%,
      rgba(55, 80, 135, 0.20),
      transparent 70%
    ),

    /* Very subtle horizon light */
    radial-gradient(
      ellipse 50% 32% at 50% 100%,
      rgba(35, 60, 105, 0.13),
      transparent 72%
    ),

    /* Deep night */
    linear-gradient(
      180deg,
      #010207 0%,
      #02040a 38%,
      #050811 70%,
      #080d18 100%
    );
}


/* =========================================================
   NIGHT ATMOSPHERE
   ========================================================= */

html[data-theme="dark"] body::after {
  background:
    linear-gradient(
      180deg,
      rgba(15, 25, 55, 0.02) 0%,
      rgba(10, 18, 40, 0.04) 55%,
      rgba(30, 50, 85, 0.10) 100%
    );
}

/* =========================================================
   RANDOM NIGHT STARS
   ========================================================= */

html[data-theme="dark"] .sky-clouds {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
  perspective: 1200px;
}


/* =========================================================
   STAR
   ========================================================= */

html[data-theme="dark"] .night-star {
  position: absolute;

  width: var(--star-size);
  height: var(--star-size);

  left: var(--star-x);
  top: var(--star-y);

  border-radius: 50%;

  background: var(--star-color);

  opacity: 0;

  box-shadow:
    0 0 calc(var(--star-size) * 2.5)
    var(--star-color);

  /*
     Every star gets its own timing.
  */

  animation:
    starTwinkle
    var(--star-duration)
    ease-in-out
    var(--star-delay)
    infinite;

  /*
     Makes the stars remain crisp.
  */

  will-change:
    opacity,
    transform;
}


/* =========================================================
   LARGER / BRIGHTER STARS
   ========================================================= */

html[data-theme="dark"] .night-star.star-bright {

  box-shadow:
    0 0 3px var(--star-color),
    0 0 7px var(--star-color),
    0 0 14px var(--star-color);

}


/* =========================================================
   OCCASIONAL BIG STAR
   ========================================================= */

html[data-theme="dark"] .night-star.star-large {

  box-shadow:
    0 0 3px var(--star-color),
    0 0 8px var(--star-color),
    0 0 18px var(--star-color),
    0 0 28px color-mix(
      in srgb,
      var(--star-color) 30%,
      transparent
    );

}


/* =========================================================
   NATURAL TWINKLE
   ========================================================= */

@keyframes starTwinkle {

  0% {
    opacity: 0.08;
    transform: scale(0.70);
  }

  18% {
    opacity: 0.20;
    transform: scale(0.82);
  }

  42% {
    opacity: 0.45;
    transform: scale(1.00);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.20);
  }

  58% {
    opacity: 0.48;
    transform: scale(1.02);
  }

  78% {
    opacity: 0.18;
    transform: scale(0.82);
  }

  100% {
    opacity: 0.08;
    transform: scale(0.70);
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  html[data-theme="dark"] .night-star {

    animation: none;

    opacity: 0.55;

    transform: none;

  }

}


/* =========================================================
   CSS-ONLY NIGHT STARS
   ========================================================= */

/*
   The stars stay completely stationary.

   Multiple layers use different:
   - star positions
   - spacing
   - sizes
   - colors
   - animation speeds
   - animation phases

   This prevents the obvious grid effect of using
   one repeating gradient.
*/


/* =========================================================
   STAR LAYER 1 — TINY DISTANT STARS
   ========================================================= */

html[data-theme="dark"] .sky-clouds::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  pointer-events: none;

  background-image:

    radial-gradient(
      circle at 7% 13%,
      rgba(255,255,255,.55) 0 0.6px,
      transparent 1px
    ),

    radial-gradient(
      circle at 16% 42%,
      rgba(210,225,255,.50) 0 0.5px,
      transparent 1px
    ),

    radial-gradient(
      circle at 24% 8%,
      rgba(255,255,255,.65) 0 0.7px,
      transparent 1px
    ),

    radial-gradient(
      circle at 31% 27%,
      rgba(255,235,200,.48) 0 0.5px,
      transparent 1px
    ),

    radial-gradient(
      circle at 39% 61%,
      rgba(255,255,255,.55) 0 0.6px,
      transparent 1px
    ),

    radial-gradient(
      circle at 47% 18%,
      rgba(185,215,255,.55) 0 0.6px,
      transparent 1px
    ),

    radial-gradient(
      circle at 54% 47%,
      rgba(255,255,255,.50) 0 0.5px,
      transparent 1px
    ),

    radial-gradient(
      circle at 62% 12%,
      rgba(255,235,200,.48) 0 0.5px,
      transparent 1px
    ),

    radial-gradient(
      circle at 69% 34%,
      rgba(210,225,255,.60) 0 0.6px,
      transparent 1px
    ),

    radial-gradient(
      circle at 76% 7%,
      rgba(255,255,255,.65) 0 0.7px,
      transparent 1px
    ),

    radial-gradient(
      circle at 83% 52%,
      rgba(190,215,255,.50) 0 0.5px,
      transparent 1px
    ),

    radial-gradient(
      circle at 91% 24%,
      rgba(255,255,255,.60) 0 0.6px,
      transparent 1px
    ),

    radial-gradient(
      circle at 97% 73%,
      rgba(255,235,200,.45) 0 0.5px,
      transparent 1px
    );

  background-repeat: no-repeat;

  opacity: .65;

  animation:
    starsDistant 7s ease-in-out infinite alternate;
}


/* =========================================================
   STAR LAYER 2 — MEDIUM STARS
   ========================================================= */

html[data-theme="dark"] .sky-clouds::after {

  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  pointer-events: none;

  background-image:

    radial-gradient(
      circle at 4% 67%,
      rgba(255,255,255,.80) 0 0.8px,
      transparent 1.4px
    ),

    radial-gradient(
      circle at 13% 21%,
      rgba(165,200,255,.75) 0 0.9px,
      transparent 1.5px
    ),

    radial-gradient(
      circle at 21% 78%,
      rgba(255,230,180,.65) 0 0.8px,
      transparent 1.4px
    ),

    radial-gradient(
      circle at 29% 48%,
      rgba(255,255,255,.82) 0 0.9px,
      transparent 1.5px
    ),

    radial-gradient(
      circle at 36% 14%,
      rgba(180,210,255,.75) 0 0.8px,
      transparent 1.4px
    ),

    radial-gradient(
      circle at 44% 83%,
      rgba(255,255,255,.70) 0 0.8px,
      transparent 1.4px
    ),

    radial-gradient(
      circle at 52% 31%,
      rgba(255,230,180,.68) 0 0.8px,
      transparent 1.4px
    ),

    radial-gradient(
      circle at 59% 69%,
      rgba(255,255,255,.75) 0 0.9px,
      transparent 1.5px
    ),

    radial-gradient(
      circle at 67% 19%,
      rgba(160,200,255,.78) 0 0.9px,
      transparent 1.5px
    ),

    radial-gradient(
      circle at 74% 87%,
      rgba(255,255,255,.68) 0 0.8px,
      transparent 1.4px
    ),

    radial-gradient(
      circle at 82% 43%,
      rgba(255,230,180,.65) 0 0.8px,
      transparent 1.4px
    ),

    radial-gradient(
      circle at 89% 16%,
      rgba(255,255,255,.82) 0 0.9px,
      transparent 1.5px
    ),

    radial-gradient(
      circle at 96% 61%,
      rgba(165,200,255,.72) 0 0.8px,
      transparent 1.4px
    );

  background-repeat: no-repeat;

  opacity: .45;

  animation:
    starsMedium 5.5s ease-in-out infinite alternate;
}


/* =========================================================
   THIRD STAR LAYER
   ========================================================= */

/*
   This layer creates fewer, brighter stars.
*/

html[data-theme="dark"] .sky-clouds {

  /*
     Keep the existing cloud positioning.
  */

  isolation: isolate;
}


/*
   We use the cloud itself as another star surface
   through an additional background layer.
*/

html[data-theme="dark"] .cloud-1 {
  /* existing cloud animation remains untouched */
}

html[data-theme="dark"] .cloud-2 {
  /* existing cloud animation remains untouched */
}


/* =========================================================
   BRIGHT STAR OVERLAY
   ========================================================= */

html[data-theme="dark"] .sky-clouds {
  --star-brightness: 1;
}


/*
   Additional sparkle layer using a box-shadow
   constellation.

   Unlike repeating gradients, these coordinates
   are individually placed.
*/

html[data-theme="dark"] .sky-clouds .cloud-4::after {
  /*
     Keep the actual cloud pseudo-element intact.
  */
}


/* =========================================================
   STAR ANIMATIONS
   ========================================================= */

@keyframes starsDistant {

  0% {
    opacity: .35;
    filter: brightness(.70);
  }

  23% {
    opacity: .52;
    filter: brightness(.85);
  }

  47% {
    opacity: .42;
    filter: brightness(.72);
  }

  68% {
    opacity: .72;
    filter: brightness(1.05);
  }

  84% {
    opacity: .48;
    filter: brightness(.82);
  }

  100% {
    opacity: .68;
    filter: brightness(1.15);
  }
}


@keyframes starsMedium {

  0% {
    opacity: .18;
    filter: brightness(.65);
  }

  19% {
    opacity: .40;
    filter: brightness(.85);
  }

  43% {
    opacity: .25;
    filter: brightness(.70);
  }

  61% {
    opacity: .68;
    filter: brightness(1.15);
  }

  79% {
    opacity: .32;
    filter: brightness(.78);
  }

  100% {
    opacity: .55;
    filter: brightness(1.10);
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  html[data-theme="dark"] .sky-clouds::before,
  html[data-theme="dark"] .sky-clouds::after {

    animation: none;

    opacity: .55;

    filter: none;
  }
}



/* =========================================================
   NIGHT CLOUDS
   ========================================================= */

/*
   Keep the clouds alive at night.

   Instead of white daytime clouds, they become
   blue-gray moonlit clouds.
*/


html[data-theme="dark"] .cloud {

  background:

    /* Tiny moonlit highlight */
    radial-gradient(
      ellipse at 30% 20%,
      rgba(220, 235, 255, 0.55) 0 4%,
      transparent 5%
    ),

    /* Far-left puff */
    radial-gradient(
      circle at 17% 61%,
      rgba(185, 207, 235, 0.60) 0 15%,
      transparent 16%
    ),

    /* Left-middle puff */
    radial-gradient(
      circle at 32% 43%,
      rgba(195, 216, 242, 0.72) 0 22%,
      transparent 23%
    ),

    /* Large central puff */
    radial-gradient(
      circle at 52% 35%,
      rgba(205, 224, 248, 0.78) 0 27%,
      transparent 28%
    ),

    /* Right-middle puff */
    radial-gradient(
      circle at 72% 48%,
      rgba(185, 209, 238, 0.66) 0 22%,
      transparent 23%
    ),

    /* Far-right puff */
    radial-gradient(
      circle at 87% 64%,
      rgba(165, 192, 225, 0.52) 0 15%,
      transparent 16%
    ),

    /* Main moonlit cloud body */
    linear-gradient(
      180deg,
      #aebfd8 0%,
      #8fa5c2 38%,
      #7189a8 68%,
      #526985 100%
    );

  box-shadow:

    /* Blue outer shadow */
    0 22px 38px
      rgba(0, 0, 0, 0.42),

    /* Secondary shadow */
    0 8px 18px
      rgba(0, 0, 0, 0.28),

    /* Dark underside */
    inset 0 -18px 26px
      rgba(20, 36, 62, 0.48),

    /* Moonlit upper surface */
    inset 0 10px 18px
      rgba(220, 235, 255, 0.30);

  opacity: 0.52;

  filter:
    blur(0.65px)
    saturate(0.75);
}


/* =========================================================
   NIGHT CLOUD — LARGE BACK LOBE
   ========================================================= */

html[data-theme="dark"] .cloud::before {

  background:
    radial-gradient(
      circle at 50% 30%,
      #b9c9df 0%,
      #9aadc8 44%,
      #758ba8 75%,
      #5a718f 100%
    );

  box-shadow:

    inset 0 -14px 22px
      rgba(20, 38, 65, 0.42),

    inset 0 8px 15px
      rgba(220, 235, 255, 0.28),

    0 12px 24px
      rgba(0, 0, 0, 0.28);
}


/* =========================================================
   NIGHT CLOUD — FRONT LOBE
   ========================================================= */

html[data-theme="dark"] .cloud::after {

  background:
    radial-gradient(
      circle at 45% 28%,
      #bdcce0 0%,
      #9eafc8 42%,
      #778ca8 75%,
      #5d738f 100%
    );

  box-shadow:

    inset 0 -12px 20px
      rgba(20, 38, 65, 0.38),

    inset 0 7px 14px
      rgba(225, 238, 255, 0.30),

    0 10px 22px
      rgba(0, 0, 0, 0.25);
}


/* =========================================================
   CLOUD OPACITY AT NIGHT
   ========================================================= */

html[data-theme="dark"] .cloud-1 {
  opacity: 0.48;
}

html[data-theme="dark"] .cloud-2 {
  opacity: 0.38;
}

html[data-theme="dark"] .cloud-3 {
  opacity: 0.28;
}

html[data-theme="dark"] .cloud-4 {
  opacity: 0.20;
}


/* =========================================================
   OPTIONAL — MAKE THE CLOUDS FEEL MOONLIT
   ========================================================= */

html[data-theme="dark"] .cloud-1::before,
html[data-theme="dark"] .cloud-1::after {
  filter:
    brightness(1.08)
    saturate(0.75);
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  html[data-theme="dark"] .sky-clouds::before,
  html[data-theme="dark"] .sky-clouds::after {
    animation: none;

    opacity: 0.55;

    filter: none;
  }
}


/* =========================================================
   HEADER / GLASS NAVBAR
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 100;

  width: 100%;

  padding: 1rem;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: relative;

  width: min(
    100%,
    var(--max-width)
  );

  min-height: var(--nav-height);

  margin-inline: auto;

  padding:
    0.65rem
    0.75rem;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  justify-items: stretch;

  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 / LOGO — LEFT
   ========================================================= */

.brand {
  grid-column: 1;

  justify-self: start;

  align-self: center;

  display: inline-flex;

  align-items: center;

  gap: 0.75rem;

  margin: 0;

  padding: 0;

  font-weight: 800;

  text-decoration: none;

  line-height: 1;
}


.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;

  line-height: 1;

  flex-shrink: 0;
}


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

  line-height: 1;
}


/* =========================================================
   THEME TOGGLE — CENTER
   ========================================================= */

.theme-toggle {
  grid-column: 2;

  justify-self: center;

  align-self: center;

  position: relative;

  top: auto;
  right: auto;
  bottom: auto;
  left: auto;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 2.75rem;
  height: 2.75rem;

  min-width: 2.75rem;
  min-height: 2.75rem;

  margin: 0;

  padding: 0;

  color:
    var(--muted);

  background:
    transparent;

  border: 0;

  border-radius:
    999px;

  cursor: pointer;

  line-height: 1;

  transform: none;

  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}


.theme-toggle:hover {
  color:
    var(--text);

  background:
    rgba(
      255,
      255,
      255,
      0.25
    );

  transform:
    translateY(-1px);
}


.theme-toggle:focus-visible {
  outline:
    2px solid var(--accent);

  outline-offset:
    3px;
}


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


.theme-icon {
  display: block;

  width: auto;
  height: auto;

  margin: 0;
  padding: 0;

  line-height: 1;

  font-size: 1.1rem;
}


/* =========================================================
   HAMBURGER — RIGHT
   ========================================================= */

.nav-toggle {
  grid-column: 3;

  justify-self: end;

  align-self: center;

  position: relative;

  top: auto;
  right: auto;
  bottom: auto;
  left: auto;

  display: inline-flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  width: 2.75rem;
  height: 2.75rem;

  min-width: 2.75rem;
  min-height: 2.75rem;

  margin: 0;

  padding: 0;

  background:
    transparent;

  border: 0;

  border-radius:
    999px;

  cursor: pointer;

  flex-shrink: 0;

  line-height: 0;

  transform: none;

  transition:
    background 180ms ease,
    transform 180ms ease;
}


.nav-toggle:hover {
  background:
    rgba(
      255,
      255,
      255,
      0.25
    );

  transform:
    translateY(-1px);
}


.nav-toggle:focus-visible {
  outline:
    2px solid var(--accent);

  outline-offset:
    3px;
}


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


/* =========================================================
   HAMBURGER LINES
   ========================================================= */

.nav-toggle span {
  display: block;

  width: 1.3rem;
  height: 2px;

  margin:
    0.18rem 0;

  padding: 0;

  background:
    var(--text);

  border-radius:
    999px;

  flex-shrink: 0;

  line-height: 0;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}


/* =========================================================
   HAMBURGER → X
   ========================================================= */

.nav-toggle[aria-expanded="true"]
span:nth-child(1) {
  transform:
    translateY(0.38rem)
    rotate(45deg);
}


.nav-toggle[aria-expanded="true"]
span:nth-child(2) {
  opacity: 0;
}


.nav-toggle[aria-expanded="true"]
span:nth-child(3) {
  transform:
    translateY(-0.38rem)
    rotate(-45deg);
}


/* =========================================================
   NAVIGATION MENU
   IMPORTANT:
   The menu is FIXED at every screen size.

   It does NOT participate in the navbar layout.
   It only appears when .is-open is added.
   ========================================================= */

.nav-links {
  position: fixed;

  top:
    calc(
      1rem +
      var(--nav-height) +
      0.65rem
    );

  right: 1rem;

  z-index: 99;

  width:
    min(
      24rem,
      calc(100vw - 2rem)
    );

  max-height:
    min(
      70vh,
      34rem
    );

  padding:
    0.65rem;

  display: flex;

  flex-direction: column;

  gap:
    0.25rem;

  overflow-y: auto;

  overflow-x: hidden;

  overscroll-behavior:
    contain;

  background:
    var(--surface);

  border:
    1px solid var(--border);

  border-radius:
    1.25rem;

  box-shadow:
    var(--shadow);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform:
    translateY(-0.5rem)
    scale(0.98);

  transform-origin:
    top right;

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}


/* =========================================================
   OPEN NAVIGATION
   ========================================================= */

.nav-links.is-open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform:
    translateY(0)
    scale(1);
}


/* =========================================================
   NAVIGATION LINKS
   ========================================================= */

.nav-links a {
  display: flex;

  align-items: center;

  min-height: 3rem;

  padding:
    0.75rem
    1rem;

  color:
    var(--muted);

  background:
    transparent;

  border-radius:
    0.8rem;

  text-decoration: none;

  white-space: normal;

  line-height: 1.2;

  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}


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

  background:
    rgba(
      255,
      255,
      255,
      0.25
    );

  transform:
    translateX(3px);
}


.nav-links a:focus-visible {
  color:
    var(--text);

  background:
    rgba(
      255,
      255,
      255,
      0.25
    );

  outline:
    2px solid var(--accent);

  outline-offset:
    -2px;
}


html[data-theme="dark"]
.nav-links a:hover,

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


/* =========================================================
   FUTURE LINKS
   ========================================================= */

.future-link {
  opacity: 0.75;
}


/* =========================================================
   NAVIGATION SCROLLBAR
   ========================================================= */

.nav-links {
  scrollbar-width: thin;

  scrollbar-color:
    var(--accent)
    transparent;
}


.nav-links::-webkit-scrollbar {
  width: 6px;
}


.nav-links::-webkit-scrollbar-track {
  background:
    transparent;
}


.nav-links::-webkit-scrollbar-thumb {
  background:
    var(--accent);

  border-radius:
    999px;
}


.nav-links::-webkit-scrollbar-thumb:hover {
  background:
    var(--accent-three);
}


/* =========================================================
   DARK MODE — NAVBAR
   ========================================================= */

html[data-theme="dark"]
.navbar {
  background:
    rgba(
      13,
      17,
      25,
      0.62
    );

  border-color:
    rgba(
      255,
      255,
      255,
      0.11
    );

  box-shadow:
    0 24px 70px
    rgba(
      0,
      0,
      0,
      0.42
    );
}


/* =========================================================
   DARK MODE — MENU
   ========================================================= */

html[data-theme="dark"]
.nav-links {
  background:
    rgba(
      13,
      17,
      25,
      0.88
    );

  border-color:
    rgba(
      255,
      255,
      255,
      0.11
    );

  box-shadow:
    0 24px 70px
    rgba(
      0,
      0,
      0,
      0.42
    );
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .site-header {
    padding:
      0.75rem;
  }


  .navbar {
    min-height:
      64px;

    padding:
      0.6rem
      0.75rem;

    /*
       IMPORTANT:
       Keep exactly the same three-column
       structure at tablet size.
    */

    grid-template-columns:
      1fr
      auto
      1fr;

    align-items:
      center;
  }


  .brand {
    align-self:
      center;

    justify-self:
      start;

    margin:
      0;
  }


  .theme-toggle {
    align-self:
      center;

    justify-self:
      center;

    margin:
      0;

    position:
      relative;

    top:
      auto;

    transform:
      none;
  }


  .nav-toggle {
    align-self:
      center;

    justify-self:
      end;

    margin:
      0;

    position:
      relative;

    top:
      auto;

    transform:
      none;
  }


  .nav-links {
    top:
      calc(
        0.75rem +
        64px +
        0.65rem
      );

    right:
      0.75rem;

    width:
      min(
        23rem,
        calc(100vw - 1.5rem)
      );

    max-height:
      70vh;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .site-header {
    padding:
      0.65rem;
  }


  .navbar {
    min-height:
      60px;

    padding:
      0.55rem
      0.65rem;

    grid-template-columns:
      1fr
      auto
      1fr;

    align-items:
      center;
  }


  .brand {
    align-self:
      center;

    justify-self:
      start;

    margin:
      0;
  }


  .brand-mark {
    width:
      2.35rem;

    height:
      2.35rem;
  }


  .theme-toggle {
    align-self:
      center;

    justify-self:
      center;

    width:
      2.6rem;

    height:
      2.6rem;

    min-width:
      2.6rem;

    min-height:
      2.6rem;

    margin:
      0;

    position:
      relative;

    top:
      auto;

    transform:
      none;
  }


  .nav-toggle {
    align-self:
      center;

    justify-self:
      end;

    width:
      2.6rem;

    height:
      2.6rem;

    min-width:
      2.6rem;

    min-height:
      2.6rem;

    margin:
      0;

    position:
      relative;

    top:
      auto;

    right:
      auto;

    bottom:
      auto;

    left:
      auto;

    transform:
      none;
  }


  .nav-links {
    top:
      calc(
        0.65rem +
        60px +
        0.5rem
      );

    left:
      0.65rem;

    right:
      0.65rem;

    width:
      auto;

    max-height:
      calc(
        100vh - 5rem
      );

    border-radius:
      1.15rem;

    transform-origin:
      top center;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

  .site-header {
    padding:
      0.5rem;
  }


  .navbar {
    min-height:
      56px;

    padding:
      0.45rem
      0.55rem;

    grid-template-columns:
      1fr
      auto
      1fr;

    align-items:
      center;
  }


  .brand {
    align-self:
      center;

    justify-self:
      start;
  }


  .brand-mark {
    width:
      2.2rem;

    height:
      2.2rem;
  }


  .theme-toggle {
    align-self:
      center;

    justify-self:
      center;

    width:
      2.45rem;

    height:
      2.45rem;

    min-width:
      2.45rem;

    min-height:
      2.45rem;

    margin:
      0;
  }


  .nav-toggle {
    align-self:
      center;

    justify-self:
      end;

    width:
      2.45rem;

    height:
      2.45rem;

    min-width:
      2.45rem;

    min-height:
      2.45rem;

    margin:
      0;
  }


  .nav-links {
    top:
      calc(
        0.5rem +
        56px +
        0.5rem
      );

    left:
      0.5rem;

    right:
      0.5rem;

    max-height:
      calc(
        100vh - 4.25rem
      );
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  html {
    scroll-behavior:
      auto;
  }


  .cloud,
  html[data-theme="dark"] body::after,
  html[data-theme="dark"] .site-header::after {
    animation:
      none !important;
  }


  .nav-links,
  .nav-links a,
  .theme-toggle,
  .nav-toggle,
  .nav-toggle span {
    transition:
      none !important;
  }
}



/* 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;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section {
  position: relative;
  padding: 8rem 0;
}


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-intro {
  max-width: 1000px;
  margin-bottom: 5rem;
}

.about-intro-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-intro-label .eyebrow {
  margin: 0;
}

.about-line {
  width: 48px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--accent);
  opacity: 0.8;
}

.about-title {
  max-width: 950px;
  margin-bottom: 2rem;

  color: var(--text);

  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-gradient {
  color: var(--accent);

  background:
    linear-gradient(
      120deg,
      var(--accent),
      var(--accent-three),
      var(--accent-two)
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-lead {
  max-width: 760px;
  margin: 0;

  color: var(--text);

  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.7;
}


/* =========================================================
   ABOUT MAIN LAYOUT
   ========================================================= */

.about-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.6fr)
    minmax(280px, 0.75fr);

  gap: 4rem;

  align-items: start;
}


/* =========================================================
   ABOUT STORY
   ========================================================= */

.about-story {
  position: relative;

  display: grid;

  grid-template-columns:
    58px
    minmax(0, 1fr);

  gap: 1.5rem;
}

.about-story-marker {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.about-story-marker span {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  flex: 0 0 auto;

  border: 1px solid var(--border);
  border-radius: 50%;

  color: var(--accent);
  background: var(--surface);

  font-family: "Unbounded", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;

  box-shadow: var(--shadow);
}

.about-story-content {
  max-width: 720px;

  padding: 2rem 2.2rem;

  border: 1px solid rgba(57, 45, 34, 0.10);
  border-radius: 1.25rem;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.20)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 10px 30px rgba(57, 45, 34, 0.06);

  position: relative;
  overflow: hidden;
}

/* Soft decorative glow */

.about-story-content::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -70px;

  border-radius: 50%;

  background: var(--accent-three);

  opacity: 0.10;

  filter: blur(25px);

  pointer-events: none;
}


/* Keep text above decorative glow */

.about-story-content p {
  position: relative;
  z-index: 1;

  margin-bottom: 1.6rem;

  font-size: 1.05rem;
  line-height: 1.85;
}

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

/* =========================================================
   DARK MODE
   ========================================================= */

html[data-theme="dark"] .about-story-content {
  background:
    linear-gradient(
      145deg,
      rgba(60, 60, 66, 0.58),
      rgba(35, 35, 40, 0.38)
    );

  border-color:
    rgba(255, 255, 255, 0.10);

  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   ABOUT — COLORFUL HIGHLIGHTS
   Works in BOTH:
   - About story
   - Career Path
   ========================================================= */

#about .about-highlight {
  color: #168aad;

  font-weight: 750;

  text-shadow:
    0 0 14px rgba(22, 138, 173, 0.22);

  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}


/* Forest Green */

#about .about-highlight-01 {
  color: #3f7d58;

  font-weight: 750;

  text-shadow:
    0 0 14px rgba(63, 125, 88, 0.22);
}


/* Pink */

#about .about-highlight-02 {
  color: #d86f8c;

  font-weight: 750;

  text-shadow:
    0 0 14px rgba(216, 111, 140, 0.22);
}


/* Lavender — Software Engineering */

#about .about-highlight-03 {
  color: #9b6fc1;

  font-weight: 800;

  text-shadow:
    0 0 14px rgba(155, 111, 193, 0.28),
    0 0 26px rgba(155, 111, 193, 0.12);
}


/* =========================================================
   HIGHLIGHT HOVER
   ========================================================= */

#about .about-highlight:hover {
  color: #20a4c9;

  text-shadow:
    0 0 14px rgba(32, 164, 201, 0.4),
    0 0 26px rgba(32, 164, 201, 0.18);
}

#about .about-highlight-01:hover {
  color: #579b70;

  text-shadow:
    0 0 14px rgba(87, 155, 112, 0.4);
}

#about .about-highlight-02:hover {
  color: #ed8ca7;

  text-shadow:
    0 0 14px rgba(237, 140, 167, 0.4);
}

#about .about-highlight-03:hover {
  color: #c6a4d9;

  text-shadow:
    0 0 14px rgba(198, 164, 217, 0.45),
    0 0 26px rgba(198, 164, 217, 0.18);
}


/* =========================================================
   DARK MODE — HIGHLIGHTS
   ========================================================= */

html[data-theme="dark"] #about .about-highlight {
  color: #43b9dc;

  text-shadow:
    0 0 16px rgba(67, 185, 220, 0.28);
}

html[data-theme="dark"] #about .about-highlight-01 {
  color: #82b995;

  text-shadow:
    0 0 16px rgba(130, 185, 149, 0.25);
}

html[data-theme="dark"] #about .about-highlight-02 {
  color: #ee9db5;

  text-shadow:
    0 0 16px rgba(238, 157, 181, 0.25);
}

html[data-theme="dark"] #about .about-highlight-03 {
  color: #d0a9e8;

  text-shadow:
    0 0 16px rgba(208, 169, 232, 0.3);
}


/* =========================================================
   ABOUT PROFILE CARD
   ========================================================= */

.about-profile {
  position: relative;

  padding: 2rem;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.48),
      rgba(255, 255, 255, 0.18)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: var(--shadow);

  overflow: hidden;
}

html[data-theme="dark"] .about-profile {
  background:
    linear-gradient(
      145deg,
      rgba(60, 60, 66, 0.65),
      rgba(35, 35, 40, 0.4)
    );
}

.about-profile::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -80px;

  border-radius: 50%;

  background: var(--accent-three);

  opacity: 0.16;

  filter: blur(20px);

  pointer-events: none;
}


/* =========================================================
   PROFILE NAME
   ========================================================= */

.profile-name {
  position: relative;

  display: flex;
  flex-direction: column;

  margin-bottom: 1.2rem;

  font-size: clamp(2rem, 4vw, 3.3rem);

  line-height: 0.95;
  letter-spacing: -0.06em;
}

.profile-name span {
  color: var(--text);
}

.profile-name strong {
  color: var(--accent);
  font-weight: 700;
}


/* Keep O'Connell large on ALL screen sizes */

#about .profile-name .mystic-md {
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}


/* =========================================================
   PROFILE DIVIDER
   ========================================================= */

.profile-divider {
  width: 100%;
  height: 1px;

  margin-bottom: 1.5rem;

  background: var(--border);
}


/* =========================================================
   CAREER PATH
   ========================================================= */

.profile-focus {
  margin-top: 2rem;
}

.profile-focus-label {
  margin-bottom: 1.15rem;

  color: var(--muted);

  font-size: 1rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* =========================================================
   CAREER PATH ITEMS
   ========================================================= */

.focus-item {
  position: relative;

  display: flex;
  align-items: center;

  gap: 0.9rem;

  padding: 0.7rem 0;

  color: var(--text);
}

.focus-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  border: 1px solid var(--border);
  border-radius: 50%;

  color: var(--accent);

  background: rgba(255, 255, 255, 0.32);

  font-family: "Unbounded", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;

  box-shadow:
    0 8px 20px rgba(57, 45, 34, 0.08);

  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.focus-content {
  display: flex;
  flex-direction: column;

  gap: 0.1rem;
}

.focus-role {
  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 750;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/*
   IMPORTANT:
   Career Path highlights now use the SAME
   .about-highlight system as the story.
*/

.profile-focus .about-highlight {
  display: inline-block;

  font-size: 1rem;
  line-height: 1.25;

  font-weight: 750;
}


/* =========================================================
   CAREER PATH NUMBER COLORS
   ========================================================= */

.focus-current .focus-number {
  color: #168aad;
  border-color: rgba(22, 138, 173, 0.25);

  box-shadow:
    0 8px 22px rgba(22, 138, 173, 0.1);
}

.focus-next .focus-number {
  color: #3f7d58;
  border-color: rgba(63, 125, 88, 0.25);

  box-shadow:
    0 8px 22px rgba(63, 125, 88, 0.1);
}

.focus-goal .focus-number {
  color: #9b6fc1;
  border-color: rgba(155, 111, 193, 0.3);

  box-shadow:
    0 8px 24px rgba(155, 111, 193, 0.14),
    0 0 16px rgba(155, 111, 193, 0.08);
}


/* =========================================================
   DARK MODE — CAREER NUMBERS
   ========================================================= */

html[data-theme="dark"] .focus-number {
  background: rgba(255, 255, 255, 0.06);

  border-color:
    rgba(255, 255, 255, 0.12);

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .focus-current .focus-number {
  color: #43b9dc;
}

html[data-theme="dark"] .focus-next .focus-number {
  color: #82b995;
}

html[data-theme="dark"] .focus-goal .focus-number {
  color: #d0a9e8;
}


/* =========================================================
   THINKING CARDS
   ========================================================= */

.about-principles {
  margin-top: 8rem;
}

.about-principles-heading {
  max-width: 700px;
  margin-bottom: 3rem;
}

.about-principles-heading .eyebrow {
  margin-bottom: 1rem;
}

.about-principles-heading h3 {
  margin: 0;

  color: var(--text);

  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}


/* =========================================================
   THINKING CARD GRID
   ========================================================= */

.about-principles-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 1.5rem;
}


/* =========================================================
   THINKING CARDS
   ========================================================= */

.about-principle {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 380px;

  padding: 2rem;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.58),
      rgba(255, 255, 255, 0.22)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: var(--shadow);

  overflow: hidden;

  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

html[data-theme="dark"] .about-principle {
  background:
    linear-gradient(
      145deg,
      rgba(58, 58, 64, 0.68),
      rgba(35, 35, 40, 0.48)
    );
}


/* Card glow */

.about-principle::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -80px;

  border-radius: 50%;

  background: var(--accent);

  opacity: 0.1;

  filter: blur(35px);

  pointer-events: none;
}

.about-principle:nth-child(2)::before {
  background: var(--accent-two);
}

.about-principle:nth-child(3)::before {
  background: var(--accent-three);
}


/* Card hover */

.about-principle:hover {
  transform: translateY(-8px);

  border-color:
    rgba(214, 140, 115, 0.32);

  box-shadow:
    0 32px 90px rgba(57, 45, 34, 0.18);
}


/* =========================================================
   CARD HEADER
   ========================================================= */

.about-principle-top {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  margin-bottom: 4rem;
}


/* =========================================================
   PREMIUM PRINCIPLE NUMBER
   ========================================================= */

.principle-number {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  flex: 0 0 auto;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;

  color: var(--accent);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.62),
      rgba(198, 164, 217, 0.2)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 14px 35px rgba(57, 45, 34, 0.12),
    0 0 22px rgba(198, 164, 217, 0.14);

  font-family: "Unbounded", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;

  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.about-principle:hover .principle-number {
  transform: translateY(-3px) scale(1.04);

  border-color:
    rgba(255, 255, 255, 0.9);

  box-shadow:
    0 18px 42px rgba(57, 45, 34, 0.16),
    0 0 30px rgba(198, 164, 217, 0.25);
}


/* Dark mode */

html[data-theme="dark"] .principle-number {
  color: #f5d7ca;

  background:
    linear-gradient(
      145deg,
      rgba(70, 70, 78, 0.72),
      rgba(198, 164, 217, 0.16)
    );

  border-color:
    rgba(255, 255, 255, 0.2);

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(198, 164, 217, 0.16);
}


/* =========================================================
   CARD LABEL
   ========================================================= */

.principle-label {
  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.11em;

  text-transform: uppercase;

  text-align: right;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.about-principle h3 {
  position: relative;

  margin-bottom: 1rem;

  color: var(--text);

  font-size: clamp(1.45rem, 2vw, 1.8rem);

  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-principle p {
  position: relative;

  margin: 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.8;
}


/* =========================================================
   PRINCIPLE FOOTER / SKILL BUBBLES
   ========================================================= */

.about-principle-footer {
  display: flex;
  flex-wrap: wrap;

  gap: 0.65rem;

  margin-top: auto;
  padding-top: 2rem;
}

.about-principle-footer 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);

  font-size: 0.85rem;
  font-weight: 850;

  overflow: hidden;

  user-select: none;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.about-principle-footer span::before {
  content: "✦";

  color: var(--accent);

  font-size: 0.72rem;
}

.about-principle-footer span:hover {
  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);
}


/* Dark mode */

html[data-theme="dark"] .about-principle-footer span {
  color: var(--text);

  background:
    linear-gradient(
      135deg,
      rgba(48, 48, 54, 0.92),
      rgba(198, 164, 217, 0.18)
    );

  border-color:
    rgba(198, 164, 217, 0.28);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   CLOSING
   ========================================================= */

.about-closing {
  display: grid;

  grid-template-columns:
    1fr
    minmax(300px, 850px)
    1fr;

  align-items: center;

  gap: 1.5rem;

  margin-top: 7rem;
}

.closing-line {
  height: 1px;

  background: var(--border);
}

.about-closing p {
  margin: 0;

  color: var(--text);

  font-size: clamp(1.15rem, 2vw, 1.5rem);

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-profile {
    width: 100%;
    max-width: 600px;
  }

  .about-principles-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .about-principle:last-child {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }


  /* Intro */

  .about-intro {
    margin-bottom: 3.5rem;
  }

  .about-intro-label {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .about-line {
    width: 32px;
  }

  .about-title {
    margin-bottom: 1.5rem;

    font-size:
      clamp(
        2.8rem,
        14vw,
        4.5rem
      );
  }

  .about-lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }


  /* Story */

  .about-story {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-story-marker {
    padding: 0;
  }

  .about-story-marker span {
    width: 36px;
    height: 36px;

    font-size: 0.55rem;
  }

  .about-story-content p {
    font-size: 0.98rem;
    line-height: 1.8;
  }


  /* Profile */

  .about-profile {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .profile-name {
    font-size: 2.5rem;
  }

  /* Keep O'Connell at the same size */

  #about .profile-name .mystic-md {
    font-size: 2.6rem;
  }


  /* Career path */

  .profile-focus {
    margin-top: 1.5rem;
  }

  .focus-item {
    gap: 0.75rem;
  }

  .focus-content {
    min-width: 0;
  }

  .profile-focus .about-highlight {
    font-size: 0.95rem;
  }


  /* Thinking cards */

  .about-principles {
    margin-top: 5rem;
  }

  .about-principles-heading {
    margin-bottom: 2rem;
  }

  .about-principles-heading h3 {
    font-size: 2rem;
  }

  .about-principles-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-principle {
    width: 100%;

    min-height: auto;

    padding: 1.5rem;

    border-radius: 22px;
  }

  .about-principle:hover {
    transform: none;
  }

  .about-principle-top {
    margin-bottom: 3rem;
  }

  .principle-number {
    width: 44px;
    height: 44px;

    font-size: 0.66rem;
  }

  .principle-label {
    max-width: 160px;

    font-size: 0.6rem;

    line-height: 1.4;
  }

  .about-principle h3 {
    margin-bottom: 0.9rem;

    font-size: 1.45rem;
  }

  .about-principle p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .about-principle-footer {
    gap: 0.55rem;

    padding-top: 1.75rem;
  }

  .about-principle-footer span {
    min-height: 2.15rem;

    padding:
      0.45rem
      0.75rem;

    font-size: 0.78rem;
  }


  /* Closing */

  .about-closing {
    display: block;

    margin-top: 5rem;
  }

  .closing-line {
    margin: 1.5rem 0;
  }

  .about-closing p {
    font-size: 1.1rem;
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

  .about-profile {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .profile-name {
    font-size: 2.25rem;
  }

  #about .profile-name .mystic-md {
    font-size: 2.6rem;
  }

  .about-principle {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .about-principle-top {
    align-items: flex-start;

    margin-bottom: 2.5rem;
  }

  .principle-label {
    max-width: 130px;
  }

  .about-principle h3 {
    font-size: 1.35rem;
  }

  .about-principle p {
    font-size: 0.9rem;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  .about-principle,
  .principle-number,
  .about-highlight {
    transition: none;
  }

  .about-principle:hover {
    transform: none;
  }

  .about-principle:hover .principle-number {
    transform: none;
  }
}



/* 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: 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 SECTION
========================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

/* Main rounded glass box */
.contact-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  padding: clamp(2rem, 5vw, 4rem);

  background:
    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.14),
      transparent 42%
    ),
    radial-gradient(
      circle at center right,
      rgba(155, 183, 164, 0.12),
      transparent 45%
    ),
    var(--surface);

  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 10px);

  box-shadow: var(--shadow);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Decorative glow inside the card */
.contact-card::before {
  content: "";

  position: absolute;
  top: -8rem;
  right: -8rem;

  width: 20rem;
  height: 20rem;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(198, 164, 217, 0.2),
      transparent 68%
    );

  filter: blur(18px);

  pointer-events: none;
}

/* Keep content above decorative glow */
.contact-card > * {
  position: relative;
  z-index: 2;
}

/* Heading area */
.contact-card .eyebrow {
  margin-bottom: 0.85rem;
}

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

.contact-card > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 2.5rem;

  font-size: 1.08rem;
  line-height: 1.8;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 1.4rem;

  margin-top: 2rem;
}


/* Hide Netlify honeypot */

.hidden {
  display: none !important;
}


/* =========================
   FORM ROW
========================= */

.form-row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.25rem;
}


/* =========================
   FORM FIELDS
========================= */

.form-field {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.form-field label {
  display: block;

  margin-bottom: 0.55rem;

  color: var(--text);

  font-size: 0.9rem;
  font-weight: 700;

  letter-spacing: -0.01em;
}


/* =========================
   INPUTS + TEXTAREA
========================= */

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  color: var(--text);

  background: var(--surface-strong);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}


/* Placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.65;
}


/* Focus */

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;

  border-color: var(--accent);

  background: var(--surface-strong);

  box-shadow:
    0 0 0 3px rgba(214, 140, 115, 0.14),
    0 10px 25px rgba(57, 45, 34, 0.06);
}


/* Textarea */

.contact-form textarea {
  min-height: 160px;

  resize: vertical;

  line-height: 1.65;
}


/* =========================
   CONTACT BUTTON
========================= */

.contact-form .button {
  display: inline-flex;
  align-self: center;

  min-width: 180px;

  border: 0 !important;
  outline: none !important;

  box-shadow: 0 18px 40px rgba(214, 140, 115, 0.25);

  appearance: none;
  -webkit-appearance: none;
}

.contact-form .button:focus,
.contact-form .button:focus-visible,
.contact-form .button:active {
  border: 0 !important;
  outline: none !important;
}

@media (max-width: 560px) {
  .contact-form .button {
    width: 100%;
    align-self: center;
  }
}

/* =========================
   DARK MODE
========================= */

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

html[data-theme="dark"] .contact-form input[type="text"],
html[data-theme="dark"] .contact-form input[type="email"],
html[data-theme="dark"] .contact-form textarea {
  background: rgba(45, 45, 50, 0.62);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .contact-form input:focus,
html[data-theme="dark"] .contact-form textarea:focus {
  background: rgba(48, 48, 54, 0.82);

  box-shadow:
    0 0 0 3px rgba(214, 140, 115, 0.16),
    0 12px 30px rgba(0, 0, 0, 0.2);
}


/* =========================
   TABLET
========================= */

@media (max-width: 700px) {
  .contact-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .contact-card > p:not(.eyebrow) {
    margin-bottom: 2rem;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 560px) {
  .contact-section {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
  }

  .contact-card {
    padding: 1.35rem;

    border-radius: var(--radius-lg);
  }

  .contact-card h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-card > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .contact-form {
    gap: 1.15rem;
    margin-top: 1.5rem;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    padding: 0.9rem 1rem;
  }

  .contact-form textarea {
    min-height: 140px;
  }

  .contact-form .button {
    width: 100%;
    margin-top: 0.35rem;
  }
}

/* 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;
}


/* Mindset Page — Text Only Alternative */

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

.mindset-principle-text-only {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  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);
}

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

.mindset-principle-text-only .principle-heading .eyebrow {
  margin-bottom: 1rem;
}

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

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

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

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


/* Mobile */
@media (max-width: 768px) {
  .mindset-principle-text-only {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   COWORKER SUPPORT SECTION
   ========================================================= */

.coworker-support-section {
  position: relative;
  overflow: hidden;
}


/* ---------------------------------------------------------
   Decorative Background Glows
   --------------------------------------------------------- */

.coworker-support-section::before,
.coworker-support-section::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  filter: blur(35px);

  pointer-events: none;
}

.coworker-support-section::before {
  top: 8rem;
  left: -12rem;

  width: 30rem;
  height: 30rem;

  background: radial-gradient(
    circle,
    rgba(214, 140, 115, 0.14),
    transparent 68%
  );
}

.coworker-support-section::after {
  right: -12rem;
  bottom: 2rem;

  width: 28rem;
  height: 28rem;

  background: radial-gradient(
    circle,
    rgba(155, 183, 164, 0.16),
    transparent 68%
  );
}


/* ---------------------------------------------------------
   Section Introduction
   --------------------------------------------------------- */

.coworker-support-heading {
  position: relative;
  z-index: 2;

  max-width: 820px;

  margin-bottom: 2.75rem;
}

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

.coworker-support-heading p:last-child {
  max-width: 720px;

  margin-bottom: 0;

  font-size: 1.08rem;
  line-height: 1.8;
}


/* ---------------------------------------------------------
   Support Card Grid
   --------------------------------------------------------- */

.coworker-support-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1.15rem;

  align-items: stretch;
}


/* ---------------------------------------------------------
   Support Card
   --------------------------------------------------------- */

.support-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 100%;

  padding: 1.5rem;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(214, 140, 115, 0.14),
      transparent 46%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(198, 164, 217, 0.12),
      transparent 48%
    ),
    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);

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}


/* Card decorative glow */

.support-card::before {
  content: "";

  position: absolute;
  top: -7rem;
  right: -7rem;

  width: 15rem;
  height: 15rem;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 164, 217, 0.2),
    transparent 68%
  );

  filter: blur(18px);

  pointer-events: none;
}


/* Card bottom accent */

.support-card::after {
  content: "";

  position: absolute;
  right: 1.5rem;
  bottom: 0;
  left: 1.5rem;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    var(--accent-three),
    transparent
  );

  opacity: 0.35;
}


/* Card hover */

.support-card:hover {
  transform: translateY(-5px);

  border-color: rgba(214, 140, 115, 0.28);

  box-shadow:
    0 28px 65px rgba(57, 45, 34, 0.14),
    0 0 30px rgba(198, 164, 217, 0.08);
}


/* ---------------------------------------------------------
   Card Header
   --------------------------------------------------------- */

.support-card-top {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 0.75rem;

  margin-bottom: 1.5rem;
}


/* Category */

.support-tag {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 1.9rem;

  padding: 0.4rem 0.7rem;

  color: var(--accent);

  background: rgba(214, 140, 115, 0.1);

  border: 1px solid rgba(214, 140, 115, 0.2);

  border-radius: 999px;

  font-size: 0.67rem;
  font-weight: 900;

  letter-spacing: 0.1em;
  line-height: 1;

  text-transform: uppercase;

  white-space: nowrap;
}


/* Status */

.support-status {
  color: var(--muted);

  font-size: 0.67rem;
  font-weight: 800;

  letter-spacing: 0.06em;
  line-height: 1.3;

  text-align: right;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   Card Title
   --------------------------------------------------------- */

.support-card h3 {
  position: relative;
  z-index: 2;

  margin-bottom: 1.4rem;

  font-size: clamp(1.35rem, 2vw, 1.75rem);

  line-height: 1.12;

  letter-spacing: -0.04em;
}


/* ---------------------------------------------------------
   Request Details
   --------------------------------------------------------- */

.support-detail {
  position: relative;
  z-index: 2;

  padding: 1rem 0;

  border-top: 1px solid var(--border);
}

.support-detail-label {
  display: block;

  margin-bottom: 0.4rem;

  color: var(--accent);

  font-size: 0.68rem;
  font-weight: 900;

  letter-spacing: 0.12em;
  line-height: 1.2;

  text-transform: uppercase;
}

.support-detail p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.65;
}


/* ---------------------------------------------------------
   Card Footer
   --------------------------------------------------------- */

.support-card-footer {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  gap: 0.8rem;

  margin-top: auto;

  padding-top: 1.25rem;
}

.support-deadline {
  color: var(--muted);

  font-size: 0.76rem;
  font-weight: 700;

  line-height: 1.4;
}


/* ---------------------------------------------------------
   Fundraiser Button
   --------------------------------------------------------- */

.support-button {
  width: 100%;

  min-height: 3rem;

  gap: 0.5rem;

  font-size: 0.86rem;

  box-shadow:
    0 14px 30px rgba(214, 140, 115, 0.18);
}

.support-button span {
  display: inline-flex;

  transition: transform 180ms ease;
}

.support-button:hover span {
  transform: translate(2px, -2px);
}


/* ---------------------------------------------------------
   Voluntary Notice
   --------------------------------------------------------- */

.support-voluntary {
  position: relative;
  z-index: 2;

  margin: 1.1rem 0 0;

  padding-top: 1rem;

  color: var(--muted);

  border-top: 1px solid var(--border);

  font-size: 0.72rem;

  line-height: 1.6;

  text-align: center;
}


/* ---------------------------------------------------------
   All Support Requests Preview
   --------------------------------------------------------- */

.support-all-card {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1fr auto;

  align-items: center;

  gap: 2rem;

  margin-top: 2rem;

  padding: clamp(1.4rem, 4vw, 2.5rem);

  background:
    radial-gradient(
      circle at top left,
      rgba(214, 140, 115, 0.12),
      transparent 48%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(198, 164, 217, 0.1),
      transparent 50%
    ),
    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);
}

.support-all-card h2 {
  max-width: 720px;

  margin-bottom: 1rem;
}

.support-all-card p:last-child {
  max-width: 720px;

  margin-bottom: 0;

  color: var(--muted);

  line-height: 1.75;
}

.support-all-card .button {
  flex-shrink: 0;

  white-space: nowrap;
}

.support-all-card .button span {
  display: inline-flex;

  transition: transform 180ms ease;
}

.support-all-card .button:hover span {
  transform: translateX(3px);
}


/* ---------------------------------------------------------
   Dark Theme
   --------------------------------------------------------- */

html[data-theme="dark"] .support-card,
html[data-theme="dark"] .support-all-card {
  background:
    radial-gradient(
      circle at top left,
      rgba(214, 140, 115, 0.11),
      transparent 46%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(198, 164, 217, 0.1),
      transparent 48%
    ),
    var(--surface);
}

html[data-theme="dark"] .support-card:hover {
  border-color: rgba(214, 140, 115, 0.25);

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(198, 164, 217, 0.1);
}

html[data-theme="dark"] .support-tag {
  background: rgba(214, 140, 115, 0.08);

  border-color: rgba(214, 140, 115, 0.2);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 960px) {

  .coworker-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card:last-child {
    grid-column: 1 / -1;

    width: min(100%, calc(50% - 0.575rem));

    justify-self: center;
  }

}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 700px) {

  .support-all-card {
    grid-template-columns: 1fr;

    gap: 1.5rem;
  }

  .support-all-card .button {
    width: 100%;
  }

}


/* ---------------------------------------------------------
   Small Mobile
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .coworker-support-heading {
    margin-bottom: 2rem;
  }

  .coworker-support-heading p:last-child {
    font-size: 1rem;

    line-height: 1.7;
  }

  .coworker-support-grid {
    grid-template-columns: 1fr;

    gap: 1rem;
  }

  .support-card:last-child {
    grid-column: auto;

    width: 100%;
  }

  .support-card {
    padding: 1.25rem;

    border-radius: var(--radius-md);
  }

  .support-card-top {
    align-items: flex-start;
  }

  .support-status {
    max-width: 120px;
  }

  .support-card h3 {
    font-size: 1.45rem;
  }

  .support-detail p {
    font-size: 0.88rem;
  }

  .support-voluntary {
    font-size: 0.7rem;
  }

}


/* ---------------------------------------------------------
   Very Small Screens
   --------------------------------------------------------- */

@media (max-width: 380px) {

  .support-card-top {
    flex-direction: column;

    align-items: flex-start;
  }

  .support-status {
    max-width: none;

    text-align: left;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

  .support-card,
  .support-button span,
  .support-all-card .button span {
    transition: none;
  }

  .support-card:hover {
    transform: none;
  }

}


/* 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;
  }
}