/* ==========================================================================
   InterSemester — Umano Design Studio Animations & Architecture
   Exact Physics, Scroll-Driven 3D Perspective Tilt, Sticky Word-by-Word
   Kinetic Illumination, Horizontal Cards Track & Tactile Pill Transitions.
   ========================================================================== */

:root {
  /* Signature Stone/Cream Palette (Exact Umano Canvas) */
  --color-accent: #140906;
  --color-accent-hover: #2A1711;
  --color-accent-subtle: rgba(20, 9, 6, 0.08);
  
  --color-orange: #FA5A36;
  --color-orange-hover: #E04826;
  --color-orange-subtle: rgba(250, 90, 54, 0.1);
  
  --color-ink-dark: #140906;
  --color-black: #0a0d12;
  --color-text-body: #414651;
  --color-text-muted: #535862;
  --color-text-dim: #D5D7DA;

  --color-canvas: #FAF9F6;
  --color-cream: #EDE7DB;
  --color-sand: #D6C9B4;
  --color-hero-bg: #FAF9F6;
  --color-nav-bg: #F0F0F0;
  --color-border: #E5E7EB;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Dimensions */
  --max-width: 1200px;
  --radius-pill: 999px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-phone: 40px;

  /* Shadows */
  --shadow-nav: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
  --shadow-phone: 0 35px 80px -15px rgba(20, 9, 6, 0.25), 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --trans-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-sand);
}

body.site-body {
  background-color: var(--color-sand);
  color: var(--color-ink-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden !important;
  height: 100vh;
}

/* ==========================================================================
   CUSTOM CURSOR (UMANO SIGNATURE INNER DOT + TRAILING FOLLOWER RING)
   ========================================================================== */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #140906;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, background-color 0.2s ease, transform 0.1s ease;
  will-change: left, top, transform;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(20, 9, 6, 0.85);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, width 0.22s cubic-bezier(0.16, 1, 0.3, 1), height 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s ease, border-color 0.22s ease;
  will-change: left, top, width, height;
}

/* Active Hover State on Interactive Elements */
.custom-cursor-ring.cursor-hover {
  width: 52px;
  height: 52px;
  background-color: rgba(20, 9, 6, 0.08);
  border-color: rgba(20, 9, 6, 0.45);
}

/* Click Down Pulse */
.custom-cursor-ring.cursor-click {
  width: 26px;
  height: 26px;
  background-color: rgba(20, 9, 6, 0.15);
  border-color: #140906;
}

/* Contrast when on dark elements (White cursor on dark backgrounds) */
.custom-cursor-dot.cursor-inverted {
  background-color: #FFFFFF !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.65);
}
.custom-cursor-ring.cursor-inverted {
  border-color: rgba(255, 255, 255, 0.9) !important;
}
.custom-cursor-ring.cursor-inverted.cursor-hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: #FFFFFF !important;
}
.custom-cursor-ring.cursor-inverted.cursor-click {
  background-color: rgba(255, 255, 255, 0.38) !important;
  border-color: #FFFFFF !important;
}

/* Suppress bulky cursor ring over the floating navbar so modern hover states shine */
.umano-nav-wrapper:hover ~ .custom-cursor-ring,
.light-nav-wrapper:hover ~ .custom-cursor-ring,
body:has(.umano-navbar:hover) .custom-cursor-ring,
body:has(.light-navbar:hover) .custom-cursor-ring {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scale(0.2) !important;
}

body:has(.umano-navbar:hover) .custom-cursor-dot,
body:has(.light-navbar:hover) .custom-cursor-dot {
  opacity: 0.5 !important;
  transform: translate(-50%, -50%) scale(0.75) !important;
}

/* Hide custom cursor on mobile/touch screens */
@media (pointer: coarse), (max-width: 768px) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}

/* ==========================================================================
   EXACT UMANO INTRO LOADING ANIMATION (SOURCE-LEVEL REPLICA)
   ========================================================================== */
.umano-intro-fixed {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  background-color: var(--color-canvas);
  transition: background-color 1.3s ease, opacity 0.75s ease, visibility 0.75s ease;
  overflow: hidden;
}

.umano-intro-fixed.bg-orange {
  background-color: var(--color-canvas);
}

.umano-intro-fixed.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Headline inside Intro */
.intro-headline-container {
  text-align: center;
  padding: 20px 20px 0;
  max-width: 1100px;
  width: 100%;
  z-index: 10;
}

/* Hero Eyebrow Overline Badge */
.hero-eyebrow-wrapper {
  display: flex;
  justify-content: center;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 999px;
  background: rgba(15, 18, 22, 0.04);
  border: 1px solid rgba(15, 18, 22, 0.11);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #1F1610;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.05s, transform 0.6s ease 0.05s;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D9A76A;
  box-shadow: 0 0 6px rgba(217, 167, 106, 0.6);
}

.umano-hero-section.step-text .hero-eyebrow-badge {
  opacity: 1;
  transform: translateY(0);
}

.intro-headline-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.038em;
  color: #0F1216;
  margin: 0;
}

.intro-mask {
  display: block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
}

.intro-word-slide {
  display: inline-block;
  white-space: normal;
  transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}

@media (min-width: 640px) {
  .intro-word-slide {
    white-space: nowrap;
  }
}

.umano-hero-section.step-text .intro-word-slide,
.umano-intro-fixed.step-text .intro-word-slide {
  transform: translateY(0);
}

#introWord2,
#heroWord2 {
  transition-delay: 100ms;
}

#introWord3,
#heroWord3 {
  transition-delay: 200ms;
}

/* Kinetic Word Rotator at end of Line 2 */
.hero-word-flipper {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin-left: 8px;
  line-height: inherit;
  padding-bottom: 0.06em;
}

.hero-flipper-word {
  display: inline-block;
  color: #0F1216;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(15, 18, 22, 0.35);
  transform: translateY(0%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  will-change: transform, opacity;
}

.intro-headline-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #161A1D; /* Near-black, zero blue */
  max-width: 620px;
  margin: 14px auto 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

/* Desktop Headline Width & Spacious Layout */
@media (min-width: 861px) {
  .intro-headline-container {
    max-width: 1200px;
    padding: 0 24px 0;
  }
  .intro-headline-title {
    font-size: clamp(2.3rem, 3.4vw, 3.15rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
  }
  .intro-headline-sub {
    max-width: 580px;
    font-size: 1.08rem;
    line-height: 1.5;
    margin-top: 14px;
    color: #374151;
  }
}

.umano-hero-section.step-text .intro-headline-sub,
.umano-intro-fixed.step-text .intro-headline-sub {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Playstore Download CTA */
.hero-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.38s, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.38s;
  pointer-events: none;
  z-index: 15;
  position: relative;
}

.umano-hero-section.step-text .hero-cta-wrapper,
.umano-intro-fixed.step-text .hero-cta-wrapper {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-playstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 26px 12px 20px;
  background: #0F1216;
  color: #FFFFFF;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(15, 18, 22, 0.22), 0 3px 8px rgba(15, 18, 22, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-playstore-btn:hover {
  background: #1A1F26;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 18, 22, 0.28), 0 5px 12px rgba(15, 18, 22, 0.14);
  color: #FFFFFF;
}

.hero-playstore-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(15, 18, 22, 0.15);
}

.hero-play-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.hero-play-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.hero-play-sub {
  font-family: var(--font-mono, monospace);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-play-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}

/* Stage Anchor */
.intro-stage-anchor {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  margin-top: -22px;
  transform: translateY(max(0px, calc(100vh - 1038px)));
}

.intro-stage-content {
  position: relative;
  z-index: 2;
  width: 891px;
  height: 634px;
  margin-top: 40px;
  flex-shrink: 0;
  transform-origin: 50% 23.7%;
  transform: scale(2.8);
  transition: transform 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.intro-stage-content.zoomed-out {
  transform: scale(1);
}

/* Decorative Curved Lines & Floating Icons Behind Phone (Full Screen Width) */
.hero-deco-layer {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 634px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  overflow: visible;
}

/* Appears ONLY when headline text slides in */
.umano-hero-section.step-text .hero-deco-layer {
  opacity: 1;
  transform: scale(1);
}

.hero-deco-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Concentric Plate Badge (Matches Reference Food Badges) */
.hero-plate-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: heroFloatPlayful 4.2s ease-in-out infinite alternate;
  will-change: transform;
}

/* Outer halo ring touching the dashed curve */
.hero-plate-ring {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(217, 167, 106, 0.42);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  box-shadow: 0 0 16px rgba(217, 167, 106, 0.15);
}

/* Inner white tactile food plate */
.hero-plate-disc {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 
    0 12px 24px -2px rgba(140, 95, 45, 0.16),
    0 3px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  user-select: none;
}

/* Cute Mini Floating Tag (Like the smiley tag in reference) */
.hero-mini-tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px -2px rgba(140, 95, 45, 0.14), 0 2px 5px rgba(0, 0, 0, 0.04);
  font-size: 1.15rem;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  animation: heroFloatPlayful 3.6s ease-in-out infinite alternate;
  user-select: none;
  z-index: 2;
}

/* Little Botanical Sprout Doodle */
.hero-sprout-doodle {
  position: absolute;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  pointer-events: none;
  z-index: 1;
  animation: heroFloatPlayful 4.8s ease-in-out infinite alternate;
}

/* Organic Floating Badge Token (Random Sized Badges) */
.hero-float-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 
    0 10px 22px -2px rgba(140, 95, 45, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 1);
  line-height: 1;
  user-select: none;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  animation: heroFloatPlayful 4.4s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 2;
}

.hero-size-lg {
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.hero-size-md {
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
}

.hero-size-sm {
  width: 34px;
  height: 34px;
  font-size: 1.05rem;
}

/* Tilted Saturated Blue Pills */
.hero-float-pill.blue {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 13px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: #2563EB;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px -2px rgba(37, 99, 235, 0.38), 0 2px 5px rgba(0, 0, 0, 0.06);
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  animation: heroFloatPlayful 3.8s ease-in-out infinite alternate;
  user-select: none;
  white-space: nowrap;
  z-index: 2;
}

/* Golden Anchor Beads */
.hero-float-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D9A76A;
  box-shadow: 0 1px 6px rgba(217, 167, 106, 0.6);
  transform: translate(-50%, -50%);
  animation: heroFloatPlayful 4.6s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 1;
}

.hero-dot-lg {
  width: 9px !important;
  height: 9px !important;
}

/* Playful Doodle Sparkles */
.hero-sparkle-doodle {
  position: absolute;
  color: #D9A76A;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  animation: heroFloatPlayful 5s ease-in-out infinite alternate;
  z-index: 1;
}

/* Micro-float animation that strictly preserves center translate(-50%, -50%) */
@keyframes heroFloatPlayful {
  0% {
    transform: translate(-50%, -50%) translateY(0px) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translate(-50%, -50%) translateY(-5px) rotate(calc(var(--rot, 0deg) + 1.5deg));
  }
  100% {
    transform: translate(-50%, -50%) translateY(-10px) rotate(calc(var(--rot, 0deg) - 1deg));
  }
}

/* Hand Image */
.intro-hand-phone-img {
  position: absolute;
  top: -31px;
  left: -85px;
  width: 1061px !important;
  max-width: none !important;
  height: 707px !important;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s ease 0.25s;
  user-select: none;
  z-index: 2;
}

.intro-stage-content.zoomed-out .intro-hand-phone-img {
  opacity: 1;
}

/* Phone Status Bar */
.intro-phone-statusbar {
  position: absolute;
  left: 321px;
  top: 54px;
  width: 249px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 0.7s ease 0.4s;
  pointer-events: none;
  z-index: 20;
}

.intro-stage-content.zoomed-out .intro-phone-statusbar {
  opacity: 1;
}

.intro-status-clock {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10.5px;
  color: #000000;
}

.intro-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

/* The Notification Card */
.intro-notif-pill {
  position: absolute;
  left: 340px;
  top: 115px;
  width: 211px;
  height: 52px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  z-index: 30;
  opacity: 0;
  transform: translateY(8px);
  transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease, transform 0.45s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.intro-notif-pill.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-notif-pill.expanded {
  height: 442px;
}

.notif-pill-header {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-shrink: 0;
}

.notif-pill-badge {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.notif-badge-logo {
  width: 17px;
  height: 19px;
  object-fit: contain;
  display: block;
}

.notif-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  line-height: 1.2;
}

.notif-sub-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 7.5px;
  color: #535862;
  line-height: 11px;
  letter-spacing: 0.01em;
}

.notif-main-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  color: #0a0d12;
  line-height: 13px;
  margin-top: 0px;
  word-break: normal;
}

.notif-card-preview {
  flex: 1;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #FAF9F5;
  display: none;
}

.intro-notif-pill.expanded .notif-card-preview {
  display: block;
}

.notif-preview-img,
.notif-preview-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 10px;
  display: block;
  background: #FAF9F5;
}

/* Skip Button */
.intro-skip-btn {
  position: fixed;
  top: 24px;
  right: 28px;
  background: rgba(20, 9, 6, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #140906;
  border: 1px solid rgba(20, 9, 6, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 100000;
}

.intro-skip-btn:hover {
  background: #140906;
  color: #FFFFFF;
  border-color: #140906;
  transform: scale(1.04);
}

.intro-skip-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   UMANO FLOATING PILL NAVIGATION (SMOOTH SCROLL DYNAMICS)
   ========================================================================== */
.umano-nav-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  pointer-events: none;
  transform: translateY(-120px);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.umano-nav-wrapper.visible {
  transform: translateY(0);
  opacity: 1;
}

.umano-navbar {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 56px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  white-space: nowrap;
  width: auto;
  max-width: fit-content;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.35s ease,
              width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width, transform, background-color, border-color, box-shadow;
}

.umano-navbar:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   THEME 1: DEFAULT & ON LIGHT BG → DARK FROSTED GLASS
   ========================================================================== */
.umano-navbar,
.umano-navbar.on-light-bg {
  background: rgba(14, 16, 20, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #FFFFFF;
}

.umano-navbar.on-light-bg .brand-wordmark,
.umano-navbar .brand-wordmark {
  color: #FFFFFF;
}

.umano-navbar.on-light-bg .brand-logo-badge,
.umano-navbar .brand-logo-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.umano-navbar.on-light-bg .brand-logo-img,
.umano-navbar .brand-logo-img {
  filter: brightness(0) invert(1);
}

.umano-navbar.on-light-bg .umano-link,
.umano-navbar .umano-link {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.umano-navbar.on-light-bg .umano-link:hover,
.umano-navbar .umano-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.umano-navbar.on-light-bg .umano-link:active,
.umano-navbar .umano-link:active {
  transform: translateY(0) scale(0.96);
  background: rgba(255, 255, 255, 0.2);
}

.umano-navbar.on-light-bg .umano-link.active,
.umano-navbar .umano-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.umano-navbar.on-light-bg .nav-progress-dot,
.umano-navbar .nav-progress-dot {
  background: rgba(255, 255, 255, 0.3);
}

.umano-navbar.on-light-bg .nav-progress-dot.active,
.umano-navbar .nav-progress-dot.active {
  background: #FFFFFF;
}

.umano-navbar.on-light-bg .btn-umano-cta,
.umano-navbar .btn-umano-cta {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.umano-navbar.on-light-bg .btn-umano-cta:hover,
.umano-navbar .btn-umano-cta:hover {
  background: #FFFFFF;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.umano-navbar.on-light-bg .btn-umano-cta:active,
.umano-navbar .btn-umano-cta:active {
  transform: translateY(0) scale(0.97);
}

.umano-navbar.on-light-bg .umano-mobile-btn,
.umano-navbar .umano-mobile-btn {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.umano-navbar.on-light-bg .umano-mobile-btn span,
.umano-navbar .umano-mobile-btn span {
  background: #FFFFFF;
}

/* ==========================================================================
   THEME 2: ON DARK BG → LIGHT FROSTED GLASS
   ========================================================================== */
.umano-navbar.on-dark-bg {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

.umano-navbar.on-dark-bg .brand-wordmark {
  color: #FFFFFF;
}

.umano-navbar.on-dark-bg .brand-logo-badge {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.umano-navbar.on-dark-bg .brand-logo-img {
  filter: none;
}

.umano-navbar.on-dark-bg .umano-link {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.umano-navbar.on-dark-bg .umano-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.umano-navbar.on-dark-bg .umano-link:active {
  transform: translateY(0) scale(0.96);
  background: rgba(255, 255, 255, 0.25);
}

.umano-navbar.on-dark-bg .umano-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

.umano-navbar.on-dark-bg .nav-progress-dot {
  background: rgba(255, 255, 255, 0.35);
}

.umano-navbar.on-dark-bg .nav-progress-dot.active {
  background: #FFFFFF;
}

.umano-navbar.on-dark-bg .btn-umano-cta {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.umano-navbar.on-dark-bg .btn-umano-cta:hover {
  background: #FFFFFF;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4), 0 2px 6px rgba(0, 0, 0, 0.25);
}

.umano-navbar.on-dark-bg .btn-umano-cta:active {
  transform: translateY(0) scale(0.97);
}

.umano-navbar.on-dark-bg .umano-mobile-btn {
  background: rgba(255, 255, 255, 0.92);
  border: none;
}

.umano-navbar.on-dark-bg .umano-mobile-btn span {
  background: #000000;
}

.umano-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.brand-logo-img {
  width: 18px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: filter 0.35s ease;
}

.brand-monogram {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.8rem;
}

.brand-wordmark {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}

.brand-wordmark strong {
  font-weight: 800;
}

/* Center Container with smooth grid width animation */
.umano-nav-center {
  display: grid;
  grid-template-columns: 1fr;
  transition: grid-template-columns 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.umano-nav-center-inner {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 0;
  transition: opacity 0.3s ease;
}

/* Compact Mode (Top of Hero when unhovered) */
.umano-navbar.mode-compact .umano-nav-center {
  grid-template-columns: 0fr;
}

.umano-navbar.mode-compact .umano-nav-center-inner {
  opacity: 0;
  pointer-events: none;
}

/* Hover expands compact navbar smoothly */
.umano-navbar.mode-compact:hover .umano-nav-center {
  grid-template-columns: 1fr;
}

.umano-navbar.mode-compact:hover .umano-nav-center-inner {
  opacity: 1;
  pointer-events: auto;
}

/* Standard Links Mode */
.umano-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
  white-space: nowrap;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.umano-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.umano-nav-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   CARD PROGRESS MODE (EXACT COMPACT UMANO FLOATING PILL)
   ========================================================================== */
.umano-navbar.mode-progress {
  height: 62px;
  padding: 0 8px 0 22px;
  gap: 22px;
  border-radius: 999px;
}

.umano-navbar.mode-progress .umano-nav-links {
  display: none !important;
}

.umano-navbar.mode-progress .umano-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.umano-navbar.mode-progress .umano-nav-progress {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  position: static !important;
  transform: none !important;
  padding: 0 4px;
  background: transparent;
  gap: 8px;
  align-items: center;
}

.umano-navbar.mode-progress .nav-progress-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s ease, background-color 0.25s ease;
}

.umano-navbar.mode-progress .nav-progress-dot.active {
  width: 28px;
  height: 8px;
  border-radius: 999px;
}

.umano-navbar.mode-progress .nav-progress-dot:hover {
  opacity: 0.8;
}

.umano-navbar.mode-progress .brand-logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.umano-navbar.mode-progress .brand-logo-img {
  width: 17px;
  height: 19px;
}

.umano-navbar.mode-progress .brand-wordmark {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.umano-navbar.mode-progress .btn-umano-cta {
  height: 46px;
  padding: 0 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.umano-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-umano-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 43px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--trans-fast);
}

/* Section-Adaptive CTA Theme */
.umano-navbar.theme-orange-cta .btn-umano-cta {
  background: #000000;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-umano-cta:hover {
  background: #222222;
  transform: translateY(-1px);
}

.umano-mobile-btn {
  display: none;
  background: #000000;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  transition: transform var(--trans-fast), background-color var(--trans-fast);
}

.umano-mobile-btn:hover {
  transform: scale(1.05);
}

.umano-mobile-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 1px;
}

.umano-mobile-drawer {
  pointer-events: auto;
  display: none;
  width: 100%;
  max-width: 900px;
  background: rgba(14, 16, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 10px;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.umano-mobile-drawer.open {
  display: flex;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

.mobile-download-btn {
  display: block;
  width: 100%;
  background: #FFFFFF;
  color: #000000;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
}

/* ==========================================================================
   SECTION 1 — HERO (EXACT UMANO SCROLL-TILT & SECTION CURVATURE DYNAMICS)
   ========================================================================== */
.umano-hero-section {
  position: relative;
  background-color: var(--color-canvas);
  min-height: 100vh;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 126px;
  padding-bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: background-color 1.3s ease, margin 0.15s ease, border-radius 0.15s ease;
  will-change: background-color, margin, border-radius;
}

.umano-hero-section.bg-orange {
  background-color: var(--color-canvas);
}

.rotator-pill {
  display: inline-block;
  background: #000000;
  color: #FFFFFF;
  padding: 2px 12px;
  border-radius: 8px;
  font-weight: 700;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: transform, opacity;
}

/* ==========================================================================
   SECTION 2 — UMANO BRAND TRUST STRIP (EXACT UMANO DESIGNER TEAMS ROW)
   ========================================================================== */
.umano-strip-section {
  background: var(--color-sand);
  padding: 96px 0 108px;
  border-bottom: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 2-Column Split Presentation Layout (Left Illustration, Right Features) */
.strip-split-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.strip-split-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  pointer-events: none;
  position: relative;
}

/* Functional Storytelling Banner on Character */
.strip-story-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 9, 6, 0.09);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(20, 9, 6, 0.06);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 22px;
  pointer-events: auto;
  user-select: none;
  transition: transform 0.25s ease;
}

.strip-story-banner:hover {
  transform: translateY(-2px);
}

.strip-split-img {
  width: 100%;
  max-width: 330px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(20, 9, 6, 0.08));
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.story-tag-from {
  color: #7A6F68;
  text-decoration: line-through;
  opacity: 0.85;
}

.story-tag-arrow {
  color: #EA580C;
  font-weight: 800;
  font-size: 0.82rem;
}

.story-tag-to {
  color: #140906;
  font-weight: 800;
}

.strip-split-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.strip-kicker-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(20, 9, 6, 0.06);
  border: 1px solid rgba(20, 9, 6, 0.1);
  font-family: var(--font-display);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: #140906;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.strip-split-headline {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #140906;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 24px 0;
}

/* 2x2 Capabilities Grid */
.strip-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
  width: 100%;
}

.strip-cap-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(20, 9, 6, 0.07);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(20, 9, 6, 0.035), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.strip-cap-card:hover {
  background: #FFFFFF;
  border-color: rgba(20, 9, 6, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(20, 9, 6, 0.09);
}

.strip-cap-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.strip-cap-card:hover .strip-cap-icon-box {
  transform: scale(1.08);
}

/* Icon box accents */
.cap-timetable .strip-cap-icon-box {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
}

.cap-alerts .strip-cap-icon-box {
  background: rgba(234, 88, 12, 0.1);
  color: #EA580C;
}

.cap-assignments .strip-cap-icon-box {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.cap-batch .strip-cap-icon-box {
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

.strip-cap-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.strip-cap-title {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 700;
  color: #140906;
  line-height: 1.25;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.strip-cap-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: #5C514A;
  line-height: 1.38;
  margin: 0;
}

/* ==========================================================================
   SECTION 3 — EXACT UMANO STICKY KINETIC MANIFESTO (220VH CONTAINER)
   ========================================================================== */
.umano-manifesto-sticky-wrapper {
  position: relative;
  height: 220vh;
  background: #FFFFFF;
  margin-top: -52px;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -26px 70px rgba(20, 9, 6, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  z-index: 2;
}

.manifesto-sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.manifesto-text-box {
  width: 100%;
  max-width: 900px;
}

.manifesto-badge-row {
  margin-bottom: 28px;
}

.manifesto-kicker-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(20, 9, 6, 0.05);
  border: 1px solid rgba(20, 9, 6, 0.08);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #140906;
  text-transform: uppercase;
}

.manifesto-kinetic-words {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.035em;
  margin: 0;
}

.manifesto-kinetic-words span.word {
  display: inline-block;
  color: rgba(20, 9, 6, 0.18);
  transition: color 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  margin-right: 0.24em;
  will-change: color;
}

.manifesto-cta-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
}

.manifesto-download-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  color: #140906;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2.5px solid #140906;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.015em;
  cursor: pointer;
}

.manifesto-download-cta:hover {
  color: #EA580C;
  border-bottom-color: #EA580C;
  transform: translateX(4px);
}

.manifesto-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.manifesto-download-cta:hover .manifesto-cta-arrow {
  transform: translateX(5px);
}

/* ==========================================================================
   SECTION 4 — UMANO HORIZONTAL SCROLL TRACK (STICKY 380VH)
   ========================================================================== */
.umano-hscroll-section {
  position: relative;
  height: 520vh;
  background: var(--color-canvas);
  transition: background-color 0.3s ease;
}

.hscroll-sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  perspective: 1200px;
}

.hscroll-header {
  padding: 0 48px;
  margin-bottom: 32px;
  max-width: 700px;
  transition: opacity 0.3s ease;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(250, 90, 54, 0.08);
  border: 1px solid rgba(250, 90, 54, 0.22);
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FA5A36;
  margin-bottom: 16px;
}

.section-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FA5A36;
  box-shadow: 0 0 8px #FA5A36;
}

.cards-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  color: #0F1216;
  line-height: 1.15;
  margin: 0;
}

.hscroll-cards-track {
  display: flex;
  gap: 32px;
  padding-left: calc(50vw - 243.5px);
  padding-right: calc(50vw - 243.5px);
  width: max-content;
  will-change: transform;
}

.hscroll-card-item {
  width: 487px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: grab;
  will-change: transform, opacity;
  transform-origin: center bottom;
}

.hscroll-card-item:hover .card-visual-box {
  transform: translateY(-6px);
  box-shadow: none !important;
}

.card-visual-box {
  width: 100%;
  height: clamp(440px, 56vh, 580px);
  border-radius: 0 !important;
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-visual-box.cream-bg,
.card-visual-box.orange-subtle-bg,
.card-visual-box.dark-subtle-bg,
.card-visual-box.soft-sand-bg {
  background: transparent !important;
}

.card-visual-box:not(.zoom-card-box) img {
  width: 100%;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  filter: none !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hscroll-card-item:hover .card-visual-box:not(.zoom-card-box) img {
  transform: scale(1.02);
}

/* Card 5: Zooming Transition Card (Seamless borderless element for full-screen zoom) */
.hscroll-card-item.zoom-trigger-card {
  position: relative;
  z-index: 20;
}

.zoom-card-box {
  width: 100%;
  height: clamp(440px, 56vh, 580px);
  border-radius: 0 !important;
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  position: relative;
  transform-origin: center center;
}

.zoom-black-curtain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0B0D0F;
  opacity: 0;
  z-index: 52;
  pointer-events: none;
  will-change: opacity;
}

.zoom-emblem-wrap {
  position: relative;
  z-index: 53;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 460px;
  transform-origin: 50.1% 50.8%;
  will-change: transform;
}

.zoom-emblem-img,
.zoom-emblem-svg {
  width: 100%;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  filter: none !important;
  transform-origin: 50.1% 50.8%;
  will-change: transform;
  shape-rendering: geometricPrecision;
}

/* Full-Viewport Dark Reveal Stage (Full Height Split Screen: Left Dark, Right Light) */
.dark-reveal-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 55;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.dark-reveal-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ==========================================================================
   THE PROBLEM → SOLVED: 50/50 FULL-HEIGHT SPLIT SCREEN
   Left 50%: Dark Theme (#0B0E12) - The Problem & Authentic WhatsApp Chat
   Right 50%: Light Theme (#FAF7F2) - The Solution & InterSemester Timetable Card
   ========================================================================== */
.split-narrative-stage {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  box-sizing: border-box;
  padding: 0 24px;
}

.split-narrative-stage.full-screen-split {
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split-narrative-half {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 100px 52px 36px;
  position: relative;
  overflow: hidden;
}

/* Left Half: 100% Dark Background Edge-to-Edge */
.half-left-dark {
  background: #0B0E12;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Right Half: 100% Light Background Edge-to-Edge */
.half-right-light {
  background: #FFFFFF;
  border-left: 1px solid rgba(20, 9, 6, 0.06);
}

.split-half-inner {
  width: 100%;
  max-width: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 960px) {
  .split-narrative-stage.full-screen-split {
    grid-template-columns: 1fr;
    height: auto;
    overflow-y: auto;
  }
  .split-narrative-half {
    height: auto;
    min-height: 100vh;
    padding: 70px 24px 40px;
  }
}

.split-narrative-panel {
  border-radius: 24px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Left Panel: The Problem (Dark Theme) */
.panel-left-dark {
  background: #0E1317;
  border: 1px solid #1E2730;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Right Panel: The Solution (Light Theme) */
.panel-right-light {
  background: #FFFFFF;
  border: 1px solid #E5DFD3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.panel-header-copy {
  margin-bottom: 28px;
  text-align: left;
}

/* Senior UI/UX: Ultra-Minimal Eyebrow Badges */
.panel-badge-minimal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.badge-problem {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.52);
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.badge-solution {
  background: rgba(20, 9, 6, 0.04);
  border: 1px solid rgba(20, 9, 6, 0.08);
  color: rgba(20, 9, 6, 0.55);
}

.badge-dot-emerald {
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.35);
}

.panel-headline {
  font-family: var(--font-display);
  margin: 0 0 16px 0;
  line-height: 1.12;
}

.headline-lead {
  display: block;
  font-size: clamp(1.85rem, 2.7vw, 2.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: -0.03em;
}

.headline-quote {
  display: block;
  font-size: clamp(2.05rem, 3.1vw, 2.85rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-top: 2px;
}

/* Light Side Typography */
.headline-lead-light {
  color: rgba(20, 9, 6, 0.45);
}

.headline-quote-light {
  color: #140906;
}

.panel-subtext {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
}

.subtext-dark {
  color: rgba(255, 255, 255, 0.48);
}

.subtext-light {
  color: rgba(20, 9, 6, 0.58);
}

/* WhatsApp Unread Counter Badge */
.wa-unread-badge {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: #8696A0;
  background: rgba(37, 211, 102, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 7px 14px;
  letter-spacing: 0.01em;
}

/* Right Side Editorial Hero Illustration (hero6.png) & Live Status */
.solution-visual-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 8px;
}

.solution-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(20, 9, 6, 0.08);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(20, 9, 6, 0.06);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: #140906;
  margin-bottom: 6px;
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
  animation: pulse-live 2s infinite ease-in-out;
}

@keyframes pulse-live {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.status-pill-text strong {
  font-weight: 700;
  color: #059669;
  margin-right: 4px;
}

.solution-hero-img {
  width: 100%;
  max-width: 335px;
  height: auto;
  display: block;
  margin: 2px auto 12px;
  filter: drop-shadow(0 14px 26px rgba(20, 9, 6, 0.07));
  user-select: none;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-visual-box:hover .solution-hero-img {
  transform: translateY(-3px) scale(1.02);
}

/* Solution Verification Highlights on Light Panel */
.solution-highlights-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  color: #140906;
  background: rgba(20, 9, 6, 0.05);
  border: 1px solid rgba(20, 9, 6, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}

.chip-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
}

.wa-ticks {
  color: #53BDEB;
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: 4px;
  letter-spacing: -0.06em;
}

/* 1. Modern shadcn Chat Bubble Conversation Card (Dark Theme) */
.chaos-chat-artifact.chat-bubble-window {
  width: 100%;
  background: #090D14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.chat-bubble-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.chat-bubble-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar-stack {
  display: flex;
  align-items: center;
  margin-right: -4px;
}

.chat-mini-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  border: 2px solid #090D14;
  margin-left: -6px;
}

.chat-mini-avatar:first-child { margin-left: 0; }
.chat-mini-avatar.av-1 { background: #1E293B; color: #38BDF8; }
.chat-mini-avatar.av-2 { background: #1E293B; color: #F472B6; }
.chat-mini-avatar.av-3 { background: #2563EB; color: #FFFFFF; }

.chat-bubble-header-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.chat-header-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 650;
  color: #F1F5F9;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.chat-header-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}

.live-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: liveDotPulse 2s infinite;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.chat-action-badge {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 650;
  padding: 3px 9px;
  border-radius: 9999px;
  background: rgba(239, 68, 68, 0.12);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.25);
  letter-spacing: 0.02em;
}

.chat-bubble-body {
  padding: 12px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.chat-date-chip {
  align-self: center;
  background: rgba(255, 255, 255, 0.04);
  color: #64748B;
  font-family: var(--font-sans);
  font-size: 0.60rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-bubble-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-reveal-viewport.revealed .chat-bubble-item.msg-1 { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.dark-reveal-viewport.revealed .chat-bubble-item.msg-2 { transition-delay: 0.13s; opacity: 1; transform: translateY(0); }
.dark-reveal-viewport.revealed .chat-bubble-item.msg-3 { transition-delay: 0.21s; opacity: 1; transform: translateY(0); }
.dark-reveal-viewport.revealed .chat-bubble-item.msg-4 { transition-delay: 0.29s; opacity: 1; transform: translateY(0); }
.dark-reveal-viewport.revealed .chat-bubble-item.msg-5 { transition-delay: 0.37s; opacity: 1; transform: translateY(0); }

.chat-bubble-item.bubble-sent {
  flex-direction: row-reverse;
}

.chat-bubble-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}

.avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.avatar-fallback.rohit-bg { background: #1E293B; color: #38BDF8; border: 1px solid rgba(56, 189, 248, 0.3); }
.avatar-fallback.ananya-bg { background: #1E293B; color: #F472B6; border: 1px solid rgba(244, 114, 182, 0.3); }
.avatar-fallback.you-bg { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.2); }
.avatar-fallback.pooja-bg { background: #1E293B; color: #C084FC; border: 1px solid rgba(192, 132, 252, 0.3); }
.avatar-fallback.dev-bg { background: #1E293B; color: #FBBF24; border: 1px solid rgba(251, 191, 36, 0.3); }
.avatar-fallback.is-ai-bg { background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.2); }

.chat-bubble-content-col {
  display: flex;
  flex-direction: column;
  max-width: 82%;
}

.chat-bubble-content-col.items-end {
  align-items: flex-end;
}

.chat-sender-name {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 650;
  color: #94A3B8;
  margin-bottom: 2px;
  padding-left: 2px;
}

.chat-bubble-content-col.items-end .chat-sender-name {
  padding-left: 0;
  padding-right: 2px;
}

.chat-sender-name.is-ai-name {
  color: #34D399;
}

.chat-bubble-msg {
  font-family: var(--font-sans);
  font-size: 0.79rem;
  line-height: 1.35;
  padding: 6px 11px;
  border-radius: 12px;
  position: relative;
  word-break: break-word;
}

.chat-bubble-msg.received-msg {
  background: rgba(255, 255, 255, 0.05);
  color: #F1F5F9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.chat-bubble-msg.sent-msg {
  background: #2563EB;
  color: #FFFFFF;
  border-top-right-radius: 3px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.chat-msg-time {
  font-size: 0.58rem;
  color: #64748B;
  margin-left: 8px;
  float: right;
  margin-top: 3px;
}

.chat-msg-time.sent-time {
  color: rgba(255, 255, 255, 0.75);
}

.chat-bubble-msg.loading-msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #A7F3D0;
  padding: 5px 10px;
}

.chat-bubble-spinner {
  color: #10B981;
  flex-shrink: 0;
}

.loading-text {
  font-size: 0.72rem;
  font-style: italic;
  color: #6EE7B7;
}

.chat-bubble-footer-badge {
  margin-top: 3px;
  padding: 6px 10px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px dashed rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  color: #F87171;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* 2. Logo-Driven InterSemester Connector: [ is ] */
.transformation-conduit-vector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.45s ease 0.65s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.65s;
}

.dark-reveal-viewport.revealed .transformation-conduit-vector {
  opacity: 1;
  transform: scale(1);
}

.vector-line {
  width: 1px;
  height: 14px;
  background: #252A2F;
}

.vector-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #111418;
  border: 1px solid #252A2F;
  border-radius: 8px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.vector-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.2);
  display: block;
}

/* 3. Real InterSemester Schedule Card (Exact from user screenshot) */
.clarity-schedule-artifact.is-schedule-card {
  width: 100%;
  background: #0E1418;
  border: 1px solid #1E292F;
  border-radius: 16px;
  padding: 18px 20px 16px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  margin: 12px 0 16px;
}

.schedule-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.schedule-card-title {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: #F5F3EE;
  letter-spacing: -0.015em;
  margin: 0;
}

.schedule-day-badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: #10B981;
  background: #092B20;
  border: 1px solid #124A37;
  padding: 2px 11px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.schedule-timeline-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-slot {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.timeline-axis {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  flex-shrink: 0;
  padding-top: 1px;
}

.timeline-time {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: #64748B;
  line-height: 1;
  margin-bottom: 5px;
}

.timeline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-dot.active {
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.timeline-dot.dim {
  background: #475569;
}

.timeline-track {
  width: 1px;
  flex: 1;
  background: #233037;
  margin: 4px 0 0 0;
  min-height: 52px;
}

.timeline-card {
  flex: 1;
  background: #131A1E;
  border: 1px solid #1F2C33;
  border-left: 3.5px solid #10B981;
  border-radius: 10px;
  padding: 12px 15px;
}

.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.timeline-duration {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #64748B;
  letter-spacing: 0.02em;
}

.timeline-countdown-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  color: #F97316;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.2;
}

.timeline-subject {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 750;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 7px 0;
  line-height: 1.25;
}

.timeline-meta-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-room {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 5px;
}

.timeline-prof {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 5px;
}

.timeline-slot.next-slot {
  align-items: center;
}

.timeline-mini-strip {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 7px 12px;
  background: #12191D;
  border: 1px solid #1C272D;
  border-radius: 8px;
}

.next-pill {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  color: #64748B;
  background: #1A242A;
  padding: 1px 5px;
  border-radius: 3px;
}

.next-subject {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #94A3B8;
  margin-left: 10px;
  flex: 1;
}

.next-room {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #64748B;
}

.card-info-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  width: 100%;
  max-width: 100%;
  transition: opacity 0.3s ease;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon-svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #111111;
  stroke: currentColor;
  stroke-width: 2.2;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 450;
  color: #333333;
  line-height: 1.48;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ==========================================================================
   SECTION 5 — DARK DEMO STAGE (DIRECTLY FLOWING FROM ZOOM)
   ========================================================================== */
.section-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.umano-demo-section {
  padding: 120px 0;
  background: var(--color-canvas);
  color: var(--color-ink-dark);
  position: relative;
  z-index: 2;
  transition: background-color 0.4s ease;
}

.demo-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.demo-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 9, 6, 0.04);
  border: 1px solid rgba(20, 9, 6, 0.08);
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 22px;
  transition: all 0.2s ease;
}

.kicker-glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.kicker-pill-label {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(20, 9, 6, 0.72);
}

.demo-headline-title {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-ink-dark);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 auto 18px;
  max-width: 680px;
}

.demo-headline-title .demo-headline-accent {
  color: var(--color-ink-dark);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 800;
  background: none;
  -webkit-text-fill-color: initial;
}

.demo-headline-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 450;
  color: rgba(20, 9, 6, 0.58);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.dark-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.dark-headline-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: var(--color-ink-dark);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.dark-headline-title .dark-headline-accent {
  color: var(--color-ink-dark);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 800;
}

.dark-headline-desc {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.interactive-stage-card {
  background: #FFFFFF;
  border: 1px solid rgba(20, 9, 6, 0.08);
  box-shadow: 0 24px 64px rgba(20, 9, 6, 0.06), 0 2px 8px rgba(20, 9, 6, 0.02);
  border-radius: 36px;
  padding: 36px 36px 40px;
}

.demo-pills-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 32px;
}

.demo-pills-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 9, 6, 0.04);
  border: 1px solid rgba(20, 9, 6, 0.08);
  border-radius: 9999px;
  padding: 5px;
  gap: 4px;
  box-shadow: inset 0 1px 2px rgba(20, 9, 6, 0.03);
  max-width: 100%;
}

.demo-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 550;
  color: rgba(20, 9, 6, 0.62);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-pill-btn svg {
  color: rgba(20, 9, 6, 0.48);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.demo-pill-btn:hover {
  color: var(--color-ink-dark);
  background: rgba(20, 9, 6, 0.05);
}

.demo-pill-btn:hover svg {
  color: var(--color-ink-dark);
}

.demo-pill-btn.active {
  background: var(--color-ink-dark);
  color: #FFFFFF;
  font-weight: 650;
  box-shadow: 0 4px 14px rgba(20, 9, 6, 0.18);
}

.demo-pill-btn.active svg {
  color: #FFFFFF;
}

.pill-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 9999px;
  margin-left: 2px;
  text-transform: uppercase;
}

.demo-pill-btn.active .pill-live-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #A7F3D0;
}

.live-dot-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
  animation: pulseLiveDot 1.8s infinite;
}

.demo-pill-btn.active .live-dot-pulse {
  background: #A7F3D0;
}

@keyframes pulseLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

@media (max-width: 900px) {
  .demo-pills-bar {
    border-radius: 20px;
    flex-wrap: wrap;
    padding: 6px;
    gap: 6px;
  }
}

/* MacBook / Desktop Browser Showcase Frame (Linear / Apple Tier) */
.workspace-browser-window {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(20, 9, 6, 0.09);
  box-shadow: 0 24px 70px rgba(20, 9, 6, 0.08), 0 2px 8px rgba(20, 9, 6, 0.03);
  margin-bottom: 40px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: #F8F7F3;
  border-bottom: 1px solid rgba(20, 9, 6, 0.06);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 70px;
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.b-dot-red { background: #FF5F56; }
.b-dot-yellow { background: #FFBD2E; }
.b-dot-green { background: #27C93F; }

.app-header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.app-header-brand {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-ink-dark);
  letter-spacing: 0.02em;
}

.browser-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: #10B981;
  flex: 0 0 auto;
}

.b-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: pulseEmerald 2s infinite ease-in-out;
}

@keyframes pulseEmerald {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.browser-viewport {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  line-height: 0;
  overflow: hidden;
}

.browser-screen-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.browser-screen-img.fade {
  opacity: 0;
  transform: scale(0.995);
}

.browser-screen-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #FAF9F6;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.browser-screen-video.fade {
  opacity: 0;
  transform: scale(0.995);
}

/* Value Proposition Bar (Redesigned like Image 1) */
.demo-value-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #0E0C0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 28px;
  margin-top: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  width: 100%;
  box-sizing: border-box;
}

.value-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.value-bar-icon {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.value-bar-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.value-bar-title {
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.value-bar-sub {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2px;
}

.value-bar-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.value-bar-action {
  flex-shrink: 0;
}

.btn-value-bar-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #0E0C0A;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-value-bar-download:hover {
  background: #F0F0F0;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1100px) {
  .demo-value-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
  }
  .value-bar-divider {
    display: none;
  }
  .value-bar-item {
    flex: 1 1 45%;
  }
  .value-bar-action {
    width: 100%;
    margin-top: 8px;
  }
  .btn-value-bar-download {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .value-bar-item {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   SECTION 6 — HOW IT WORKS (APP THEMED REDESIGN)
   ========================================================================== */
.umano-steps-section.app-theme-steps {
  padding: 108px 0 116px;
  background: var(--color-canvas);
}

.app-steps-header {
  margin-bottom: 48px;
}

.app-steps-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-steps-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(20, 9, 6, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-ink-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.kicker-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FA5A36;
  box-shadow: 0 0 0 3px rgba(250, 90, 54, 0.2);
}

.app-steps-motto {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #8C8C88;
  text-transform: uppercase;
}

.app-steps-title-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-steps-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  color: var(--color-ink-dark);
  line-height: 1.08;
  margin: 0;
}

.app-steps-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-text-body);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.app-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.app-step-card {
  background: #FFFFFF;
  border: 1px solid rgba(20, 9, 6, 0.08);
  border-radius: 20px;
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.015);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.25s ease;
  position: relative;
}

.app-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 9, 6, 0.06), 0 2px 6px rgba(20, 9, 6, 0.02);
  border-color: rgba(20, 9, 6, 0.14);
}

.app-step-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.app-step-index {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #9E9E98;
  letter-spacing: 0.04em;
  font-feature-settings: "tnum";
}

.app-step-pill {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: #64645F;
  background: rgba(20, 9, 6, 0.035);
  border: 1px solid rgba(20, 9, 6, 0.06);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Micro Preview Cards: Unified Harmonious Surface */
.app-step-micro-card {
  background: #F8F8F6;
  border: 1px solid rgba(20, 9, 6, 0.06);
  border-radius: 14px;
  padding: 13px 14px 12px;
  margin: 6px 0 18px;
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.app-step-card:hover .app-step-micro-card {
  background: #F4F4F1;
  border-color: rgba(20, 9, 6, 0.09);
}

.micro-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.micro-college-lead {
  display: flex;
  align-items: center;
  gap: 6px;
}

.micro-dot-accent {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.micro-dot-accent.blue { background: #3B82F6; }
.micro-dot-accent.teal { background: #0D9488; box-shadow: 0 0 6px rgba(13, 148, 136, 0.4); }
.micro-dot-accent.coral { background: #EA580C; }
.micro-dot-accent.purple { background: #7C3AED; }

.micro-meta-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6E6E68;
  letter-spacing: 0.01em;
}

.micro-status-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: #0F766E;
  background: #CCFBF1;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.2;
}

.micro-status-tag.due {
  color: #C2410C;
  background: #FFEDD5;
}

.micro-main-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-ink-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.micro-detail-text {
  font-size: 0.72rem;
  color: #8A8A84;
  margin-top: 3px;
}

.micro-progress-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(20, 9, 6, 0.08);
  margin: 6px 0;
  overflow: hidden;
}

.micro-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: #0D9488;
  transition: width 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.micro-time-left {
  font-size: 0.68rem;
  color: #8A8A84;
  font-weight: 500;
}

/* App Step Content */
.app-step-title {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-ink-dark);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.app-step-copy {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: #72726D;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .app-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .app-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .app-steps-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   SECTION 6.2 — CAMPUS INTEGRATIONS & ECOSYSTEM (DARK MATRIX LIKE IMAGE 1)
   ========================================================================== */
.umano-integrations-section {
  padding: 104px 0 116px;
  background: #090A0D;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient backdrop radial light */
.umano-integrations-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(250, 90, 54, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.integrations-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.integrations-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #E2E8F0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.integrations-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.integrations-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0 0 18px;
}

.integrations-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}

.integrations-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.integration-tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #CBD5E1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.integration-tool-tag:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.integration-tool-tag img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Right Visual 5x5 Matrix Stage with Crisp Grid Lines */
.integrations-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.integrations-matrix-stage {
  position: relative;
  width: 360px;
  height: 360px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 62%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 62%, transparent 100%);
  /* Background grid lines connecting the tiles */
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: 0 0;
}

/* Crisp Dark Cards with 1px Visible High-Contrast Borders */
.integration-tile {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%), #131417;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

/* Diagonal glass sheen line across tile (Like Reference Image 1) */
.integration-tile::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 60%
  );
  pointer-events: none;
}

.integration-tile:hover {
  transform: translateY(-5px) scale(1.1) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  z-index: 10;
  animation-play-state: paused;
}

/* Empty Tiles: Solid Dark with Crisp Visible Border (No Faint Dashed Lines) */
.integration-tile.tile-empty {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 100%), #0D0E11;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.tile-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
  .integrations-grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .integrations-kicker-pill {
    margin: 0 auto 16px;
  }

  .integrations-desc {
    margin: 0 auto 24px;
  }

  .integrations-chips-wrap {
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION 6.5 — UNIQUE TESTIMONIALS (SHADCN / REACT PORTED)
   ========================================================================== */
.unique-testimonials-section {
  padding: 100px 0 110px;
  background: var(--color-canvas);
  border-top: 1px solid rgba(20, 9, 6, 0.05);
}

.unique-testimonials-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-box {
  position: relative;
  padding: 0 40px;
  max-width: 640px;
  margin: 0 auto;
}

.testimonial-quote-mark {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  color: rgba(20, 9, 6, 0.22);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.testimonial-quote-mark.left {
  left: -10px;
  top: -24px;
}

.testimonial-quote-mark.right {
  right: -10px;
  bottom: -40px;
}

.testimonial-quote-text {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-weight: 300;
  color: var(--color-ink-dark);
  line-height: 1.5;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-quote-text.is-animating {
  opacity: 0;
  filter: blur(4px);
  transform: scale(0.98);
}

.testimonial-controls-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.testimonial-role-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #767672;
  margin: 0;
  transition: all 0.45s ease-out;
}

.testimonial-role-text.is-animating {
  opacity: 0;
  transform: translateY(8px);
}

.testimonial-avatars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-pill-btn {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.testimonial-pill-btn:hover {
  background: rgba(20, 9, 6, 0.05);
}

.testimonial-pill-btn.active {
  background: var(--color-ink-dark);
  box-shadow: 0 8px 24px rgba(20, 9, 6, 0.15);
  padding: 5px 16px 5px 5px;
}

.avatar-ring-wrap {
  position: relative;
  flex-shrink: 0;
}

.testimonial-avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-pill-btn:not(.active):hover .testimonial-avatar-img {
  transform: scale(1.06);
}

.testimonial-pill-btn.active .testimonial-avatar-img {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.testimonial-name-collapsible {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0;
}

.testimonial-pill-btn.active .testimonial-name-collapsible,
.testimonial-pill-btn:not(.active):hover .testimonial-name-collapsible {
  max-width: 140px;
  opacity: 1;
  margin-left: 8px;
}

.testimonial-author-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  display: block;
  transition: color 0.3s ease;
}

.testimonial-pill-btn.active .testimonial-author-name {
  color: #FFFFFF;
}

.testimonial-pill-btn:not(.active) .testimonial-author-name {
  color: var(--color-ink-dark);
}

/* ==========================================================================
   SECTION 7 — DOWNLOAD CALLOUT (HIGH-CONVERTING APP-THEMED DARK BOX)
   ========================================================================== */
.umano-download-section {
  padding: 60px 0 100px;
  background: var(--color-canvas);
}

.download-dark-box {
  background: linear-gradient(145deg, #101114 0%, #08080A 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 36px;
  padding: 68px 64px 0;
  display: grid;
  grid-template-columns: 1.22fr 0.88fr;
  gap: 48px;
  align-items: end;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.download-text-side {
  padding-bottom: 68px;
}

/* Ambient glow effect */
.download-dark-box::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 90, 54, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.download-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #E2E8F0;
  margin-bottom: 20px;
}

.download-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2DD4BF;
  box-shadow: 0 0 8px #2DD4BF;
}

.download-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #FFFFFF;
}

.download-desc {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}

.download-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.download-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
}

.download-action-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-playstore-pill.cta-glow-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 30px;
  background: #FFFFFF;
  color: #0E0F12;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.2s ease;
}

.btn-playstore-pill.cta-glow-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: #F8F7F4;
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.22), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.play-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.play-tiny {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #555552;
}

.play-bold {
  font-family: var(--font-sans);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0E0F12;
  line-height: 1.1;
}

.download-student-trust {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-stars {
  color: #FBBF24;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}

.trust-label {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  color: #94A3B8;
}

.download-guarantee-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748B;
  letter-spacing: 0.02em;
}

/* Visual Phone Side — Grounded Flush at Bottom Edge */
.download-visual-side {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: flex-end;
  position: relative;
  height: 100%;
  line-height: 0;
}

.download-phone-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0;
}

.download-phone-container .download-visual-img {
  width: 370px;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 -8px 25px rgba(0, 0, 0, 0.4)) drop-shadow(0 20px 45px rgba(0, 0, 0, 0.7));
  transform-origin: center bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-dark-box:hover .download-phone-container .download-visual-img {
  transform: scale(1.02);
}

/* Floating status badges */
.cta-floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(18, 20, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.cta-floating-badge.top-badge {
  top: 16%;
  left: -24px;
  animation: floatSlow 4s ease-in-out infinite;
}

.cta-floating-badge.bottom-badge {
  bottom: 22%;
  right: -15px;
  animation: floatSlow 4.5s ease-in-out infinite reverse;
}

.badge-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
}

.badge-dot-teal {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2DD4BF;
  box-shadow: 0 0 8px #2DD4BF;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1024px) {
  .download-dark-box {
    grid-template-columns: 1fr;
    padding: 48px 36px 0;
    gap: 32px;
    text-align: center;
  }

  .download-text-side {
    padding-bottom: 0;
  }

  .download-kicker-pill {
    margin: 0 auto 16px;
  }

  .download-desc {
    margin: 0 auto 24px;
  }

  .download-features-row {
    justify-content: center;
  }

  .download-action-wrap {
    justify-content: center;
  }

  .download-phone-container .download-visual-img {
    width: 310px;
  }

  .cta-floating-badge.top-badge {
    left: 0;
  }

  .cta-floating-badge.bottom-badge {
    right: 0;
  }
}

/* ==========================================================================
   SECTION 8 — FAQ ACCORDION (LINEAR / APPLE GRADE DARK OBSIDIAN)
   ========================================================================== */
.umano-faq-section {
  padding: 120px 0 110px;
  background: #080A0F;
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.umano-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse at top, rgba(250, 90, 54, 0.12) 0%, rgba(250, 90, 54, 0.02) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.faq-inner-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-head {
  margin-bottom: 52px;
  text-align: center;
}

.faq-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(250, 90, 54, 0.1);
  border: 1px solid rgba(250, 90, 54, 0.28);
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF7A50;
  margin-bottom: 18px;
}

.faq-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FA5A36;
  box-shadow: 0 0 8px #FA5A36;
  animation: faqPulseDot 2s infinite ease-in-out;
}

@keyframes faqPulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
    box-shadow: 0 0 12px #FA5A36;
  }
}

.faq-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.faq-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.faq-item.active {
  background: rgba(18, 22, 32, 0.85);
  border-color: rgba(250, 90, 54, 0.4);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(250, 90, 54, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}

.faq-q-text {
  flex: 1;
  transition: color 0.2s ease;
}

.faq-item:hover .faq-q-text {
  color: #FFFFFF;
}

.faq-item.active .faq-q-text {
  color: #FF7A50;
}

.faq-icon-bubble {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon-bubble svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-icon-bubble {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

.faq-item.active .faq-icon-bubble {
  background: #FA5A36;
  border-color: #FA5A36;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(250, 90, 54, 0.45);
}

.faq-item.active .faq-icon-bubble svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 26px 0;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  opacity: 1;
  padding: 0 26px 24px;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
}

/* Still Have Questions Contact Card */
.faq-contact-card {
  margin-top: 40px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-contact-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.faq-contact-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #64748B;
  margin: 0;
  line-height: 1.4;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #FA5A36;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(250, 90, 54, 0.3);
  white-space: nowrap;
}

.faq-contact-btn:hover {
  background: #E04826;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(250, 90, 54, 0.45);
}

.faq-contact-btn svg {
  transition: transform 0.25s ease;
}

.faq-contact-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .faq-head {
    text-align: left;
    margin-bottom: 36px;
  }

  .faq-kicker-pill {
    margin-bottom: 14px;
  }

  .faq-subtitle {
    margin: 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 20px 0;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-contact-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }

  .faq-contact-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   UMANO SIGNATURE FOOTER (STICKY CURTAIN REVEAL + FLOATING CARDS + WATERMARK)
   ========================================================================== */
.footer-reveal-spacer {
  width: 100%;
  height: 540px;
  background: #080A0F;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.umano-footer {
  background: #080A0F;
  padding: 88px 24px 36px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.footer-canvas-container {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}

.footer-cards-container {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
  transform: translateY(60px) scale(0.94);
  opacity: 0.35;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

/* Left Orange Card */
.footer-card-orange {
  background: linear-gradient(145deg, #FF692E 0%, #FA4C0B 100%);
  border-radius: 28px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  color: #FFFFFF;
  box-shadow: 0 12px 36px rgba(250, 76, 11, 0.2);
  position: relative;
  overflow: hidden;
}

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

.footer-card-brand .brand-logo-badge {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-card-brand .brand-logo-img {
  filter: none;
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #FFFFFF;
}

.footer-brand-name strong {
  font-weight: 800;
}

.footer-card-hello-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0;
  width: 100%;
}

.footer-hello-svg {
  width: 150px;
  height: 95px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-card-orange:hover .footer-hello-svg {
  transform: scale(1.08);
}

.footer-card-tagline {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  margin: 0;
}

/* Right White Card */
.footer-card-white {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 42px 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  position: relative;
}

/* Top-right Tilted Sticker */
.footer-card-sticker {
  position: absolute;
  top: -16px;
  right: 36px;
  width: 64px;
  height: 68px;
  background: linear-gradient(135deg, #FF692E 0%, #FA4C0B 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(5deg);
  box-shadow: 0 10px 24px rgba(250, 76, 11, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.footer-card-sticker:hover {
  transform: rotate(0deg) scale(1.06);
}

.footer-sticker-logo {
  width: 28px;
  height: 31px;
  object-fit: contain;
}

/* Links Grid */
.footer-links-grid {
  display: flex;
  gap: 72px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 4px;
}

.footer-nav-link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav-link:hover {
  color: #FA5A36 !important;
  transform: translateX(3px);
}

/* Card Bottom Row */
.footer-card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 14px;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748B;
  letter-spacing: -0.01em;
}

.footer-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #0B0E14;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.footer-btn-pill:hover {
  background: #FA5A36;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(250, 90, 54, 0.4);
}

/* Giant Faint Watermark Email */
.footer-watermark-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: center;
  margin-top: 42px;
  margin-bottom: 6px;
  overflow: visible;
  user-select: none;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.footer-watermark {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 5.6vw, 5.0rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  will-change: transform;
  transform: translateY(35px) scale(0.92);
  transition: transform 0.1s ease-out;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .strip-illustration-wrapper {
    max-width: 540px;
  }
}

@media (max-width: 860px) {
  .footer-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-card-white {
    padding: 36px 28px 28px;
  }

  .footer-card-sticker {
    right: 24px;
    width: 52px;
    height: 56px;
    top: -14px;
  }

  .footer-sticker-logo {
    width: 22px;
    height: 25px;
  }

  .footer-links-grid {
    gap: 40px;
  }

  .footer-card-bottom-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-reveal-spacer {
    display: none !important;
  }

  .umano-footer {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    z-index: 2 !important;
    background: #080A0F !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    padding: 60px 20px 32px;
  }

  .footer-cards-container {
    transform: none !important;
    opacity: 1 !important;
    grid-template-columns: 1fr;
  }

  .footer-watermark {
    transform: none !important;
  }
}

/* Status Indicator Dot (Umano Hero Signature) */
.hero-status-indicator {
  position: absolute;
  top: 135px;
  left: 32px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 9, 6, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  z-index: 15;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #140906;
}

/* ==========================================================================
   RESPONSIVE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 860px) {
  .umano-nav-links { display: none; }
  .umano-nav-progress { display: none !important; }
  .btn-umano-cta { display: none; }
  .umano-mobile-btn { display: flex; }

  .umano-navbar {
    width: calc(100% - 32px);
    max-width: 440px;
    height: 56px;
    padding: 0 6px 0 18px;
    justify-content: space-between;
  }

  .hero-status-indicator {
    top: 100px;
    left: 20px;
  }

  /* Mobile Hero & Headline Organization (3 Balanced Lines, Big & Chunky) */
  .umano-hero-section {
    padding-top: 114px;
    padding-bottom: 20px;
    min-height: 100vh;
  }

  .intro-headline-container {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
  }

  .hero-eyebrow-badge {
    font-size: 0.67rem;
    padding: 4px 12px;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }

  .intro-headline-title {
    font-size: clamp(1.65rem, 6.2vw, 2.15rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 900;
  }

  .intro-mask {
    padding-bottom: 0.1em;
  }

  .umano-hero-section.step-text .intro-mask,
  .umano-intro-fixed.step-text .intro-mask {
    overflow: visible;
  }

  .intro-word-slide {
    white-space: normal;
  }

  .hero-word-flipper {
    display: block !important;
    margin: 3px auto 0 !important;
    padding: 0 8px 0.08em !important;
    width: fit-content;
    text-align: center;
  }

  .intro-headline-sub {
    font-size: 0.94rem;
    line-height: 1.42;
    margin: 10px auto 0;
    max-width: 320px;
    color: #161A1D;
    font-weight: 500;
  }

  .hero-cta-wrapper {
    margin-top: 16px;
  }

  .intro-stage-anchor {
    transform: none;
    margin-top: -14px;
    margin-bottom: 0;
  }

  .intro-stage-content {
    margin-top: 0;
    transform-origin: 50% 23.7% !important;
  }

  /* Hide decorative curve lines & floating icons on mobile */
  .hero-deco-layer {
    display: none !important;
  }

  /* Mobile Feature Strip (Clean Split Stack) */
  .umano-strip-section {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .strip-split-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
    text-align: center;
  }

  .strip-split-content {
    align-items: center;
    text-align: center;
  }

  .strip-split-headline {
    font-size: 1.35rem;
  }

  .strip-capabilities-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .strip-cap-card {
    padding: 12px 14px;
    text-align: left;
  }

  .strip-split-media {
    order: 2;
    margin-bottom: 0;
  }

  .strip-split-img {
    max-width: 290px;
  }

  .strip-story-banner {
    font-size: 0.68rem;
    padding: 4px 12px;
  }

  .umano-hscroll-section {
    height: 380vh;
  }
  .hscroll-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    justify-content: center;
  }
  .hscroll-header {
    padding: 0 24px;
    margin-bottom: 16px;
  }
  .hscroll-cards-track {
    flex-direction: row;
    padding-left: calc(50vw - 135px);
    padding-right: calc(50vw - 135px);
    width: max-content;
    gap: 14px;
  }
  .hscroll-card-item {
    width: 270px;
  }
  .card-visual-box {
    height: clamp(340px, 52vh, 440px);
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .card-visual-box:not(.zoom-card-box) img {
    width: 100%;
    height: 100%;
    max-width: 90%;
    max-height: 90%;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  .card-info-box {
    gap: 4px;
  }
  .card-title {
    font-size: 0.88rem;
  }
  .card-desc {
    font-size: 0.76rem;
    line-height: 1.4;
  }
  .cards-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    letter-spacing: -0.035em;
    line-height: 1.2;
  }
  .section-kicker {
    font-size: 0.65rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .stage-dual-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Mobile Download Floating Card (Compact Width, Extended Height, Hand Asset Visible) */
  .download-dark-box {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    max-width: 380px;
    margin: 0 auto;
    padding: 46px 20px 0;
    text-align: center;
    border-radius: 34px;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
    position: relative;
  }

  .download-text-side {
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .download-kicker-pill {
    margin: 0 auto 14px;
    font-size: 0.68rem;
    padding: 4px 12px;
  }

  .download-heading {
    font-size: clamp(1.72rem, 6.4vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
    margin-bottom: 12px;
  }

  .download-desc {
    font-size: 0.92rem;
    line-height: 1.48;
    margin: 0 auto 18px;
    max-width: 310px;
  }

  .download-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
    margin-bottom: 22px;
  }

  .download-feature-chip {
    font-size: 0.74rem;
    padding: 5px 10px;
    border-radius: 6px;
  }

  .download-action-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .download-student-trust {
    text-align: center;
  }

  .trust-stars {
    font-size: 0.82rem;
    margin-bottom: 2px;
  }

  .trust-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .download-guarantee-tag {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
  }

  /* Grounded Hand with iPhone in Mobile Floating Card */
  .download-visual-side {
    display: flex !important;
    justify-content: center;
    align-items: flex-end;
    align-self: center;
    width: 100%;
    margin-top: 10px;
    line-height: 0;
    position: relative;
  }

  .download-phone-container {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 0;
    max-width: 100%;
  }

  .download-phone-container .download-visual-img {
    width: 255px;
    max-width: 76vw;
    height: auto;
    display: block;
    vertical-align: bottom;
    filter: drop-shadow(0 -8px 25px rgba(0, 0, 0, 0.45)) drop-shadow(0 20px 45px rgba(0, 0, 0, 0.8));
    transform-origin: center bottom;
    margin: 0 auto;
  }

  .download-phone-container .cta-floating-badge {
    position: absolute;
    z-index: 5;
    padding: 5px 11px;
    font-size: 0.67rem;
    gap: 6px;
    white-space: nowrap;
  }

  .download-phone-container .cta-floating-badge.top-badge {
    top: 10%;
    left: -4px;
  }

  .download-phone-container .cta-floating-badge.bottom-badge {
    bottom: 18%;
    right: -4px;
  }
}

@media (max-width: 600px) {
  .steps-row { grid-template-columns: 1fr; }
  .problem-lead-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }
  .chaos-chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
  }
  .problem-solution-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 420px) {
  .intro-headline-title {
    font-size: clamp(1.52rem, 6.2vw, 1.84rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
  }
  .intro-headline-sub {
    font-size: 0.92rem;
    max-width: 300px;
    margin-top: 10px;
  }
  .umano-hero-section {
    padding-top: 112px;
  }
  .download-dark-box {
    width: calc(100% - 16px);
    max-width: 350px;
    padding: 40px 16px 0;
    min-height: 680px;
  }
  .download-phone-container .download-visual-img {
    width: 235px;
    max-width: 76vw;
  }
  .download-phone-container .cta-floating-badge.top-badge {
    left: 0;
  }
  .download-phone-container .cta-floating-badge.bottom-badge {
    right: 0;
  }
}

@media (max-width: 360px) {
  .intro-headline-title {
    font-size: 1.44rem;
    line-height: 1.2;
  }
}

/* ==========================================================================
   MODAL: FOR COLLEGES & INSTITUTIONS DIALOG
   ========================================================================== */
.colleges-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.colleges-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.colleges-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 16, 20, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.colleges-modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  background: #FAF8F5;
  border-radius: 28px;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.85);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.colleges-modal-overlay.active .colleges-modal-card {
  transform: translateY(0) scale(1);
}

.colleges-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(20, 9, 6, 0.08);
  background: rgba(20, 9, 6, 0.04);
  color: #140906;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.colleges-modal-close:hover {
  background: rgba(20, 9, 6, 0.12);
  transform: rotate(90deg);
}

.colleges-modal-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: #c45811;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.colleges-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: #140906;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 10px 0;
}

.colleges-modal-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #665c54;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.colleges-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.colleges-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .colleges-form-grid {
    grid-template-columns: 1fr;
  }
}

.colleges-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.colleges-form-field.full-width {
  grid-column: 1 / -1;
}

.colleges-form-field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #3b312b;
  letter-spacing: -0.01em;
}

.colleges-form-field input,
.colleges-form-field select,
.colleges-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 9, 6, 0.14);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #140906;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.colleges-form-field input:focus,
.colleges-form-field select:focus,
.colleges-form-field textarea:focus {
  border-color: #140906;
  box-shadow: 0 0 0 3px rgba(20, 9, 6, 0.08);
}

.colleges-form-field textarea {
  resize: vertical;
  min-height: 70px;
}

.colleges-form-actions {
  margin-top: 6px;
}

.btn-colleges-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: #140906;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-colleges-submit:hover {
  background: #2a1a15;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(20, 9, 6, 0.15);
}

.colleges-form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dcfce7;
  color: #15803d;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 8px;
}

.colleges-modal-divider {
  display: flex;
  align-items: center;
  margin: 22px 0 16px;
  text-align: center;
}

.colleges-modal-divider::before,
.colleges-modal-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(20, 9, 6, 0.1);
}

.colleges-modal-divider span {
  padding: 0 12px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  color: #8c827a;
  letter-spacing: 0.08em;
}

.colleges-direct-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.colleges-email-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 9, 6, 0.05);
  border: 1px solid rgba(20, 9, 6, 0.12);
  padding: 6px 8px 6px 16px;
  border-radius: 999px;
}

.colleges-email-pill .email-text {
  font-family: var(--font-mono, monospace);
  font-size: 0.88rem;
  font-weight: 600;
  color: #140906;
}

.btn-copy-email {
  border: none;
  background: #140906;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-email.copied {
  background: #16a34a;
}

.direct-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #8c827a;
}

/* ==========================================================================
   PRO-GRADE ANIMATION SUITE (SECTIONS BELOW EDITORIAL SPLIT)
   Apple / Linear / Vercel Grade Scroll-Reveal, Stagger, and Ambient Physics
   ========================================================================== */

/* 1. Universal Hardware-Accelerated Scroll Reveal Framework */
.reveal-group {
  /* Scope wrapper */
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-group.is-revealed .reveal-item,
.reveal-item.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Precise Stagger Entrances for Lists & Grids */
.reveal-stagger > .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > .reveal-item:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > .reveal-item:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > .reveal-item:nth-child(6) { transition-delay: 0.55s; }

/* 2. Section 5 (App Showcase) Micro-Interactions */
.interactive-stage-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.interactive-stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.demo-pill-btn {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-pill-btn:hover:not(.active) {
  background: rgba(20, 9, 6, 0.06);
  transform: translateY(-1px);
}

.demo-pill-btn.active {
  transform: scale(1.02);
}

/* 3. Section 6 (How It Works) Lecture Progress & Radar Pulses */
.micro-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2DD4BF 0%, #10B981 100%);
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.55);
  transition: width 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.is-revealed .micro-progress-fill {
  width: 68% !important;
}

@keyframes liveRadarPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 7px rgba(45, 212, 191, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
}

.micro-live-dot {
  animation: liveRadarPulse 2.2s infinite cubic-bezier(0.4, 0, 0.6, 1) !important;
}

@keyframes whiteDotBreathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.25); }
}

.micro-white-dot {
  animation: whiteDotBreathe 2.4s infinite ease-in-out;
}

/* 4. Section 6.2 (Campus Integrations) Ambient Floating Matrix */
@keyframes tileFloatA {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-9px);
  }
}

@keyframes tileFloatB {
  0% {
    transform: translateY(0px) rotate(0.4deg);
  }
  100% {
    transform: translateY(-11px) rotate(-0.4deg);
  }
}

@keyframes tileFloatC {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-7px);
  }
}

.integration-tile.tile-float-a {
  animation: tileFloatA 4.8s ease-in-out infinite alternate;
}

.integration-tile.tile-float-b {
  animation: tileFloatB 5.5s ease-in-out -1.8s infinite alternate;
}

.integration-tile.tile-float-c {
  animation: tileFloatC 4.2s ease-in-out -3.1s infinite alternate;
}

/* Ambient Radial Glow on Matrix Stage */
.integrations-matrix-stage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(250, 90, 54, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: whiteDotBreathe 6s ease-in-out infinite;
}

/* Interactive Magnetic Focus: on hover, peer tiles gently soften */
.integrations-matrix-stage:hover .integration-tile:not(:hover) {
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.integrations-matrix-stage .integration-tile:hover {
  opacity: 1 !important;
  transform: translateY(-8px) scale(1.16) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(250, 90, 54, 0.25);
  z-index: 10;
  animation-play-state: paused;
}

/* 5. Section 6.5 (Testimonials) Crossfade & Controls Polish */
.testimonial-quote-text {
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-quote-text.is-animating {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-6px) scale(0.985);
}

.testimonial-role-text {
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-role-text.is-animating {
  opacity: 0;
  transform: translateY(6px);
}

/* 6. Section 7 (Download CTA) Phone — Grounded at Card Bottom */
.download-phone-container .download-visual-img {
  transform-origin: center bottom;
}

.download-dark-box:hover .download-phone-container .download-visual-img {
  transform: scale(1.02);
}

/* Counter-Floating Badges with 3D Depth */
@keyframes badgeFloatTop {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(-1deg);
  }
}

@keyframes badgeFloatBottom {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(1deg);
  }
}

.cta-floating-badge.top-badge {
  animation: badgeFloatTop 4.2s ease-in-out infinite !important;
}

.cta-floating-badge.bottom-badge {
  animation: badgeFloatBottom 4.9s ease-in-out infinite !important;
}

/* Play Store CTA Button Sheen Sweep */
@keyframes buttonSheenPass {
  0% {
    left: -120%;
  }
  25%, 100% {
    left: 220%;
  }
}

.btn-playstore-pill.cta-glow-btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.16), 0 0 25px rgba(250, 90, 54, 0.2);
}

.btn-playstore-pill.cta-glow-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  animation: buttonSheenPass 5.2s infinite ease-in-out 1.2s;
  pointer-events: none;
}

/* 7. Section 8 (FAQ) & Footer Interactions */
.faq-item {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  background: #181d29;
}

.footer-card-orange,
.footer-card-white {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.footer-card-orange:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(250, 76, 11, 0.32);
}

.footer-card-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.footer-card-sticker:hover {
  transform: rotate(12deg) scale(1.08) !important;
}

/* Accessibility: Graceful Degradation for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .integration-tile,
  .download-phone-container .download-visual-img,
  .cta-floating-badge,
  .btn-playstore-pill.cta-glow-btn::after,
  .micro-live-dot {
    animation: none !important;
  }
}

/* ==========================================================================
   DEDICATED LIGHT-THEMED PAGES (CONTACT, PRIVACY, TERMS) — MINIMAL THEME
   ========================================================================== */
body.light-page-body {
  background-color: #FAFAFA;
  color: #09090B;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Floating Light Minimal Navbar — Exact Main Header Dimensions & Style */
.light-nav-wrapper {
  position: sticky;
  top: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0 16px;
  pointer-events: none;
}

.light-navbar {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 56px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  white-space: nowrap;
  width: auto;
  max-width: fit-content;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #09090B;
  flex-shrink: 0;
}

.light-brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #09090B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.light-brand-badge img {
  width: 18px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.light-brand-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 450;
  color: #09090B;
  letter-spacing: -0.02em;
}

.light-brand-text strong {
  font-weight: 800;
  color: #09090B;
}

.light-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.light-nav-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #71717A;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.light-nav-link:hover {
  color: #09090B;
  background: rgba(0, 0, 0, 0.04);
}

.light-nav-link.active {
  color: #09090B;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.05);
}

.light-nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.light-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  background: #09090B;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.light-nav-cta:hover {
  background: #27272A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Light Page Hero — Minimal Understated */
.light-page-hero {
  padding: 64px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.light-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  background: #F4F4F5;
  border: 1px solid #E4E4E7;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #52525B;
  margin-bottom: 16px;
}

.light-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.light-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #09090B;
  line-height: 1.15;
  margin: 0 0 14px;
}

.light-hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: #71717A;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

/* ==========================================================================
   CONTACT PAGE GRID & MINIMAL COMPONENTS — FULL WIDTH
   ========================================================================== */
.contact-main-wrap {
  max-width: 1560px;
  margin: 0 auto 90px;
  padding: 0 32px;
  width: 100%;
  flex: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Contact Form Card — Minimal */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 20px;
  padding: 36px 38px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.03);
}

.contact-form-head {
  margin-bottom: 24px;
}

.contact-form-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: #09090B;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.contact-form-desc {
  font-size: 0.88rem;
  color: #71717A;
  line-height: 1.5;
}

/* Sleek Segmented Role Selector */
.contact-role-selector {
  display: flex;
  background: #F4F4F5;
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid #E4E4E7;
  gap: 2px;
}

.role-chip-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: #71717A;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  white-space: nowrap;
}

.role-chip-btn.active {
  background: #FFFFFF;
  color: #09090B;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 1px rgba(0, 0, 0, 0.03);
}

.role-chip-btn:hover:not(.active) {
  color: #18181B;
}

/* Form Fields — Clean & Crisp */
.contact-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-field.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.contact-form-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: #3F3F46;
  letter-spacing: -0.01em;
}

.contact-input,
.contact-textarea,
.contact-select {
  width: 100%;
  padding: 10px 14px;
  background: #FAFAFA;
  border: 1px solid #E4E4E7;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #09090B;
  transition: all 0.15s ease;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #A1A1AA;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
  background: #FFFFFF;
  border-color: #09090B;
  box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.05);
}

.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-submit-btn {
  width: 100%;
  padding: 12px 20px;
  background: #09090B;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-submit-btn:hover {
  background: #27272A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-submit-btn svg {
  transition: transform 0.15s ease;
}

.contact-submit-btn:hover svg {
  transform: translateX(3px);
}

/* Right Side: Direct Channels Minimal Unified Panel */
.contact-channels-panel {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.channel-panel-head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F4F4F5;
}

.channel-panel-kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A1A1AA;
  margin-bottom: 4px;
}

.channel-panel-title {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 600;
  color: #09090B;
  margin: 0;
}

.channel-section {
  padding: 20px 0;
  border-bottom: 1px solid #F4F4F5;
}

.channel-section:first-of-type {
  padding-top: 0;
}

.channel-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.channel-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.channel-section-icon {
  color: #52525B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-section-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #09090B;
  margin: 0;
}

.channel-section-desc {
  font-size: 0.84rem;
  color: #71717A;
  line-height: 1.5;
  margin: 0 0 14px;
}

.channel-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.channel-email-text {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 500;
  color: #09090B;
  background: #F4F4F5;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #E4E4E7;
}

.copy-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: #3F3F46;
  cursor: pointer;
  transition: all 0.15s ease;
}

.copy-email-btn:hover {
  background: #F4F4F5;
  color: #09090B;
  border-color: #D4D4D8;
}

.copy-email-btn.copied {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #16A34A;
}

.channel-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: #09090B;
  text-decoration: none;
  transition: all 0.15s ease;
}

.channel-link-btn:hover {
  background: #F4F4F5;
  border-color: #D4D4D8;
}

.status-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #16A34A;
  background: #F0FDF4;
  padding: 3px 9px;
  border-radius: 9999px;
  border: 1px solid #DCFCE7;
}

.status-dot-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 5px rgba(22, 163, 74, 0.4);
}

.channel-meta-pill {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: #71717A;
  background: #F4F4F5;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Minimal Security Notice in Sidebar */
.channel-guarantee {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #F4F4F5;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #71717A;
}

.channel-guarantee svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Toast Notification */
.contact-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ==========================================================================
   LEGAL DOCUMENT LAYOUT (PRIVACY POLICY & TERMS OF SERVICE) — FULL WIDTH
   ========================================================================== */
.legal-main-wrap {
  max-width: 1560px;
  margin: 0 auto 90px;
  padding: 0 32px;
  width: 100%;
  flex: 1;
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

/* Sticky Minimal Legal Sidebar */
.legal-sidebar {
  position: sticky;
  top: 90px;
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.sidebar-heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A1A1AA;
  margin-bottom: 12px;
  padding-left: 10px;
}

.legal-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.legal-nav-item a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: #71717A;
  text-decoration: none;
  transition: all 0.15s ease;
}

.legal-nav-item a:hover {
  color: #09090B;
  background: #F4F4F5;
}

.legal-nav-item.active a {
  color: #09090B;
  background: #F4F4F5;
  font-weight: 600;
}

/* Legal Content Body — Clean Minimal Full Width */
.legal-content-card {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 20px;
  padding: 44px 52px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.03);
}

.legal-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #F4F4F5;
  margin-bottom: 30px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #71717A;
}

.legal-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #F4F4F5;
  color: #09090B;
  border: 1px solid #E4E4E7;
  border-radius: 9999px;
  font-weight: 500;
}

.legal-highlight-box {
  background: #FAFAFA;
  border: 1px solid #E4E4E7;
  border-left: 3px solid #09090B;
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 32px;
}

.legal-highlight-box p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #3F3F46;
  margin: 0;
}

.legal-section-block {
  margin-bottom: 38px;
  scroll-margin-top: 110px;
}

.legal-section-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: #09090B;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section-num {
  color: #FA5A36;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.legal-text-p {
  font-size: 0.94rem;
  line-height: 1.72;
  color: #52525B;
  margin-bottom: 14px;
  max-width: 100%;
}

.legal-bullet-list {
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-bullet-list li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #52525B;
}

.legal-bullet-list li strong {
  color: #09090B;
}

/* Light Unified Minimal Footer — Full Width */
.light-page-footer {
  background: #FAFAFA;
  border-top: 1px solid #E4E4E7;
  padding: 48px 32px 32px;
  margin-top: auto;
}

.light-footer-inner {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.light-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.light-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.light-footer-link {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: #71717A;
  text-decoration: none;
  transition: color 0.15s ease;
}

.light-footer-link:hover {
  color: #09090B;
}

.light-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #F4F4F5;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #A1A1AA;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-content-card {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .light-nav-links {
    display: none;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-fields-grid {
    grid-template-columns: 1fr;
  }

  .contact-role-selector {
    flex-direction: column;
  }

  .light-footer-top,
  .light-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


