  html { scroll-behavior: smooth; }
  html, body { background: #000; }
  body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  * { -webkit-tap-highlight-color: transparent; }

  /* ---------- Liquid Glass text (static) ----------
     Glassy vertical gradient clipped to the glyphs + thin refractive stroke.
     Drop-shadows are deliberately tight (embossing only) — the wide bloom
     is handled by a separate blurred radial behind the text so it stays
     organically shaped instead of inheriting any wrapper's rectangle. */
  .liquid-glass {
    background-image: linear-gradient(180deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.55) 22%,
      rgba(170,215,255,0.45) 48%,
      rgba(255,255,255,0.75) 70%,
      rgba(190,210,255,0.35) 100%
    );
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.35);
    filter:
      drop-shadow(0 1px 0 rgba(255,255,255,0.55))
      drop-shadow(0 -1px 0 rgba(0,0,0,0.45))
      drop-shadow(0 6px 18px rgba(120,180,255,0.22));
  }

  .liquid-glass-purple {
    background-image: linear-gradient(180deg,
      rgba(237,233,254,0.98) 0%,
      rgba(196,181,253,0.75) 22%,
      rgba(167,139,250,0.55) 48%,
      rgba(196,181,253,0.85) 70%,
      rgba(167,139,250,0.45) 100%
    );
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
    -webkit-text-stroke: 1px rgba(196,181,253,0.4);
    filter:
      drop-shadow(0 1px 0 rgba(237,233,254,0.5))
      drop-shadow(0 -1px 0 rgba(0,0,0,0.45))
      drop-shadow(0 6px 18px rgba(139,92,246,0.28));
  }

  /* Soft elliptical bloom that lives BEHIND the text (no clipping box).
     Sized in em so it scales with whatever font-size the heading is at. */
  .text-bloom {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 140%;
    height: 220%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(48px);
  }
  .text-bloom-white {
    background: radial-gradient(closest-side, rgba(180,220,255,0.28) 0%, rgba(180,220,255,0) 70%);
  }
  .text-bloom-purple {
    background: radial-gradient(closest-side, rgba(167,139,250,0.38) 0%, rgba(139,92,246,0.18) 35%, rgba(139,92,246,0) 70%);
  }

  /* ---------- Starfield (subtle, repeating) ---------- */
  .stars {
    background-image:
      radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.45), transparent 60%),
      radial-gradient(1px 1px at 33% 72%, rgba(255,255,255,.35), transparent 60%),
      radial-gradient(1.2px 1.2px at 62% 28%, rgba(255,255,255,.4), transparent 60%),
      radial-gradient(1px 1px at 80% 64%, rgba(255,255,255,.3), transparent 60%),
      radial-gradient(1px 1px at 91% 12%, rgba(255,255,255,.32), transparent 60%),
      radial-gradient(1px 1px at 6% 88%, rgba(255,255,255,.4), transparent 60%),
      radial-gradient(1px 1px at 48% 92%, rgba(255,255,255,.3), transparent 60%),
      radial-gradient(1px 1px at 22% 44%, rgba(255,255,255,.25), transparent 60%),
      radial-gradient(1px 1px at 71% 8%, rgba(255,255,255,.38), transparent 60%),
      radial-gradient(1px 1px at 55% 56%, rgba(255,255,255,.28), transparent 60%);
    background-size: 700px 700px;
  }

  /* ---------- Cycling word: enter / exit ---------- */
  @keyframes wordEnter {
    from { transform: translateY(0.55em); opacity: 0; }
    to   { transform: translateY(0);      opacity: 1; }
  }
  @keyframes wordExit {
    from { transform: translateY(0);        opacity: 1; }
    to   { transform: translateY(-0.55em);  opacity: 0; }
  }
  .word-enter { animation: wordEnter 600ms cubic-bezier(.4,0,.2,1) forwards; }
  .word-exit  { animation: wordExit  600ms cubic-bezier(.4,0,.2,1) forwards; }

  /* ---------- Vial: slow 3-D sway ---------- */
  @keyframes vialSway {
    0%   { transform: rotateY(-14deg) rotateX(2deg); }
    50%  { transform: rotateY( 14deg) rotateX(-2deg); }
    100% { transform: rotateY(-14deg) rotateX(2deg); }
  }
  .vial-sway {
    animation: vialSway 9s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
  }

  /* ---------- Configurator: futuristic biopunk UI ----------
     Electric indigo #7B5CFF primary, cyan #00F0FF accent, Orbitron/Syne
     display type, glassmorphism panels, glow-on-focus inputs. */
  .fx-panel {
    background:
      linear-gradient(180deg, rgba(123,92,255,0.04) 0%, rgba(0,240,255,0.02) 100%),
      rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border-radius: 24px;
    box-shadow:
      0 30px 80px -30px rgba(0,0,0,0.75),
      0 0 0 1px rgba(123,92,255,0.08),
      inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
  }
  /* Animated conic glow ring around the panel */
  .fx-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(
      from 0deg,
      rgba(123,92,255,0) 0%,
      rgba(123,92,255,0.45) 14%,
      rgba(0,240,255,0.35) 28%,
      rgba(123,92,255,0) 42%,
      rgba(123,92,255,0) 100%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: fxRing 14s linear infinite;
    opacity: 0.55;
    pointer-events: none;
  }
  @keyframes fxRing { to { transform: rotate(360deg); } }

  .fx-section + .fx-section { margin-top: 22px; }
  .fx-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(220,225,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .25s ease, text-shadow .25s ease;
  }
  .fx-label::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 9999px;
    background: #7B5CFF;
    box-shadow: 0 0 8px rgba(123,92,255,0.7);
  }
  .fx-label:hover {
    color: rgba(245,247,255,0.95);
    text-shadow: 0 0 14px rgba(123,92,255,0.45);
  }
  .fx-counter {
    margin-left: auto;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
  }

  /* Cap swatches */
  .fx-swatch {
    position: relative;
    width: 38px; height: 38px;
    border-radius: 9999px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    transition: transform .22s ease, box-shadow .28s ease;
  }
  .fx-swatch:hover { transform: translateY(-2px) scale(1.06); }
  .fx-swatch::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.18);
    pointer-events: none;
  }
  .fx-swatch.active {
    box-shadow:
      0 0 0 2px rgba(123,92,255,1),
      0 0 22px rgba(123,92,255,0.55),
      0 0 38px rgba(0,240,255,0.20);
  }
  .fx-swatch-fill {
    position: absolute; inset: 3px;
    border-radius: 9999px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), inset 0 -2px 4px rgba(0,0,0,0.35);
  }

  /* Size radio chips */
  .fx-size {
    position: relative;
    padding: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(220,225,255,0.65);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9999px;
    cursor: pointer;
    transition: all .25s ease;
  }
  .fx-size:hover {
    color: white;
    border-color: rgba(123,92,255,0.45);
    background: rgba(123,92,255,0.06);
  }
  .fx-size.active {
    color: white;
    background: linear-gradient(135deg, rgba(123,92,255,0.22) 0%, rgba(0,240,255,0.10) 100%);
    border-color: rgba(123,92,255,0.7);
    box-shadow:
      0 0 0 1px rgba(123,92,255,0.55),
      0 8px 22px -8px rgba(123,92,255,0.55);
  }

  /* Bottom-border-only inputs */
  .fx-input,
  .fx-textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  .fx-input::placeholder, .fx-textarea::placeholder {
    color: rgba(220,225,255,0.32);
  }
  .fx-input:focus,
  .fx-textarea:focus {
    border-bottom-color: rgba(123,92,255,0.9);
    box-shadow: 0 1px 0 0 rgba(123,92,255,0.6), 0 8px 18px -8px rgba(123,92,255,0.45);
  }
  .fx-textarea {
    resize: vertical;
    min-height: 92px;
    line-height: 1.55;
  }

  /* Futuristic toggle (checkbox) */
  .fx-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(220,225,255,0.75);
    transition: color .25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .fx-toggle:last-of-type { border-bottom: none; }
  .fx-toggle:hover { color: white; }
  .fx-toggle-track {
    position: relative;
    width: 46px; height: 24px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all .3s ease;
    flex-shrink: 0;
  }
  .fx-toggle-track::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #d8defb 0%, #9ba3c9 100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1), background .28s ease, box-shadow .28s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  }
  .fx-toggle.on {
    color: white;
  }
  .fx-toggle.on .fx-toggle-track {
    background: linear-gradient(135deg, rgba(123,92,255,0.55) 0%, rgba(0,240,255,0.35) 100%);
    border-color: rgba(123,92,255,0.85);
    box-shadow:
      0 0 0 1px rgba(123,92,255,0.6),
      0 0 16px rgba(123,92,255,0.55),
      inset 0 0 12px rgba(0,240,255,0.15);
  }
  .fx-toggle.on .fx-toggle-track::after {
    transform: translateX(22px);
    background: linear-gradient(180deg, #ffffff 0%, #e7e9ff 100%);
    box-shadow: 0 0 14px rgba(0,240,255,0.85), 0 2px 6px rgba(0,0,0,0.35);
  }

  /* Send CTA */
  .fx-send {
    position: relative;
    width: 100%;
    padding: 18px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(20,18,38,0.95) 0%, rgba(10,8,22,0.95) 100%);
    border: 1px solid rgba(123,92,255,0.32);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
  }
  /* Animated rotating conic border that lights up on hover */
  .fx-send::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(
      from 0deg,
      rgba(123,92,255,0) 0%,
      rgba(123,92,255,1) 22%,
      rgba(0,240,255,1) 45%,
      rgba(123,92,255,1) 68%,
      rgba(123,92,255,0) 92%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s ease;
    animation: fxRing 4s linear infinite;
    pointer-events: none;
  }
  .fx-send:hover {
    transform: translateY(-1px);
    box-shadow:
      0 18px 50px -14px rgba(123,92,255,0.55),
      0 0 0 1px rgba(123,92,255,0.55),
      inset 0 0 24px rgba(123,92,255,0.10);
    border-color: rgba(123,92,255,0.7);
  }
  .fx-send:hover::before { opacity: 1; }
  .fx-send .fx-send-arrow {
    width: 28px; height: 28px;
    border-radius: 9999px;
    background: rgba(0,240,255,0.12);
    border: 1px solid rgba(0,240,255,0.35);
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  }
  .fx-send:hover .fx-send-arrow {
    transform: translateX(3px);
    background: rgba(0,240,255,0.25);
    box-shadow: 0 0 14px rgba(0,240,255,0.7);
  }

  /* Slow bottle float */
  @keyframes vialFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
  }
  .vial-float { animation: vialFloat 6s ease-in-out infinite; }

  /* Phone input with country code */
  .fx-phone-wrap {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-top: 8px;
  }
  .fx-country {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 28px 12px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    outline: none;
    cursor: pointer;
    background-image:
      linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.55) 50%),
      linear-gradient(135deg, rgba(255,255,255,0.55) 50%, transparent 50%);
    background-position:
      calc(100% - 14px) 60%,
      calc(100% - 8px)  60%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    transition: border-color .25s ease, box-shadow .25s ease;
    flex: 0 0 auto;
  }
  .fx-country:focus {
    border-bottom-color: rgba(123,92,255,0.9);
    box-shadow: 0 1px 0 0 rgba(123,92,255,0.6);
  }
  .fx-country option {
    background: #0a0814;
    color: white;
  }
  .fx-phone-input {
    flex: 1;
    margin-top: 0 !important;
  }

  /* Rotate chevrons */
  .fx-rotate {
    width: 44px; height: 44px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(123,92,255,0.25);
    color: rgba(220,225,255,0.8);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all .25s ease;
  }
  .fx-rotate:hover {
    background: rgba(123,92,255,0.12);
    border-color: rgba(123,92,255,0.7);
    color: white;
    box-shadow: 0 0 18px rgba(123,92,255,0.45);
  }

  /* ---------- About / Services / Projects ---------- */
  .display-h {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    font-size: clamp(3rem, 12vw, 160px);
  }
  /* Liquid-glass gradient fill for big headings on dark bg */
  .display-h.glass {
    background-image: linear-gradient(180deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.55) 35%,
      rgba(180,165,255,0.55) 65%,
      rgba(255,255,255,0.4)  100%
    );
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
    filter:
      drop-shadow(0 1px 0 rgba(255,255,255,0.4))
      drop-shadow(0 12px 40px rgba(123,92,255,0.30));
  }
  /* Decorative corner orbs on About */
  .about-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(24px);
    opacity: 0.55;
    pointer-events: none;
  }
  .about-orb.tl { top: 4%;    left: 4%;   width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(123,92,255,0.85) 0%, rgba(123,92,255,0) 70%); }
  .about-orb.tr { top: 4%;    right: 4%;  width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(0,240,255,0.55)  0%, rgba(0,240,255,0)  70%); }
  .about-orb.bl { bottom: 8%; left: 6%;   width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(196,181,253,0.7) 0%, rgba(196,181,253,0) 70%); }
  .about-orb.br { bottom: 8%; right: 6%;  width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(123,92,255,0.6)  0%, rgba(123,92,255,0)  70%); }
  @keyframes orbDrift {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(20px, -14px) scale(1.08); }
  }
  .about-orb.tl, .about-orb.br { animation: orbDrift 11s ease-in-out infinite; }
  .about-orb.tr, .about-orb.bl { animation: orbDrift 13s ease-in-out infinite reverse; }

  /* Animated paragraph — each char fades from 0.2 to 1 in band based on
     intersection ratio. We use a scroll-driven approach with IntersectionObserver
     plus a per-character CSS variable. Implemented in JS below. */
  .about-para {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #D7E2EA;
    line-height: 1.55;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
  }
  .about-para .ch {
    display: inline;
    opacity: var(--o, 0.2);
    transition: opacity .25s linear;
  }

  /* Contact pill — violet/cyan gradient core, white outline, magnetic-style hover */
  .contact-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(123deg, #18011F 7%, #5B1E9E 37%, #7B5CFF 72%, #00C7E0 100%);
    border: none;
    outline: 2px solid rgba(255,255,255,0.7);
    outline-offset: -4px;
    cursor: pointer;
    box-shadow:
      0 4px 14px rgba(123,92,255,0.45),
      inset 4px 4px 14px rgba(123,92,255,0.35),
      inset -4px -4px 14px rgba(0,200,224,0.18);
    transition: transform .25s ease, box-shadow .3s ease, outline-color .3s ease;
  }
  .contact-pill:hover {
    transform: translateY(-2px);
    box-shadow:
      0 16px 40px -8px rgba(123,92,255,0.65),
      inset 4px 4px 14px rgba(123,92,255,0.45);
    outline-color: white;
  }

  /* Services list — light cards on the dark canvas, with violet hover line */
  .svc-row {
    display: grid;
    grid-template-columns: minmax(120px, 18%) 1fr;
    gap: 28px;
    align-items: start;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    transition: background .35s ease;
  }
  .svc-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .svc-row:hover { background: rgba(123,92,255,0.04); }
  .svc-num {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 9vw, 140px);
    line-height: 0.9;
    background-image: linear-gradient(180deg, #ffffff 0%, rgba(180,165,255,0.55) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .svc-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(1rem, 2.1vw, 2rem);
    color: white;
    margin-bottom: 14px;
  }
  .svc-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.65;
    max-width: 680px;
    color: rgba(255,255,255,0.55);
    font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  }

  /* Sticky-stack project cards */
  .proj-card {
    background: linear-gradient(180deg, rgba(20,18,38,0.85) 0%, rgba(10,8,22,0.92) 100%);
    border: 1px solid rgba(123,92,255,0.30);
    border-radius: 48px;
    padding: clamp(20px, 2.4vw, 40px);
    box-shadow:
      0 30px 80px -20px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .proj-cat {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(0,240,255,0.75);
  }
  .proj-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: white;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    letter-spacing: -0.01em;
    line-height: 1.05;
  }
  .live-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 22px;
    border-radius: 9999px;
    border: 1.5px solid rgba(215,226,234,0.7);
    color: #D7E2EA;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    transition: all .25s ease;
  }
  .live-pill:hover {
    background: rgba(215,226,234,0.12);
    border-color: white;
    color: white;
  }
  .proj-img-wrap {
    border-radius: 36px;
    overflow: hidden;
    background: #0a0814;
    position: relative;
  }
  .proj-img-wrap {
    background: #0a0a14;
    position: relative;
  }
  /* Hide the blurred backdrop layer — we now stretch the foreground to fill */
  .proj-img-wrap .proj-bg {
    display: none;
  }
  /* Image / video fills the slot completely with the product centered */
  .proj-img-wrap .proj-fg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .proj-img-wrap > video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .fx-rotate:hover {
    background: rgba(123,92,255,0.12);
    border-color: rgba(123,92,255,0.7);
    color: white;
    box-shadow: 0 0 18px rgba(123,92,255,0.45);
  }

  /* ---------- Vial player: chapter Ken-Burns ---------- */
  @keyframes kenBurns {
    from { transform: scale(1.03) translateX(-0.5%); }
    to   { transform: scale(1.12) translateX(0.5%); }
  }
  .ken-burns {
    animation: kenBurns 3.1s ease-out forwards;
    transform-origin: 50% 55%;
  }

  /* ---------- Entrance ---------- */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .rise { opacity: 0; animation: riseIn 900ms cubic-bezier(.2,.7,.2,1) forwards; }
  .rise-1 { animation-delay: .05s; }
  .rise-2 { animation-delay: .15s; }
  .rise-3 { animation-delay: .30s; }
  .rise-4 { animation-delay: .45s; }
  .rise-5 { animation-delay: .60s; }
  .rise-6 { animation-delay: .80s; }

  @keyframes softPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.92); } }
  .pulse-dot { animation: softPulse 2s ease-in-out infinite; }

  a, button { transition: color .25s ease, background-color .25s ease, transform .25s ease, opacity .25s ease, border-color .25s ease; }

  /* ---------- Partnerships section ---------- */
  .pn-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  @media (max-width: 720px) {
    .pn-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  .pn-stat {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 28px;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .pn-stat-num {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.04em;
    font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    line-height: 1;
    color: #fff;
  }
  .pn-stat-label {
    color: rgba(220,225,255,0.55);
    font-size: 0.95rem;
    line-height: 1.35;
    max-width: 14ch;
  }

  .pn-quote {
    position: relative;
    font-family: 'Newsreader', 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    line-height: 1.35;
    color: rgba(232,232,240,0.92);
    padding-left: 28px;
    max-width: 1100px;
  }
  .pn-quote::before {
    content: "";
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg,
      rgba(196,181,253,0.0) 0%,
      rgba(196,181,253,0.55) 20%,
      rgba(196,181,253,0.55) 80%,
      rgba(196,181,253,0.0) 100%);
  }

  /* Gradient-bordered cards */
  @property --pn-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes pn-spin { to { --pn-angle: 360deg; } }
  @keyframes pn-pulse {
    0%, 100% { opacity: 0.30; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.04); }
  }

  .pn-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  @media (max-width: 1080px) {
    .pn-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 560px) {
    .pn-cards { grid-template-columns: 1fr; }
  }
  .pn-card {
    position: relative;
    border-radius: 22px;
    padding: 22px 22px 26px;
    background: transparent;
    min-height: 230px;
    isolation: isolate;
  }
  /* Opaque card surface — sits on top of the glow so glow only shows OUTSIDE */
  .pn-card .pn-surface {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #0a0a14;
    z-index: 0;
    pointer-events: none;
  }
  .pn-card .pn-body {
    position: relative;
    z-index: 1;
  }
  /* Animated conic-gradient stroke (sits on top of the surface) */
  .pn-card::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(
      from var(--pn-angle),
      var(--c1, #6D28D9),
      var(--c2, #C4B5FD),
      var(--c3, #8B5CF6),
      var(--c2, #C4B5FD),
      var(--c1, #6D28D9)
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pn-spin 6s linear infinite;
  }
  /* Animated rotating outer glow — sits BEHIND the opaque surface,
     so it only appears in the area outside the card */
  .pn-card::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 36px;
    background: conic-gradient(
      from var(--pn-angle),
      var(--c1, #6D28D9),
      var(--c2, #C4B5FD),
      var(--c3, #8B5CF6),
      var(--c2, #C4B5FD),
      var(--c1, #6D28D9)
    );
    filter: blur(22px);
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
    animation: pn-spin 6s linear infinite, pn-pulse 5s ease-in-out infinite;
  }
  .pn-card.is-feature::after {
    opacity: 0.55;
    filter: blur(34px);
  }
  .pn-card .pn-icon {
    width: 26px; height: 26px;
    color: rgba(232,232,240,0.85);
    margin-bottom: 36px;
  }
  .pn-card .pn-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .pn-card .pn-desc {
    color: rgba(220,225,255,0.6);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  /* ---------- Contact section ---------- */
  .ct-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(196,181,253,0.85);
  }
  .ct-h {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: -0.025em;
    line-height: 1.02;
  }
  .ct-sub {
    color: rgba(220,225,255,0.62);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 46ch;
  }
  .ct-list { display: flex; flex-direction: column; gap: 14px; }
  .ct-list li {
    display: flex; align-items: center; gap: 14px;
    color: #fff; font-weight: 600; font-size: 1.02rem;
  }
  .ct-check {
    width: 22px; height: 22px; flex: 0 0 auto;
    border-radius: 9999px;
    border: 1.5px solid rgba(196,181,253,0.55);
    display: inline-grid; place-items: center;
    color: rgba(196,181,253,0.9);
  }
  .ct-info-h {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
  }
  .ct-info-row {
    color: rgba(220,225,255,0.78);
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .ct-info-row b {
    color: #fff;
    font-weight: 600;
    margin-right: 4px;
  }

  /* Form */
  .ct-form { display: flex; flex-direction: column; gap: 18px; }
  .ct-label {
    color: rgba(220,225,255,0.78);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
  }
  .ct-input, .ct-select, .ct-textarea {
    width: 100%;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 14px 22px;
    outline: none;
    transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
    -webkit-appearance: none; appearance: none;
  }
  .ct-input, .ct-select { border-radius: 9999px; height: 52px; }
  .ct-textarea {
    border-radius: 22px;
    min-height: 160px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
  }
  .ct-input::placeholder, .ct-textarea::placeholder { color: rgba(220,225,255,0.4); }
  .ct-input:focus, .ct-select:focus, .ct-textarea:focus {
    border-color: rgba(167,139,250,0.65);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 0 4px rgba(139,92,246,0.12);
  }
  .ct-select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23c4b5fd' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 22px center;
    padding-right: 48px;
    color: rgba(220,225,255,0.6);
  }
  .ct-select.has-value { color: #fff; }
  .ct-select option { background: #0a0a14; color: #fff; }

  /* Phone field — country dial-code + number, pill-shaped composite */
  .ct-phone {
    position: relative;
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: stretch;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 9999px;
    height: 52px;
    transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
  }
  .ct-phone:focus-within {
    border-color: rgba(167,139,250,0.65);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 0 4px rgba(139,92,246,0.12);
  }
  .ct-phone-cc {
    /* the actual select sits invisible above the dial-code label so the
       native dropdown still opens on click */
    position: absolute;
    inset: 0 auto 0 0;
    width: 112px;
    height: 100%;
    background: transparent;
    color: transparent;
    border: 0;
    outline: none;
    padding: 0 22px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    -webkit-appearance: none; appearance: none;
    z-index: 2;
  }
  .ct-phone-cc option { background: #0a0a14; color: #fff; }
  .ct-phone-dial {
    grid-column: 1 / 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 22px;
    padding-right: 4px;
    border-right: 1px solid rgba(255,255,255,0.10);
    pointer-events: none;
    position: relative;
  }
  .ct-phone-dial::after {
    content: '';
    width: 8px; height: 8px;
    border-right: 1.5px solid rgba(196,181,253,0.9);
    border-bottom: 1.5px solid rgba(196,181,253,0.9);
    transform: rotate(45deg) translateY(-2px);
    margin-left: 4px;
  }
  .ct-phone-num {
    grid-column: 2 / 3;
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0 22px;
  }
  .ct-phone-num::placeholder { color: rgba(220,225,255,0.4); }

  .ct-terms {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(220,225,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .ct-terms input[type=checkbox] {
    appearance: none; -webkit-appearance: none;
    width: 18px; height: 18px; margin-top: 3px;
    border: 1.5px solid rgba(196,181,253,0.55);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
    position: relative;
    transition: all .2s ease;
  }
  .ct-terms input[type=checkbox]:checked {
    background: rgba(139,92,246,0.9);
    border-color: rgba(139,92,246,0.9);
  }
  .ct-terms input[type=checkbox]:checked::after {
    content: '';
    position: absolute;
    left: 4px; top: 0px;
    width: 5px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .ct-terms a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(196,181,253,0.5); }
  .ct-terms a:hover { text-decoration-color: rgba(196,181,253,0.9); }

  .ct-submit {
    align-self: flex-end;
    background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(196,181,253,0.35);
    padding: 12px 32px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px -8px rgba(139,92,246,0.5);
    transition: transform .2s ease, box-shadow .25s ease, filter .2s ease;
  }
  .ct-submit:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 14px 36px -8px rgba(139,92,246,0.7); }
  .ct-submit:active { transform: translateY(0); }

  /* ---------- Footer ---------- */
  .ft {
    background: #050508;
    color: rgba(220,225,255,0.55);
    padding: 32px 20px 36px;
  }
  .ft-line {
    height: 1px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(196,181,253,0.18) 50%,
      transparent 100%);
  }
  .ft-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .ft-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .ft-mark {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.16em;
  }
  .ft-sep { color: rgba(196,181,253,0.5); }
  .ft-name { color: rgba(220,225,255,0.75); }
  .ft-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: rgba(220,225,255,0.5);
  }

  /* ---------- Brand (header logo) ---------- */
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    line-height: 1;
  }
  .brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.04);
    isolation: isolate;
    overflow: hidden;
  }
  /* Violet gradient stroke around the mark */
  .brand-mark::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg,
      rgba(221,214,254,0.95) 0%,
      rgba(139,92,246,0.95) 50%,
      rgba(109,40,217,0.95) 100%);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  /* Faint inner glow on hover */
  .brand:hover .brand-mark {
    background: rgba(139,92,246,0.10);
  }
  .brand-mark-text {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #fff;
    background: linear-gradient(180deg, #fff 0%, #DDD6FE 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .brand-sep {
    width: 1px;
    height: 22px;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(196,181,253,0.45) 50%,
      transparent 100%);
  }
  .brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.005em;
    color: rgba(232,232,240,0.95);
    white-space: nowrap;
  }
  .brand:hover .brand-name { color: #fff; }

  @media (max-width: 520px) {
    .brand-sep, .brand-name { display: none; }
  }

  /* ---------- Mobile menu overlay ---------- */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 24px;
  }
  .mobile-menu-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s ease, transform .4s cubic-bezier(.2,.7,.2,1), color .25s ease;
    position: relative;
  }
  .mobile-menu-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,181,253,0.7), transparent);
    transition: width .35s ease;
  }
  .mobile-menu.is-open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu-link:hover::after,
  .mobile-menu-link:active::after { width: 80%; }

  /* ---------- Mobile polish (≤ 768px) ---------- */
  @media (max-width: 768px) {
    /* Reduce vertical padding on all the big sections (inline-styled) */
    section[style*="padding-top: 120px"] { padding-top: 72px !important; }
    section[style*="padding-top: 140px"] { padding-top: 72px !important; }
    section[style*="padding-bottom: 120px"] { padding-bottom: 72px !important; }
    section[style*="padding-bottom: 140px"] { padding-bottom: 80px !important; }
    section[style*="padding-bottom: 160px"] { padding-bottom: 80px !important; }
    section[style*="padding-top: 80px"]  { padding-top: 56px !important; }
    /* About section uses min-height: 100vh — collapse it on mobile */
    section[style*="min-height: 100vh"] { min-height: 0 !important; }

    /* Section headers */
    .display-h { font-size: clamp(2.4rem, 12vw, 4rem); }

    /* About paragraph: more comfortable on small screens */
    .about-para { font-size: 1.05rem; line-height: 1.55; }

    /* Services list: stack number above title, slim padding */
    .svc-row {
      grid-template-columns: 1fr;
      gap: 4px;
      padding: 22px 0 26px;
    }
    .svc-num {
      font-size: 3.6rem;
      line-height: 0.95;
    }
    .svc-name { font-size: 1.05rem; }
    .svc-desc { font-size: 0.95rem; }

    /* Configurator panel — tighter */
    .fx-panel { padding: 18px !important; }

    /* Partnerships */
    .pn-quote {
      padding-left: 18px;
      font-size: clamp(1.15rem, 5vw, 1.6rem);
    }
    .pn-stat { padding: 22px 20px; min-height: 132px; }
    .pn-stat-num { font-size: 2.4rem; }
    .pn-stat-label { font-size: 0.88rem; }
    .pn-card { min-height: 210px; padding: 20px 20px 22px; }

    /* Contact form */
    .ct-h { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
    .ct-sub { font-size: 0.95rem; }
    .ct-input, .ct-select { padding: 12px 18px; height: 48px; }
    .ct-textarea { padding: 12px 18px; min-height: 140px; }
    .ct-phone { grid-template-columns: 92px 1fr; height: 48px; }
    .ct-phone-cc { width: 92px; padding: 0 16px; }
    .ct-phone-dial { padding-left: 16px; font-size: 0.92rem; }
    .ct-phone-num { padding: 0 16px; }
    .ct-submit { align-self: stretch; padding: 14px 24px; }
    .ct-info-row { word-break: break-word; }
    .ct-info-h { font-size: 1.2rem; }

    /* Projects: drop the sticky stack on mobile and give each card breathing room */
    .proj-stack {
      position: static !important;
      height: auto !important;
      margin-bottom: 28px;
    }
    .proj-stack:last-child { margin-bottom: 0; }
    .proj-card {
      transform: none !important;
    }

    /* Footer */
    .ft-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .ft-meta { font-size: 11px; }
  }

  @media (max-width: 420px) {
    /* Even tighter for very small phones */
    .display-h { font-size: clamp(2rem, 13vw, 3.2rem); }
    .ct-h { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    .pn-cards { gap: 14px; }
  }

  /* ---------- Tweakable: mood preset (swaps accent palette) ---------- */
  body[data-mood="emerald"] .liquid-glass-purple {
    background-image: linear-gradient(180deg,
      rgba(209,250,229,0.98) 0%,
      rgba(110,231,183,0.95) 25%,
      rgba(16,185,129,0.92) 55%,
      rgba(4,120,87,0.88) 100%);
  }
  body[data-mood="sunrise"] .liquid-glass-purple {
    background-image: linear-gradient(180deg,
      rgba(254,243,199,0.98) 0%,
      rgba(252,211,77,0.95) 25%,
      rgba(245,158,11,0.92) 55%,
      rgba(180,83,9,0.88) 100%);
  }
  body[data-mood="emerald"] .ct-submit {
    background: linear-gradient(180deg, #10B981 0%, #047857 100%);
    box-shadow: 0 10px 30px -8px rgba(16,185,129,0.5);
    border-color: rgba(110,231,183,0.4);
  }
  body[data-mood="emerald"] .ct-submit:hover { box-shadow: 0 14px 36px -8px rgba(16,185,129,0.7); }
  body[data-mood="sunrise"] .ct-submit {
    background: linear-gradient(180deg, #F59E0B 0%, #B45309 100%);
    box-shadow: 0 10px 30px -8px rgba(245,158,11,0.5);
    border-color: rgba(252,211,77,0.45);
  }
  body[data-mood="sunrise"] .ct-submit:hover { box-shadow: 0 14px 36px -8px rgba(245,158,11,0.75); }

  body[data-mood="emerald"] .about-orb.tl,
  body[data-mood="emerald"] .about-orb.br {
    background: radial-gradient(circle, rgba(16,185,129,0.85) 0%, rgba(16,185,129,0) 70%);
  }
  body[data-mood="emerald"] .about-orb.tr {
    background: radial-gradient(circle, rgba(94,234,212,0.55) 0%, rgba(94,234,212,0) 70%);
  }
  body[data-mood="emerald"] .about-orb.bl {
    background: radial-gradient(circle, rgba(167,243,208,0.7) 0%, rgba(167,243,208,0) 70%);
  }
  body[data-mood="sunrise"] .about-orb.tl,
  body[data-mood="sunrise"] .about-orb.br {
    background: radial-gradient(circle, rgba(245,158,11,0.85) 0%, rgba(245,158,11,0) 70%);
  }
  body[data-mood="sunrise"] .about-orb.tr {
    background: radial-gradient(circle, rgba(251,191,36,0.55) 0%, rgba(251,191,36,0) 70%);
  }
  body[data-mood="sunrise"] .about-orb.bl {
    background: radial-gradient(circle, rgba(254,215,170,0.7) 0%, rgba(254,215,170,0) 70%);
  }

  /* Partnerships conic-rotating cards — reassign their --c1/c2/c3 vars at body level */
  body[data-mood="emerald"] .pn-card {
    --c1: #047857 !important;
    --c2: #6EE7B7 !important;
    --c3: #10B981 !important;
  }
  body[data-mood="sunrise"] .pn-card {
    --c1: #B45309 !important;
    --c2: #FCD34D !important;
    --c3: #F59E0B !important;
  }

  /* Brand wordmark gradient text + stroke */
  body[data-mood="emerald"] .brand-mark-text {
    background: linear-gradient(180deg, #fff 0%, #6EE7B7 100%);
    -webkit-background-clip: text; background-clip: text;
  }
  body[data-mood="sunrise"] .brand-mark-text {
    background: linear-gradient(180deg, #fff 0%, #FCD34D 100%);
    -webkit-background-clip: text; background-clip: text;
  }
  body[data-mood="emerald"] .brand-mark::before {
    background: linear-gradient(135deg,
      rgba(167,243,208,0.95) 0%,
      rgba(16,185,129,0.95) 50%,
      rgba(4,120,87,0.95) 100%);
  }
  body[data-mood="sunrise"] .brand-mark::before {
    background: linear-gradient(135deg,
      rgba(254,215,170,0.95) 0%,
      rgba(245,158,11,0.95) 50%,
      rgba(180,83,9,0.95) 100%);
  }

  /* Section radial wash (the soft violet glow behind big sections) */
  body[data-mood="emerald"] section[style*="rgba(139,92,246,0.10)"],
  body[data-mood="sunrise"] section[style*="rgba(139,92,246,0.10)"] {
    /* the inline radial-gradient stays; CSS can't easily override inline style.
       Instead, layer a soft wash via :after below. */
  }

  /* ---------- Tweakable: density (compact / regular / spacious) ---------- */
  body[data-density="compact"] section[style*="padding-top: 120px"]    { padding-top: 72px    !important; }
  body[data-density="compact"] section[style*="padding-top: 140px"]    { padding-top: 80px    !important; }
  body[data-density="compact"] section[style*="padding-bottom: 120px"] { padding-bottom: 72px !important; }
  body[data-density="compact"] section[style*="padding-bottom: 140px"] { padding-bottom: 80px !important; }
  body[data-density="compact"] section[style*="padding-bottom: 160px"] { padding-bottom: 96px !important; }

  body[data-density="spacious"] section[style*="padding-top: 120px"]    { padding-top: 180px    !important; }
  body[data-density="spacious"] section[style*="padding-top: 140px"]    { padding-top: 200px    !important; }
  body[data-density="spacious"] section[style*="padding-bottom: 120px"] { padding-bottom: 180px !important; }
  body[data-density="spacious"] section[style*="padding-bottom: 140px"] { padding-bottom: 200px !important; }
  body[data-density="spacious"] section[style*="padding-bottom: 160px"] { padding-bottom: 220px !important; }
