*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      /* Immersive Light Theme Color Tokens */
      --bg-dark: #F8F9FC;
      --bg-radial: radial-gradient(circle at 10% 20%, rgba(245, 247, 250, 1) 0%, rgba(235, 240, 247, 1) 90%);
      --bg-card: rgba(255, 255, 255, 0.75);
      --bg-card-hover: rgba(255, 255, 255, 0.95);
      --border-color: rgba(27, 44, 110, 0.08);
      --border-hover: rgba(27, 44, 110, 0.18);

      /* Vibrant Glow Accents for Light Theme */
      --accent-parent: #0284C7;
      --accent-parent-rgb: 2, 132, 199;
      --accent-franchise: #D97706;
      --accent-franchise-rgb: 217, 119, 6;
      --accent-staff: #059669;
      --accent-staff-rgb: 5, 150, 105;
      --accent-admin: #4F46E5;
      --accent-admin-rgb: 79, 70, 229;

      --navy: #1B2C6E;
      /* Primary deep navy */
      --navy-dark: #111D4A;
      --gold: #F5A623;
      --gold-light: #FFF4DC;
      --white: #FFFFFF;
      --text: #1E293B;
      --text-muted: #5A6178;
      --rule: rgba(27, 44, 110, 0.1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--bg-dark);
      background-image: var(--bg-radial);
      background-attachment: fixed;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      position: relative;
    }

    /* Background Interactive Canvas */
    #bg-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    /* Ambient Glow Spots (Soft Pastel Glows) */
    .ambient-glow-1 {
      position: absolute;
      top: 10%;
      left: -10%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    .ambient-glow-2 {
      position: absolute;
      top: 50%;
      right: -10%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ─────────────────────────────────────
       NAVBAR (Glassmorphic Light)
    ───────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 76px;
      transition: background 0.3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      transition: transform 0.2s;
    }

    .nav-logo:hover {
      transform: scale(1.02);
    }

    .nav-logo img {
      height: 54px;
      width: auto;
      display: block;
      filter: drop-shadow(0 2px 8px rgba(27, 44, 110, 0.06));
    }

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

    .nav-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      color: var(--text-muted);
      transition: color 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
      white-space: nowrap;
      border: 1px solid transparent;
    }

    .nav-btn:hover {
      color: var(--navy);
      background: rgba(27, 44, 110, 0.05);
      border-color: rgba(27, 44, 110, 0.08);
    }

    .nav-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .nav-btn:hover svg {
      opacity: 1;
    }

    .nav-btn-primary {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white) !important;
      box-shadow: 0 4px 15px rgba(27, 44, 110, 0.2);
    }

    .nav-btn-primary:hover {
      background: linear-gradient(135deg, var(--navy-dark) 0%, #0c1435 100%);
      box-shadow: 0 6px 20px rgba(27, 44, 110, 0.35);
      border-color: transparent;
    }

    .nav-btn-primary svg {
      opacity: 1;
    }

    .nav-divider {
      width: 1px;
      height: 20px;
      background: rgba(27, 44, 110, 0.15);
      margin: 0 8px;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: var(--navy);
      border-radius: 6px;
      transition: background 0.2s;
    }

    .hamburger:hover {
      background: rgba(27, 44, 110, 0.05);
    }

    /* ─────────────────────────────────────
       HERO (Light Mode)
    ───────────────────────────────────── */
    .hero {
      padding: 80px 48px 90px;
      position: relative;
      z-index: 10;
    }

    .hero-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      align-items: center;
    }

    .hero-left {
      position: relative;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #D97706;
      /* High contrast gold pill */
      background: rgba(245, 166, 35, 0.12);
      border: 1px solid rgba(245, 166, 35, 0.25);
      padding: 6px 14px;
      border-radius: 9999px;
      margin-bottom: 24px;
      box-shadow: 0 4px 15px rgba(245, 166, 35, 0.05);
    }

    .hero-kicker svg {
      flex-shrink: 0;
      color: var(--accent-franchise);
    }

    h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      line-height: 1.15;
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--gold) 0%, #FF9F1C 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-body {
      font-size: 1.15rem;
      color: #334155;
      max-width: 500px;
      margin-bottom: 36px;
      line-height: 1.8;
      border-left: 3px solid rgba(2, 132, 199, 0.45);
      /* Highlight left accent border */
      padding-left: 16px;
    }

    .hero-body strong {
      font-weight: 700;
      color: var(--navy);
    }

    .hero-proof {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .proof-item svg {
      width: 18px;
      height: 18px;
      color: var(--navy);
      flex-shrink: 0;
    }

    .proof-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(27, 44, 110, 0.15);
    }

    /* Video/Image Display Container (Device Mockup) */
    .hero-right {
      position: relative;
    }

    .video-card {
      background: var(--bg-card);
      border: 1.5px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(27, 44, 110, 0.08), 0 0 30px rgba(56, 189, 248, 0.05);
      max-width: 460px;
      margin: 0 auto;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      position: relative;
    }

    /* Device Mockup Top Bar */
    .video-card::before {
      content: '';
      display: block;
      height: 28px;
      background: rgba(27, 44, 110, 0.02);
      border-bottom: 1.5px solid var(--border-color);
      position: relative;
    }

    /* Device Controls */
    .device-controls {
      position: absolute;
      top: 9px;
      left: 16px;
      display: flex;
      gap: 6px;
      z-index: 2;
    }

    .device-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }

    .device-dot.red {
      background: #FF5F56;
    }

    .device-dot.yellow {
      background: #FFBD2E;
    }

    .device-dot.green {
      background: #27C93F;
    }

    /* Local File Compatible Video Card Wrapper (1:1 Ratio) */
    .video-wrapper {
      display: block;
      position: relative;
      width: 100%;
      padding-bottom: 100%;
      /* 1:1 Aspect Ratio */
      height: 0;
      overflow: hidden;
      background: #000;
      cursor: pointer;
    }

    .video-thumbnail {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: filter 0.4s ease;
    }

    .video-wrapper:hover .video-thumbnail {
      filter: brightness(0.95);
    }

    /* Play Button Hover Glow Overlay */
    .video-play-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(27, 44, 110, 0.08);
      transition: background 0.3s ease;
      z-index: 5;
    }

    .video-wrapper:hover .video-play-overlay {
      background: rgba(27, 44, 110, 0.18);
    }

    .play-button-circle {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #FF0000;
      /* YouTube Red */
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
    }

    .play-button-circle svg {
      width: 24px;
      height: 24px;
      color: var(--white);
      margin-left: 4px;
      /* Visual optical alignment */
    }

    .video-wrapper:hover .play-button-circle {
      transform: scale(1.12);
      background: #E60000;
      box-shadow: 0 12px 28px rgba(255, 0, 0, 0.5);
    }

    .video-wrapper:active .play-button-circle {
      transform: scale(0.95);
    }



    .home-video-caption{
      padding: 16px 24px;
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1;
    }

    .home-video-caption a {
      color: var(--accent-parent);
      font-weight: 700;
      text-decoration: none;
      transition: color 0.2s, text-shadow 0.2s;
    }

    .home-video-caption a:hover {
      color: var(--navy-dark);
      text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
    }

    /* ─────────────────────────────────────
       PORTALS (Glassmorphic Light Cards)
    ───────────────────────────────────── */
    .portals {
      padding: 85px 48px;
      position: relative;
      z-index: 10;
    }

    .portals-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .section-header {
      margin-bottom: 48px;
    }

    .section-kicker {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      color: var(--navy);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

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

    .portal-grid > a,
    .portal-grid > a:hover,
    .portal-grid > a:focus {
      text-decoration: none;
    }

    .portal-card {
      background: var(--bg-card);
      border: 1.5px solid var(--border-color);
      border-radius: 16px;
      padding: 32px 24px 28px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 10px 30px rgba(27, 44, 110, 0.04);
    }

    /* Glow backdrop on cards */
    .portal-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0) 50%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
      z-index: 0;
    }

    .portal-card:hover::after {
      opacity: 1;
    }

    .portal-card:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: var(--accent);
      box-shadow: 0 16px 35px rgba(27, 44, 110, 0.08),
        0 0 20px rgba(var(--accent-rgb), 0.15);
    }

    .portal-card.parent {
      --accent: var(--accent-parent);
      --accent-rgb: var(--accent-parent-rgb);
    }

    .portal-card.franchise {
      --accent: var(--accent-franchise);
      --accent-rgb: var(--accent-franchise-rgb);
    }

    .portal-card.staff {
      --accent: var(--accent-staff);
      --accent-rgb: var(--accent-staff-rgb);
    }

    .portal-card.admin {
      --accent: var(--accent-admin);
      --accent-rgb: var(--accent-admin-rgb);
    }

    .portal-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(27, 44, 110, 0.02);
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      z-index: 1;
    }

    .portal-icon-wrap svg {
      width: 24px;
      height: 24px;
      color: var(--accent);
      transition: color 0.3s, transform 0.3s;
    }

    .portal-card:hover .portal-icon-wrap {
      background: var(--accent);
      border-color: transparent;
      transform: rotate(5deg) scale(1.05);
    }

    .portal-card:hover .portal-icon-wrap svg {
      color: var(--white);
    }

    .portal-role {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.01em;
      z-index: 1;
    }

    .portal-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.65;
      flex: 1;
      z-index: 1;
    }

    .portal-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent);
      margin-top: 4px;
      z-index: 1;
    }

    .portal-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .portal-card:hover .portal-link svg {
      transform: translateX(6px);
    }

    /* ─────────────────────────────────────
       FEATURES
    ───────────────────────────────────── */
    .features {
      padding: 85px 48px;
      position: relative;
      z-index: 10;
    }

    .features-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 32px;
    }

    .feature-item {
      padding: 36px;
      background: var(--bg-card);
      border: 1.5px solid var(--border-color);
      border-radius: 16px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.3s, transform 0.3s;
      box-shadow: 0 10px 30px rgba(27, 44, 110, 0.04);
    }

    .feature-item:hover {
      border-color: rgba(27, 44, 110, 0.15);
      transform: translateY(-3px);
    }

    .feature-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(27, 44, 110, 0.02);
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: background 0.3s, transform 0.3s;
    }

    .feature-icon-wrap svg {
      width: 22px;
      height: 22px;
      color: var(--navy);
    }

    .feature-item:hover .feature-icon-wrap {
      background: rgba(27, 44, 110, 0.06);
      transform: scale(1.05);
    }

    .feature-item h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .feature-item p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ─────────────────────────────────────
       FOOTER (Glassmorphic Light)
    ───────────────────────────────────── */
    footer {
      background: rgba(255, 255, 255, 0.8);
      border-top: 1px solid var(--border-color);
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      position: relative;
      z-index: 10;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .footer-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo img {
      height: 40px;
      width: auto;
      filter: drop-shadow(0 2px 8px rgba(27, 44, 110, 0.06));
    }

    .footer-copy {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-copy a {
      color: inherit;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s, text-shadow 0.2s;
    }

    .footer-copy a:hover {
      color: var(--navy);
      text-shadow: 0 0 8px rgba(27, 44, 110, 0.15);
    }

    .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      background: rgba(27, 44, 110, 0.02);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.25s;
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(255, 210, 102, 0.05);
      transform: translateY(-2px);
    }

    .social-btn svg {
      width: 16px;
      height: 16px;
    }

    /* ─────────────────────────────────────
       FEATURED IN
    ───────────────────────────────────── */
    .featured-in {
      padding: 60px 48px;
      position: relative;
      z-index: 10;
    }

    .featured-in-inner {
      max-width: 1160px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 16px;
      padding: 56px 48px;
      box-shadow: 0 10px 30px rgba(27, 44, 110, 0.04);
      border: 1px solid var(--border-color);
    }

    .featured-in-header {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 48px;
    }

    .featured-in-rule {
      flex: 1;
      height: 1px;
      background: rgba(27, 44, 110, 0.15);
    }

    .featured-in-label {
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      margin: 0 24px;
      white-space: nowrap;
      opacity: 0.8;
    }

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

    .featured-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 90px;
      transition: transform 0.3s, filter 0.3s;
      filter: grayscale(100%) opacity(0.8);
    }

    .featured-logo-item:hover {
      transform: scale(1.05);
      filter: grayscale(0%) opacity(1);
    }

    .featured-logo-item img {
      max-height: 100%;
      max-width: 280px;
      object-fit: contain;
    }

    /* ─────────────────────────────────────
       ANIMATIONS
    ───────────────────────────────────── */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-12px) rotate(2deg);
      }
    }

    @keyframes blink {

      0%,
      90%,
      100% {
        transform: scaleY(1);
      }

      95% {
        transform: scaleY(0.1);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 0.4;
      }

      50% {
        opacity: 1;
      }
    }

    .mascot-eye-left,
    .mascot-eye-right {
      animation: blink 4s infinite;
      transform-origin: center 85px;
    }

    .pulse-core {
      animation: pulse 2s infinite ease-in-out;
    }

    /* ─────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────── */
    @media (max-width: 1024px) {
      .nav {
        padding: 0 28px;
      }

      .hero {
        padding: 64px 28px;
      }

      .portals,
      .features {
        padding: 64px 28px;
      }

      footer {
        padding: 36px 28px;
      }

      .portal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .features-inner {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    @media (max-width: 860px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
      }

      .mascot-container {
        top: -110px;
        right: 10px;
      }
    }

    @media (max-width: 640px) {
      .nav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 16px 20px 24px;
        gap: 8px;
        z-index: 199;
        box-shadow: 0 16px 32px rgba(27, 44, 110, 0.1);
      }

      .nav-links.open .nav-btn {
        padding: 12px 16px;
        border-radius: 8px;
      }

      .nav-links.open .nav-btn-primary {
        margin-left: 0;
        justify-content: center;
      }

      .nav-links.open .nav-divider {
        display: none;
      }

      .hamburger {
        display: flex;
        align-items: center;
      }

      .hero {
        padding: 48px 20px;
      }

      .portals,
      .features {
        padding: 48px 20px;
      }

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

      footer {
        padding: 32px 20px;
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-right {
        align-items: flex-start;
      }

      .hero-proof {
        flex-wrap: wrap;
        gap: 16px;
      }

      .proof-dot {
        display: none;
      }
    }

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

      *,
      *::before,
      *::after {
        transition: none !important;
        animation: none !important;
      }
    }

    /* Premium Plain Portal Block Buttons */
    .portal-block-btn {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 104px;
      height: 58px;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.25s ease;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid var(--border-color);
      color: var(--navy) !important;
      box-shadow: 0 4px 10px rgba(27, 44, 110, 0.02);
      gap: 5px;
      cursor: pointer;
    }

    .portal-block-btn svg {
      width: 18px;
      height: 18px;
      stroke-width: 2.2px;
      color: var(--navy);
      transition: transform 0.25s ease;
    }

    .portal-block-btn span {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      white-space: nowrap;
      text-transform: none;
      color: var(--navy);
    }

    .portal-block-btn:hover {
      transform: translateY(-2px);
      background: rgba(27, 44, 110, 0.05);
      border-color: rgba(27, 44, 110, 0.15);
      box-shadow: 0 6px 15px rgba(27, 44, 110, 0.08);
    }

    .portal-block-btn:hover svg {
      transform: scale(1.1);
    }

    /* Mobile Collapsing adjustments for portal buttons */
    @media (max-width: 640px) {
      .nav-links.open .portal-block-btn {
        width: 100%;
        height: 44px;
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        border-radius: 8px;
        box-shadow: none;
      }

      .nav-links.open .portal-block-btn span {
        font-size: 0.85rem;
      }
    }
