:root {
  --primary: #2563eb;
  --primary-light: rgba(37, 99, 235, 0.05);
  --primary-glow: 0 8px 30px rgba(37, 99, 235, 0.15);
  --bg-dark: #ffffff;
  --bg-card: #ffffff;
  --border-card: rgba(0, 0, 0, 0.06);
  --text-main: #0f172a;
  --text-muted: #475569;
  
  /* Contrasting Button Gradient */
  --btn-gradient-start: #f59e0b; /* Amber 500 */
  --btn-gradient-end: #ea580c;   /* Orange 600 */
  --btn-glow: 0 4px 20px rgba(234, 88, 12, 0.25);
}

body.landing-page {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
}

/* Background Video */
.hero-bg-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -3;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.hero-bg-video-overlay {
  display: none;
}

/* Background Wavy Designs */
.hero-bg-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.hero-bg-wave-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 45% 55% 40% 60% / 50% 40% 60% 50%;
  opacity: 0.7;
  animation: morph-wave-1 25s infinite alternate ease-in-out;
}

.hero-bg-wave-2 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
  border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
  opacity: 0.6;
  animation: morph-wave-2 20s infinite alternate ease-in-out;
}

.hero-bg-wave-3 {
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  opacity: 0.8;
  animation: morph-wave-3 22s infinite alternate ease-in-out;
}

@keyframes morph-wave-1 {
  0% { border-radius: 45% 55% 40% 60% / 50% 40% 60% 50%; transform: rotate(0deg) translate(0, 0); }
  100% { border-radius: 55% 45% 60% 40% / 40% 60% 40% 60%; transform: rotate(180deg) translate(20px, -20px); }
}

@keyframes morph-wave-2 {
  0% { border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%; transform: rotate(0deg) translate(0, 0); }
  100% { border-radius: 35% 65% 50% 50% / 60% 40% 60% 40%; transform: rotate(-180deg) translate(-10px, 30px); }
}

@keyframes morph-wave-3 {
  0% { border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%; transform: rotate(0deg); }
  100% { border-radius: 40% 60% 40% 60% / 60% 45% 55% 40%; transform: rotate(90deg) translate(15px, 15px); }
}

/* NAVIGATION */
.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #0f172a;
  cursor: pointer;
  text-decoration: none;
}

.nav-brand span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

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

.btn-login-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.btn-login-link:hover {
  color: var(--text-main);
}

.btn-started {
  background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-end));
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: var(--btn-glow);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-started:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* HERO CONTAINER */
.hero-container {
  display: flex;
  padding: 60px 6% 80px;
  gap: 48px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  flex: 1;
  text-align: left;
}

.hero-right {
  flex: 1.1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO LEFT DETAILS */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-badge i {
  color: #93c5fd;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero-title span.grow-gradient {
  background: linear-gradient(135deg, #60d8ff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(96,216,255,0.4));
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-cta-primary {
  background: #f26600; /* Meta Orange */
  color: #ffffff;
  padding: 12px 14px 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(242, 102, 0, 0.3);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #c25200; /* Darker orange for primary */
  border-radius: 50%;
  margin-left: 14px;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.btn-cta-primary:hover .btn-icon-circle {
  transform: translateX(4px);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 12px 14px 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta-secondary .btn-icon-circle {
  background: #ffffff;
  color: #333;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-cta-secondary:hover .btn-icon-circle {
  transform: scale(1.1);
}

/* HERO BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 32px;
}

.benefit-card {
  text-align: left;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 18px;
}

.benefit-icon-wrap {
  font-size: 1.3rem;
  color: #93c5fd;
  margin-bottom: 12px;
}

.benefit-card h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.benefit-card p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  font-weight: 500;
}

/* DESKTOP DASHBOARD MOCKUP */
.mockup-desktop-window {
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 
    0 30px 60px -15px rgba(15, 23, 42, 0.12), 
    0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.mockup-desktop-window:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 40px 80px -20px rgba(15, 23, 42, 0.18), 
    0 0 0 1px rgba(0, 0, 0, 0.08);
}

.mockup-header-bar {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.mockup-dots span:nth-child(1) { background: #ff5f56; } /* Official macOS Red */
.mockup-dots span:nth-child(2) { background: #ffbd2e; } /* Official macOS Yellow */
.mockup-dots span:nth-child(3) { background: #27c93f; } /* Official macOS Green */

.mockup-header-address {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 4px 24px;
  font-size: 0.68rem;
  color: var(--text-muted);
  width: 45%;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.mockup-app-layout {
  display: flex;
  width: 100%;
  aspect-ratio: 1024 / 474; /* Matches desktop screenshot dimensions perfectly */
  background: #ffffff;
  overflow: hidden;
}

.mockup-app-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MOBILE PHONE MOCKUP */
.mockup-phone-container {
  position: absolute;
  bottom: -45px;
  right: -25px;
  width: 215px;
  background: #0f172a; /* Slate 900 bezel frame */
  border-radius: 40px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.35),
    0 0 0 3px #1e293b, /* inner bezel edge */
    0 0 0 5px #475569, /* metallic frame highlight */
    0 15px 35px rgba(37, 99, 235, 0.1);
  overflow: hidden;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 10px; /* bezel thickness */
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.mockup-phone-container:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 
    0 35px 65px -15px rgba(0, 0, 0, 0.45),
    0 0 0 3px #0f172a,
    0 0 0 5px #64748b,
    0 20px 45px rgba(37, 99, 235, 0.15);
}

.mockup-phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 472 / 896; /* Perfectly crops the bottom Safari browser bar (hiding the bottom 12.5%) */
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.mockup-phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* iPhone Dynamic Island Overlay */
.mockup-phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #000000;
  border-radius: 20px;
  z-index: 25;
  box-shadow: inset 0 0 3px rgba(255,255,255,0.2);
  pointer-events: none;
}

/* iOS Home Indicator Pill Overlay */
.mockup-phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(15, 23, 42, 0.7); /* dark slate pill */
  border-radius: 10px;
  z-index: 25;
  pointer-events: none;
}

/* LOGO STRIP */
.institutions-section {
  padding: 80px 6%;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.institutions-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.logos-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-item {
  color: var(--text-muted);
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.4;
  transition: opacity 0.2s;
  cursor: default;
}

.logo-item:hover {
  opacity: 0.8;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .benefits-grid {
    text-align: center;
  }
  .benefit-card {
    text-align: center;
  }
  .hero-right {
    margin-top: 40px;
    width: 100%;
    max-width: 600px;
  }
  .mockup-phone-container {
    right: 0;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mockup-desktop-window {
    border-radius: 8px;
  }
  .mockup-app-layout {
    height: 350px;
  }
  .mockup-sidebar {
    display: none;
  }
  .mockup-widgets-col {
    display: none;
  }
  .mockup-phone-container {
    display: none;
  }
}

/* ===========================
   SECTION SHARED STYLES
   =========================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-main);
  margin: 0 0 16px;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 56px;
  font-weight: 500;
}

/* ===========================
   PLATFORM SECTION
   =========================== */
#platform {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.platform-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(37,99,235,0.10);
  border-color: rgba(37,99,235,0.15);
}

.platform-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.platform-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 10px;
}

.platform-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.platform-card .feature-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37,99,235,0.07);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===========================
   SOLUTIONS SECTION
   =========================== */
#solutions {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.solutions-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.solutions-tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: #ffffff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.solutions-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}

.solutions-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solutions-role-section {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.solutions-role-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

.solutions-role-title .role-icon {
  font-size: 1.4rem;
}

.solutions-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solutions-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.solutions-feature-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   PRICING SECTION
   =========================== */
#pricing {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.09);
}

.pricing-card.featured {
  background: linear-gradient(160deg, #1d4ed8 0%, #2563eb 100%);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(37,99,235,0.30);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.pricing-plan-name {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pricing-card.featured .pricing-plan-name {
  color: rgba(255,255,255,0.7);
}

.pricing-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-tagline {
  color: rgba(255,255,255,0.7);
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price { color: #ffffff; }

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.7); }

.pricing-students {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-students { color: #93c5fd; }

.pricing-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li i {
  color: #22c55e;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i { color: #86efac; }

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(37,99,235,0.25);
  color: var(--primary);
  background: rgba(37,99,235,0.05);
  transition: all 0.2s;
  box-sizing: border-box;
}

.btn-pricing:hover { background: rgba(37,99,235,0.1); }

.btn-pricing.featured-btn {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}

.btn-pricing.featured-btn:hover { filter: brightness(1.08); }

.pricing-pilot-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-pilot-note strong { color: var(--primary); }

/* ===========================
   RESOURCES SECTION
   =========================== */
#resources {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.resource-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.resource-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.resource-icon.amber { background: rgba(245,158,11,0.12); color: #d97706; }
.resource-icon.blue { background: rgba(37,99,235,0.10); color: var(--primary); }
.resource-icon.green { background: rgba(34,197,94,0.10); color: #16a34a; }
.resource-icon.violet { background: rgba(139,92,246,0.10); color: #7c3aed; }
.resource-icon.rose { background: rgba(244,63,94,0.10); color: #e11d48; }
.resource-icon.teal { background: rgba(20,184,166,0.10); color: #0d9488; }

.resource-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 10px;
}

.resource-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
  margin: 0 0 18px;
}

.resource-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.resource-link:hover { gap: 10px; }

/* ===========================
   ABOUT SECTION
   =========================== */
#about {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 0 0 32px;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
  margin: 0 0 36px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-stat {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 20px;
}

.about-stat .stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.about-value-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 4px;
}

.about-value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

/* ===========================
   FOOTER
   =========================== */
.landing-footer {
  background: #0f172a;
  padding: 48px 6% 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.landing-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.landing-footer-brand span { color: #60a5fa; }

.landing-footer-tagline {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 24px;
  font-weight: 500;
}

.landing-footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.landing-footer-links a {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.landing-footer-links a:hover { color: #ffffff; }

.landing-footer-copy {
  font-size: 0.78rem;
  color: #475569;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

/* Responsive: section grids */
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-role-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .section-heading { font-size: 1.8rem; }
}

/* =========================================
   EXECUTIVE / LEADERSHIP SECTION
   ========================================= */

.executive-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.executive-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.executive-grid {
  max-width: 860px;
  margin: 0 auto;
}

.executive-card {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  box-shadow:
    0 4px 24px rgba(37,99,235,0.06),
    0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(37,99,235,0.10),
    0 1px 4px rgba(0,0,0,0.04);
}

/* Avatar with animated gradient ring */
.executive-avatar-ring {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9, #7c3aed, #2563eb);
  background-size: 300% 300%;
  animation: ringRotate 4s linear infinite;
  position: relative;
}

@keyframes ringRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.executive-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #ffffff;
  display: block;
}

.executive-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e8efff;
  border: 4px solid #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #2563eb;
}

.executive-info {
  flex: 1;
}

.executive-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(14,165,233,0.08));
  border: 1px solid rgba(37,99,235,0.16);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.executive-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.executive-bio {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
  font-weight: 500;
  margin: 0 0 20px;
}

.executive-quote {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border-left: 3px solid #2563eb;
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #334155;
  font-style: italic;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 24px;
}

.executive-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.executive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}

.executive-link:hover {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .executive-card {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 28px;
    text-align: center;
  }
  .executive-quote {
    border-left: none;
    border-top: 3px solid #2563eb;
    border-radius: 0 0 12px 12px;
  }
  .executive-links {
    justify-content: center;
  }
}

/* =========================================
   FIGMA-STYLE TOUR MODAL
   ========================================= */

.tour-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.82);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tourFadeIn 0.22s ease;
}

@keyframes tourFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.tour-modal {
  background: #0f1724;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  width: min(900px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.05);
  animation: tourSlideUp 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes tourSlideUp {
  from { transform: translateY(30px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* Mac-style header bar */
.tour-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #1a2235;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.tour-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tour-dots {
  display: flex;
  gap: 6px;
}

.tour-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.tour-dots span:nth-child(1) { background: #ff5f57; }
.tour-dots span:nth-child(2) { background: #ffbd2e; }
.tour-dots span:nth-child(3) { background: #28c940; }

.tour-title-bar {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tour-close-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.5);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.15s;
}

.tour-close-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

/* Dashboard selector tabs */
.tour-tabs {
  display: flex;
  gap: 6px;
  padding: 10px 18px;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tour-tabs::-webkit-scrollbar {
  display: none;
}

.tour-tab-pill {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.18s;
}

.tour-tab-pill.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(37,99,235,0.45);
}

.tour-tab-pill:not(.active):hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
}

/* Screenshot viewport */
.tour-screen-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #070c17;
  min-height: 320px;
}

.tour-slide {
  position: relative;
  width: 100%;
  height: 100%;
  animation: tourEnter 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
}

@keyframes tourEnter {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.tour-slide-exit-next {
  animation: tourExitNext 0.38s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

.tour-slide-exit-prev {
  animation: tourExitPrev 0.38s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

@keyframes tourExitNext {
  to { opacity: 0; transform: translateX(-28px); }
}

@keyframes tourExitPrev {
  to { opacity: 0; transform: translateX(28px); }
}

.tour-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  user-select: none;
}

/* Animated hand cursor */
.tour-hand-cursor {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  pointer-events: none;
  z-index: 10;
  transition: top 0.55s cubic-bezier(0.34,1.26,0.64,1),
              left 0.55s cubic-bezier(0.34,1.26,0.64,1);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.tour-hand-cursor span {
  display: block;
  transition: transform 0.1s;
}

.tour-hand-cursor.tapping span {
  transform: scale(0.78);
}

/* Tap ripple ring */
.tour-tap-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.7);
  opacity: 0;
  pointer-events: none;
}

.tour-hand-cursor.tapping .tour-tap-ring {
  animation: tapRipple 0.55s ease-out forwards;
}

@keyframes tapRipple {
  0%   { width: 20px; height: 20px; opacity: 0.9; border-color: rgba(37,99,235,0.8); }
  100% { width: 54px; height: 54px; opacity: 0;   border-color: rgba(37,99,235,0); }
}

/* Hint tooltip above the hand */
.tour-hint-label {
  position: absolute;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 11;
  box-shadow: 0 4px 14px rgba(37,99,235,0.4);
  animation: hintPop 0.25s cubic-bezier(0.34,1.56,0.64,1);
  transform: translateX(-50%);
}

@keyframes hintPop {
  from { transform: translateX(-50%) scale(0.7); opacity: 0; }
  to   { transform: translateX(-50%) scale(1);   opacity: 1; }
}

/* Footer area */
.tour-footer {
  flex-shrink: 0;
  padding: 14px 20px;
  background: #1a2235;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.tour-caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 12px;
  line-height: 1.5;
  font-weight: 500;
}

.tour-caption strong {
  color: #ffffff;
}

.tour-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}

.tour-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.15s;
}

.tour-nav-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}

.tour-progress-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.tour-progress-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.2s;
}

.tour-progress-dot.active {
  background: #2563eb;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(37,99,235,0.6);
}

.tour-upload-hint {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tour-upload-hint code {
  background: rgba(255,255,255,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* ── Role picker start screen ─────────────────────────── */
.tour-pick-modal {
  max-width: 640px !important;
}

.tour-pick-body {
  padding: 32px 28px 36px;
  text-align: center;
}

.tour-pick-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.tour-pick-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 28px;
}

.tour-pick-cards {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.tour-pick-card {
  flex: 1 1 160px;
  max-width: 180px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px 14px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.tour-pick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-color, #6366f1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: inherit;
}

.tour-pick-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--card-color, #6366f1);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.tour-pick-card:hover::before { opacity: 0.15; }

.tour-pick-emoji {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}

.tour-pick-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.tour-pick-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  display: block;
  line-height: 1.4;
}

.tour-pick-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--card-color, #6366f1);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  transition: opacity 0.2s;
}

.tour-pick-card:hover .tour-pick-cta { opacity: 0.9; }

/* Back button in slide header */
.tour-back-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, color 0.2s;
}
.tour-back-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* Ensure screen-wrap is the stacking context for the hand cursor */
.tour-screen-wrap {
  position: relative !important;
  flex: 1;
  overflow: hidden;
  background: #000;
}

.tour-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Trusted Schools Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

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

.marquee-content {
  display: inline-flex;
  gap: 60px;
  animation: scroll-marquee 25s linear infinite;
  padding-right: 60px; /* match the gap */
  width: max-content;
  align-items: center;
}

.marquee-item {
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.marquee-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.marquee-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.marquee-item:hover .marquee-logo {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
