
      @charset "UTF-8";
      @import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');
      
      :root,
      :root:not([data-theme="dark"]),
      [data-theme="light"],
      [data-theme="dark"] {
        --pico-primary: #3DB070;
        --pico-primary-background: #3DB070;
        --pico-primary-border: #3DB070;
        --pico-primary-hover: #45C87D;
        --pico-primary-hover-background: #45C87D;
        --pico-primary-hover-border: #209655;
        --pico-primary-focus: #209655;
        --loaris-pink: #d3297e;
        --loaris-pink-hover: #FF3D9F;
        --loaris-pink-focus: #FF3D9F;
        --loaris-yellow: #ffeb3b;
        --loaris-yellow-hover: #FFC107;
        --loaris-yellow-focus: #FFC107;
        
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: 'Atkinson Hyperlegible', sans-serif;
        font-weight: 400;
        letter-spacing: 0.05em;
        line-height: 1.3;
      }

      /* Theme-dependent logos */
      .logo-light, .logo-dark {
        vertical-align: middle;
      }
      
      /* Light theme: show logo.png, hide logo-color.png */
      [data-theme="light"] .logo-dark,
      :root:not([data-theme="dark"]) .logo-dark {
        display: none;
      }
      
      /* Dark theme: show logo-color.png, hide logo.png */
      [data-theme="dark"] .logo-light {
        display: none;
      }
      
      :root:not([data-theme="dark"]) .logo-light {
        display: inline;
      }
      
      [data-theme="dark"] .logo-dark {
        display: inline;
      }

      
      svg.icon-theme-toggle {
        --theme-toggle-duration: .4s;
      }
      svg.icon-theme-toggle g circle,
      svg.icon-theme-toggle g path {
        transform-origin: center center;
        transition: transform calc(var(--theme-toggle-duration) * .65) cubic-bezier(0, 0, 0, 1.25) calc(var(--theme-toggle-duration) * .35);
      }
      svg.icon-theme-toggle :first-child path {
        transition-duration: calc(var(--theme-toggle-duration) * .6);
        transition-property: transform, d;
        transition-timing-function: cubic-bezier(0, 0, 0.5, 1);
      }
      svg.icon-theme-toggle.moon g circle {
        transform: scale(1.4);
        transition-delay: 0s;
      }
      svg.icon-theme-toggle.moon g path {
        transform: scale(0.75);
        transition-delay: 0s;
      }
      svg.icon-theme-toggle.moon :first-child path {
        d: path("M -9 3 h 25 a 1 1 0 0 0 17 13 v 30 H 0 Z");
        transition-delay: calc(var(--theme-toggle-duration) * .4);
        transition-timing-function: cubic-bezier(0, 0, 0, 1.25);
      }

      /* Navigation */
      body > nav.container {
        position: sticky;
        top: 0;
        z-index: 999;
        background-color: rgba(var(--pico-background-color-rgb), 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--pico-muted-border-color);
        transition: background-color 0.3s ease;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
      }

      /* Mobile Menu */
      .hamburger { display: none; background: none; border: none; padding: 0.5rem; color: var(--pico-contrast); cursor: pointer; }
      @media (max-width: 992px) {
        .hamburger { display: block; }
        nav.container ul:nth-child(2) { 
          display: none; 
          position: absolute; 
          top: 100%; 
          left: 0; 
          width: 100%; 
          background: var(--pico-background-color); 
          flex-direction: column; 
          padding: 1rem; 
          border-bottom: 1px solid var(--pico-muted-border-color);
        }
        nav.container ul.open:nth-child(2) { display: flex; }
        nav.container ul:nth-child(2) li { width: 100%; text-align: center; }
      }

      /* Nav Dropdown */
      nav.container .nav-dropdown {
        border-bottom: none;
        margin-bottom: 0;
      }
      nav.container .nav-dropdown summary {
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
        color: var(--pico-primary);
        font-weight: inherit;
        --pico-form-element-focus-color: transparent;
      }
      nav.container .nav-dropdown summary:hover,
      nav.container .nav-dropdown summary:focus {
        background-color: transparent;
        color: var(--pico-primary-hover);
        box-shadow: none;
      }
      nav.container .nav-dropdown summary[role="button"] {
        /* Override Pico's specific role button styles if any */
        padding: 0;
        margin: 0;
        width: auto;
      }
      
      nav.container .nav-dropdown ul {
        /* Default desktop behavior (Pico handles absolute) */
        min-width: 200px;
      }

      @media (max-width: 992px) {
        nav.container ul:nth-child(2) li {
          overflow: visible !important; /* Ensure children can expand */
        }
        nav.container .nav-dropdown {
          width: 100%;
          border: none !important;
          background: none !important;
          overflow: visible !important;
        }
        nav.container .nav-dropdown summary {
          width: 100%;
          text-align: center;
          justify-content: center;
          border: none !important;
          background: none !important;
          padding: 0.5rem 0;
          color: var(--pico-primary);
        }
        nav.container .nav-dropdown summary::after {
          position: relative;
          top: 2px;
        }
        nav.container .nav-dropdown ul {
          position: relative !important;
          z-index: 10;
          width: 100% !important;
          display: none !important;
          background: rgba(var(--pico-background-color-rgb), 0.05);
          margin: 0 !important;
          padding: 0 !important;
          border-left: 3px solid var(--pico-primary);
          box-shadow: none !important;
          border-radius: 0 !important;
          height: auto !important;
          max-height: none !important;
          overflow: visible !important;
        }
        
        nav.container .nav-dropdown[open] > ul {
          display: block !important;
        }

        nav.container .nav-dropdown ul li {
          display: block !important;
          width: 100% !important;
          text-align: center !important;
          padding: 0 !important;
          height: auto !important;
          overflow: visible !important;
        }

        nav.container .nav-dropdown ul li a {
          display: block !important;
          padding: 0.75rem 1rem !important;
          width: 100% !important;
          color: var(--pico-color) !important;
        }
      }



      /* Plans Transition */
      .plans-transition-enter { opacity: 0; transform: translateY(10px); }
      .plans-transition-enter-start { opacity: 0; transform: translateY(10px); }
      .plans-transition-leave { opacity: 1; transform: translateY(0); }
      .plans-transition-leave-end { opacity: 0; transform: translateY(-10px); }

      /* Layout Utilities */
      .hero-section, .pricing-section, .awards-section { padding: 4rem 0; }
      .stats-section { background-color: var(--pico-secondary-background); padding: 3rem 0; text-align: center; }
      .flex-center { display: flex; align-items: center; justify-content: center; }
      .flex-between { display: flex; justify-content: space-between; }
      .align-center { display: flex; align-items: center; }
      .text-left { text-align: left; }
      .text-center { text-align: center; }
      .mb-0 { margin-bottom: 0; }
      .mb-2 { margin-bottom: 2rem; }
      .mb-3 { margin-bottom: 3rem; }
      .mt-1 { margin-top: 1rem; }
      .mt-2 { margin-top: 2rem; }
      .mr-1 { margin-right: 1rem; }
      .w-100 { width: 100%; }

      /* Stats Section Improvements */
      .stats-section { 
        background-color: var(--loaris-yellow);
        padding: 5rem 0; 
        margin: 2rem auto;
      }
      .stats-section h2, .stats-section hgroup p { color: #1a1a1a; }
      .stat-card {
        background: #1a1a1a;
        border: none;
        padding: 1.5rem;
        border-radius: 1rem;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      }
      .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 0.5rem;
        color: var(--loaris-yellow);
      }
      .stat-label {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      .stats-content { padding-right: 2rem; }
      .stats-section .primary-text { color: #1a1a1a !important; }
      .stats-section .link-underline { border-bottom-color: #1a1a1a; }
      .stats-section .link-underline:hover { border-bottom-color: transparent; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
      .link-underline { 
        text-decoration: none; 
        border-bottom: 1px solid currentColor;
        transition: border-bottom-color 0.3s;
      }
      .link-underline:hover {
        border-bottom-color: transparent;
      }
      .text-white { color: #fff !important; }
      .hamburger-only { display: none; }
      @media (max-width: 992px) {
        .hamburger-only { display: block; }
        .desktop-only { display: none; }
      }

      /* Components */
      /* Components */
      .hero-img { border-radius: 1rem; box-shadow: var(--pico-box-shadow); }
      .hero-title { line-height: 1.1; margin-bottom: 2rem; font-weight: 400; letter-spacing: 0.05em; }
      .hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: var(--pico-muted-color); margin-bottom: 2rem; }
      .hero-section { text-align: center; padding: 6rem 0; }
      .hero-section .grid { align-items: center; column-gap: 5rem; }
      .hero-cta { margin-top: 2.5rem; margin-bottom: 1.5rem; font-size: 1.1rem; }
      .hero-section .grid a[role="button"] { margin-bottom: 0; }

      /* Parallax Hero */
      .hero-parallax {
        position: relative;
        overflow: hidden;
        min-height: 600px;
        padding: 4rem 0;
        text-align: left;
      }
      .hero-parallax-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        will-change: transform;
      }
      .hero-warrior {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: 95% center;
        transform: scale(1.2);
        transform-origin:85% center;
      }
      .hero-parallax-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 2rem;
        min-height: 500px;
      }
      .hero-text {
        max-width: 560px;
        align-self: center;
      }
      .hero-lead {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--pico-muted-color);
        margin-bottom: 1.5rem;
      }
      .hero-parallax .hero-title {
        font-size: 3rem;
        font-weight: 100;
        line-height: 1.10;
        margin-bottom: 2rem;
        letter-spacing: -0.01em;
        text-transform: uppercase;
      }
      .hero-parallax .hero-title mark {
        background: linear-gradient(to top, var(--pico-primary) 40%, transparent 40%);
        color: inherit;
        padding: 0 0.2em;
      }
      .hero-parallax .hero-cta {
        font-size: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
      }
      .hero-visual {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 2rem;
      }
      .hero-screen {
        max-width: 100%;
        height: auto;
        will-change: transform;
        transform: scale(1.15);
        transform-origin: left center;
      }

      /* Hero Center (No Image) */
      .hero-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        grid-template-columns: 1fr; 
      }
      .hero-center .hero-text {
        max-width: 800px;
        margin: 0 auto;
      }
      .hero-center .hero-title {
        font-size: 3.5rem;
      }

      @media (max-width: 992px) {
        .hero-parallax {
          min-height: auto;
          padding: 3rem 0;
        }
        .hero-parallax-bg {
          width: 100%;
          opacity: 0.3;
        }
        .hero-parallax-content {
          grid-template-columns: 1fr;
          min-height: auto;
          text-align: center;
        }
        .hero-text {
          max-width: 100%;
        }
        .hero-parallax .hero-title {
          font-size: 2.5rem;
        }
        .hero-visual {
          order: -1;
          margin-bottom: 2rem;
        }
        .hero-screen {
          max-width: 80%;
        }
      }

      @media (max-width: 576px) {
        .container, [class*="section"] .container {
          padding-right: 2rem !important;
          padding-left: 2rem !important;
        }
        .hero-title {
          font-size: 2.25rem;
          margin-bottom: 1rem;
        }
        .hero-subtitle {
          font-size: 1.15rem;
          margin-bottom: 2rem;
        }
        .hero-section {
          padding: 3rem 0;
        }
        .hero-cta {
          margin-top: 2rem;
        }
        .hero-section .grid {
          gap: 1rem;
        }
        .hero-section .grid a[role="button"] { 
          margin-bottom: 0.5rem; 
        }
        .stats-grid {
          grid-template-columns: 1fr;
        }
        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
          padding: 2rem 1.25rem;
        }
        .footer-bottom div {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1rem;
        }
        .mr-1 { margin-right: 0; }
      }
      .rounded { border-radius: 1rem; }
      .primary-text { color: var(--pico-primary); }
      .muted-text { color: var(--pico-muted-color); }
      
      .pillar-card { 
        text-align: center; 
        height: 100%; 
        display: flex; 
        flex-direction: column; 
        background-color: var(--pico-card-background-color);
        overflow: hidden;
        border: 1px solid var(--pico-card-border-color);
        transition: transform 0.3s ease;
        box-shadow: none;
      }
      .pillar-card header {
        background-color: var(--pico-card-sectioning-background-color);
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--pico-muted-color);
        border-bottom: 1px solid var(--pico-muted-border-color);
        margin: 0;
      }
      .pillar-content {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-grow: 1;
      }
      .pillar-icon-box { 
        
        margin: 0 auto 1.5rem; 
        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0; 
      }
      .pillar-icon-box img { 
        max-width: 250px; 
        height: auto;
      }
      .pillar-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--pico-color);
      }
      .pillar-card p { 
        font-size: 0.9rem; 
        line-height: 1.6; 
        color: var(--pico-muted-color);
        margin-bottom: 0;
      }

      .plan-toggle { display: inline-flex; width: auto; gap: 1rem; }
      .plan-highlight { border: 2px solid var(--pico-primary); }
      .plan-del { font-size: 1rem; }

      .plans-container { display: grid; grid-template-columns: 1fr; margin-bottom: 2rem; }
      .plans-grid { grid-area: 1 / 1 / 2 / 2; transition: opacity 0.4s ease, transform 0.4s ease; }
      .plans-grid article { display: flex; flex-direction: column; height: 100%; }
      .plans-grid article > footer { margin-top: auto; }

      /* Carousel Section */
      .carousel-section {
        margin-top: 4rem;
        margin-bottom: 4rem;
      }

      /* Carousel */
      .carousel-container { position: relative; width: 100%; margin-bottom: 2rem; }
      .carousel-overflow { overflow: hidden; width: 100%; padding: 1rem 0; }
      .carousel-track { 
        display: flex; 
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
        align-items: stretch;
      }
      .carousel-item { 
        min-width: 100%;
        padding: 0 1rem; 
        box-sizing: border-box; 
      }
      
      @media (min-width: 992px) {
        .carousel-item { 
          min-width: 0;
          flex: 0 0 50%; 
        }
      }
      @media (min-width: 1200px) {
        .carousel-item { 
          flex: 0 0 33.333%; 
        }
      }
      /* Pricing Section */
      .pricing-section { padding: 4rem 0; margin-bottom: 4rem; }
      .pricing-content { padding-right: 2rem; }
      .pricing-switcher { 
        display: inline-flex; 
        background: var(--pico-card-background-color); 
        border: 1px solid var(--pico-muted-border-color);
        border-radius: 2rem; 
        padding: 0.25rem; 
        margin-top: 2rem;
      }
      .switcher-btn {
        background: none;
        border: none;
        padding: 0.5rem 1.5rem;
        border-radius: 1.5rem;
        cursor: pointer;
        font-weight: 600;
        color: var(--pico-muted-color);
        transition: all 0.3s ease;
        line-height: 1;
        margin-bottom: 0;
        width: auto;
      }
      .switcher-btn.active {
        background-color: var(--pico-primary-background);
        color: #fff; /* Always white on active primary */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      }
      .switcher-btn:focus { box-shadow: none; }

      .pricing-cards-container { position: relative; min-height: 500px; }
      .pricing-grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 1.5rem; 
        position: absolute; 
        width: 100%; 
        top: 0; 
        left: 0;
      }
      
      .pricing-card {
        background: var(--pico-card-background-color);
        border: 1px solid var(--pico-card-border-color);
        border-radius: 1.5rem;
        padding: 2rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex; 
        flex-direction: column;
        height: 100%;
      }
      .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--pico-card-box-shadow);
      }
      .pricing-card header {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        background: none;
        border: none;
        padding: 0;
        color: var(--pico-muted-color);
      }
      .pricing-card .price {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        line-height: 1;
        margin-bottom: 0.5rem;
        color: var(--pico-color);
      }
      .pricing-card .currency { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; }
      .pricing-card .amount { font-size: 4rem; font-weight: 800; }
      .pricing-card .period { font-size: 0.9rem; color: var(--pico-muted-color); margin-bottom: 1.5rem; }
      .pricing-card .target { font-weight: 700; margin-bottom: 1.5rem; font-size: 1.1rem; }
      
      .features-list { 
        list-style: none; 
        padding: 0; 
        margin: 0 0 2rem; 
        text-align: left; 
        font-size: 0.9rem;
      }
      .features-list li { 
        list-style: none;
        padding-left: 1.5rem; 
        position: relative; 
        margin-bottom: 0.5rem; 
        color: var(--pico-muted-color);
      }
      .features-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #10b981; /* Green check */
        font-weight: 800;
      }

      .pricing-card .description { 
        font-size: 0.85rem; 
        color: var(--pico-muted-color); 
        margin-bottom: 2rem; 
        flex-grow: 1; 
      }
      
      .pricing-card footer { margin-top: auto; background: none; border: none; padding: 0; }
      
      /* Highlight Card (Pink) */
      .pricing-card.highlight {
        background: var(--loaris-pink);
        border-color: var(--loaris-pink);
        color: #fff;
      }
      .pricing-card.highlight header,
      .pricing-card.highlight .price,
      .pricing-card.highlight .period,
      .pricing-card.highlight .target,
      .pricing-card.highlight .description,
      .pricing-card.highlight .features-list li {
        color: #fff;
      }
      .pricing-card.highlight .features-list li::before { color: #fff; }

      /* Buttons */
      .btn-pink { 
        background-color: var(--loaris-pink); 
        border-color: var(--loaris-pink); 
        color: white; 
        width: 100%; 
        border-radius: 2rem;
        font-weight: 700;
      }
      .btn-pink:hover { background-color: var(--loaris-pink-hover); border-color: var(--loaris-pink-hover); color: white; }
      
      .btn-white {
        background-color: #fff;
        border-color: #fff;
        color: var(--loaris-pink);
        width: 100%;
        border-radius: 2rem;
        font-weight: 700;
      }
      .btn-white:hover { background-color: #f8fafc; border-color: #f8fafc; color: var(--loaris-pink-hover); }

      /* Corporate/Multi Specifics */
      .target-highlight { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.5rem; }
      .icon-area { margin-bottom: 1.5rem; }
      .icon-area svg { width: 48px; height: 48px; stroke-width: 1.5; }

      @media(max-width: 992px) {
        .pricing-section .grid { grid-template-columns: 1fr; gap: 3rem; }
        .pricing-content { padding-right: 0; text-align: center; }
        .pricing-cards-container { position: relative; min-height: auto; }
        .pricing-grid { position: relative; grid-template-columns: 1fr; gap: 2rem; }
        .pricing-card { min-height: auto; }
      }


      .carousel-item article { height: 100%; margin-bottom: 0; display: flex; flex-direction: column; }
      .carousel-nav { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin-top: 2rem; }
      .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pico-muted-border-color); cursor: pointer; border: none; padding: 0; transition: background 0.3s, transform 0.3s; }
      .carousel-dot.active { background: var(--pico-primary); transform: scale(1.2); }
      .carousel-btn { background: none; border: none; color: var(--pico-muted-color); cursor: pointer; padding: 0; font-size: 1.5rem; box-shadow: none; line-height: 1; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; transition: color 0.3s; }
      .carousel-btn:hover { color: var(--pico-primary); }
      .carousel-btn:focus { box-shadow: none; border: none; }

      /* Features Accordion Section */
      .features-section {
        padding: 5rem 0;
      }
      .features-section .grid {
        align-items: center;
        gap: 3rem;
      }
      .features-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
      }
      .features-section img {
        max-width: 100%;
        border-radius: 1rem;
      }
      .features-section details {
        border: none;
        border-bottom: 1px solid var(--pico-muted-border-color);
        padding: 0;
        margin-bottom: 0;
      }
      .features-section details:last-of-type {
        border-bottom: none;
      }
      .features-section details summary {
        padding: 1.25rem 0;
        font-weight: 600;
        font-size: 1rem;
        color: var(--pico-color);
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .features-section details summary::after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--pico-muted-color);
        border-bottom: 2px solid var(--pico-muted-color);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 1rem;
      }
      .features-section details[open] summary::after {
        transform: rotate(-135deg);
      }
      .features-section details summary::-webkit-details-marker {
        display: none;
      }
      .features-section details p {
        padding: 0 0 1.25rem 0;
        margin: 0;
        font-size: 1rem;
        line-height: 1.7;
        color: var(--pico-muted-color);
      }
      .features-section details[open] summary {
        color: var(--pico-primary);
      }
      
      @media (max-width: 768px) {
        .features-section h2 {
          text-align: center;
        }
      }
      
      /* Yellow Feature Section */
      .yellow-section { 
        background-color: var(--loaris-yellow); 
        color: #1a1a1a; 
        padding: 5rem 0;
      }
      .yellow-section h2, 
      .yellow-section p, 
      .yellow-section mark { 
        color: #1a1a1a; 
      }
      .yellow-section mark.secondary {
        background-color: #1a1a1a;
        color: var(--loaris-yellow);
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-right: 0.5rem;
      }
      .yellow-section .grid {
        align-items: center;
        gap: 3rem;
      }
      .yellow-section img {
        max-width: 100%;
        border-radius: 1rem;
      }
      .yellow-section h2 {
        margin-top: 0.75rem;
        margin-bottom: 1rem;
      }
      .yellow-section p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        opacity: 0.9;
      }
      .yellow-section a[role="button"].contrast {
        background-color: #1a1a1a;
        border-color: #1a1a1a;
        color: #fff;
      }
      .yellow-section a[role="button"].contrast:hover {
        background-color: #333;
        border-color: #333;
      }

      /* Awards Section */
      .awards-section {
        padding: 5rem 0;
      }
      .awards-section h2 {
        margin-bottom: 3rem;
      }
      .awards-section .grid {
        align-items: stretch;
        gap: 2rem;
      }
      .awards-card { 
        background: linear-gradient(135deg, var(--pico-primary) 0%, var(--pico-primary-hover) 100%);
        padding: 2.5rem; 
        border-radius: 1rem; 
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .awards-card h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.5rem;
      }
      .awards-card p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
      }
      .awards-logos { 
        display: flex; 
        align-items: center; 
        justify-content: space-around; 
        flex-wrap: wrap;
        gap: 2rem;
        padding: 1rem;
      }
      .award-logo { 
        font-size: 1.25rem; 
        font-weight: 700;
        opacity: 0.6;
        letter-spacing: 0.05em;
        transition: opacity 0.3s;
      }
      .award-logo:hover {
        opacity: 1;
      }

      @media (max-width: 768px) {
        .yellow-section .grid {
          text-align: center;
        }
        .awards-card {
          text-align: center;
        }
      }

      .footer-main { 
        border-top: 1px solid var(--pico-muted-border-color); 
        padding-top: 4rem;
        padding-bottom: 2rem;
      }
      
      .footer-main > .grid {
        gap: 3rem;
      }
      
      .footer-bottom { 
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        border-top: 1px solid var(--pico-muted-border-color); 
        margin-top: 2rem; 
        padding: 1.5rem 0; 
        flex-wrap: wrap;
        gap: 1rem;
      }
      
      .footer-bottom a {
        font-size: 0.8rem;
      }
      
      footer ul { 
        list-style: none; 
        padding: 0;
        margin: 0;
      }
      
      footer ul li {
        margin-bottom: 0.5rem;
      }
      
      footer ul li a { 
        text-decoration: none; 
        color: var(--pico-muted-color);
        font-size: 0.85rem;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
      }
      
      footer ul li a:hover {
        color: var(--pico-primary);
        padding-left: 0.25rem;
      }

      .footer-main .icons {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
      }
      
      .footer-main .icons a {
        color: var(--pico-muted-color);
        transition: color 0.2s ease, transform 0.2s ease;
      }
      
      .footer-main .icons a:hover {
        color: var(--pico-primary);
        transform: translateY(-2px);
      }

      .footer-title { 
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem; 
        color: var(--pico-contrast); 
        font-weight: 700;
        font-family: 'Atkinson Hyperlegible', sans-serif;
      }
      
      @media (max-width: 768px) {
        .footer-main > .grid {
          grid-template-columns: 1fr 1fr;
        }
        
        .footer-bottom {
          flex-direction: column;
          text-align: center;
        }
      }
      
      @media (max-width: 480px) {
        .footer-main > .grid {
          grid-template-columns: 1fr;
        }
      }
      /* Article Layout Styles */
      article > header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--pico-muted-border-color);
      }

      article > header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      @media (max-width: 576px) {
        article > header h1 {
          font-size: 1.75rem;
        }
      }

      .article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1rem;
        color: var(--pico-muted-color);
        font-size: 0.9rem;
      }

      .article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
      }

      .article-meta svg {
        opacity: 0.7;
      }

      .article-author {
        font-weight: 500;
      }

      .article-category {
        margin-top: 1rem;
      }

      .article-category mark {
        font-size: 0.85rem;
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        background-color: var(--pico-primary-background);
        color: var(--pico-primary);
        text-decoration: none;
      }

      .article-category a {
        text-decoration: none;
      }

      .article-featured-image {
        margin: 2rem 0;
        text-align: center;
      }

      .article-featured-image img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 1rem;
        box-shadow: var(--pico-box-shadow);
      }

      .article-featured-image figcaption {
        font-size: 0.85rem;
        color: var(--pico-muted-color);
        font-style: italic;
        margin-top: 0.75rem;
      }

      .article-content {
        line-height: 1.8;
        font-size: 1.05rem;
      }

      .article-content h2 {
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        font-size: 1.75rem;
      }

      .article-content h3 {
        margin-top: 2rem;
        margin-bottom: 0.75rem;
        font-size: 1.35rem;
      }

      .article-content p {
        margin-bottom: 1.25rem;
      }

      .article-content ul,
      .article-content ol {
        margin-bottom: 1.25rem;
        padding-left: 1.5rem;
      }

      .article-content li {
        margin-bottom: 0.5rem;
      }

      .article-content blockquote {
        border-left: 4px solid var(--pico-primary);
        background-color: var(--pico-secondary-background);
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 0 0.5rem 0.5rem 0;
      }

      .article-content code {
        background-color: var(--pico-secondary-background);
        padding: 0.125rem 0.375rem;
        border-radius: 0.25rem;
        font-size: 0.9em;
      }

      .article-content pre {
        background-color: var(--pico-secondary-background);
        padding: 1rem;
        border-radius: 0.5rem;
        overflow-x: auto;
        margin: 1.5rem 0;
      }

      .article-content pre code {
        padding: 0;
        background: none;
      }

      .article-footer {
        margin-top: 3rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--pico-muted-border-color);
      }

      .article-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
      }

      .article-tags strong {
        margin-right: 0.5rem;
      }

      .article-tags a {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background-color: var(--pico-secondary-background);
        border-radius: 1rem;
        font-size: 0.85rem;
        text-decoration: none;
        color: var(--pico-color);
        transition: background-color 0.2s;
      }

      .article-tags a:hover {
        background-color: var(--pico-primary-background);
        color: var(--pico-primary);
      }

      .article-updated {
        margin-top: 1rem;
        color: var(--pico-muted-color);
      }

      /* Breadcrumb Styling */
      nav[aria-label="breadcrumb"] ul {
        padding: 0;
        margin-bottom: 1.5rem;
      }

      nav[aria-label="breadcrumb"] ul li {
        font-size: 0.9rem;
      }

      nav[aria-label="breadcrumb"] ul li:last-child {
        color: var(--pico-muted-color);
      }

      /* Article with floating menu layout */
      .article-with-menu {
        display: flex;
        gap: 2rem;
        position: relative;
      }

      .article-with-menu .article-content {
        flex: 1;
        min-width: 0;
      }

      /* Presentation Section */
      .presentation-section {
        padding: 5rem 0;
        margin-bottom: 4rem;
        position: relative;
        min-height: 600px; /* Reserve space for slides */
      }
      .presentation-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: center;
        width: 100%;
        position: absolute; /* Stack slides */
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 1200px; /* Constrain width within container */
        padding: 0 1rem; /* Add horizontal padding matching container */
      }
      /* Ensure container centers absolute content */
      .presentation-section .container {
        position: relative;
        height: 100%;
        display: flex;
        justify-content: center;
      }

      .presentation-image-wrapper {
        position: relative;
        display: flex;
        justify-content: center; /* Center image in its column */
      }
      .presentation-img {
        border-radius: 0.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        max-width: 100%;
        height: auto;
      }

      .presentation-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--pico-muted-color);
        margin-bottom: 1rem;
        font-weight: 600;
      }
      .presentation-title {
        color: var(--pico-heading-color); /* Ensure dark color */
        position: relative;
        display: inline-block;
        margin-bottom: 2rem;
        z-index: 1; /* Above underline */
      }
      
      .presentation-desc {
        font-size: 1.1rem;
        color: var(--pico-muted-color);
        line-height: 1.6;
        margin-bottom: 3rem;
      }

      .presentation-nav {
        display: flex;
        gap: 1rem;
        justify-content: flex-end; /* Align arrows to right */
      }
      /* Presentation Nav arrows */
      .nav-arrow {
        background: none;
        border: none;
        font-size: 2.5rem;
        color: var(--pico-muted-color);
        cursor: pointer;
        padding: 0 1rem;
        line-height: 1;
        transition: color 0.3s;
      }
      .nav-arrow:hover {
        color: var(--pico-primary);
      }

      /* Animation Classes */
      .pres-enter-active { transition: all 0.7s ease-out; }
      .pres-enter-start { opacity: 0; transform: scale(0.95) translateX(20px); }
      .pres-enter-end { opacity: 1; transform: scale(1) translateX(0); }

      .pres-leave-active { transition: all 0.5s ease-in; position: absolute; top: 0; width: 100%; }
      .pres-leave-start { opacity: 1; transform: scale(1) translateX(0); }
      .pres-leave-end { opacity: 0; transform: scale(0.95) translateX(-20px); }

      /* Static Overlay for Nav */
      .presentation-static-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%; /* Matches container grid width constraints via same max-width/margin if needed, but here we use container inside */
        height: 100%;
        pointer-events: none;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: center; /* Vertically align same as content */
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        z-index: 10;
      }
      .presentation-nav-static {
        grid-column: 2;
        /* Position arrows specifically */
        height: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end; /* Pin to bottom */
        padding-bottom: 3rem; /* Spacing from bottom */
      }

      @media(max-width: 992px) {
        .presentation-section { min-height: auto; padding-bottom: 0; margin-bottom: 2rem; }
        .presentation-grid, .presentation-static-overlay {
          position: relative;
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .presentation-static-overlay { display: none; } /* Hide static overlay on mobile, use inline nav if needed or stack? */
        /* Actually, let's keep it but adjust */
        .presentation-static-overlay {
             display: flex;
             flex-direction: column;
             justify-content: flex-end;
             position: absolute;
             bottom: 0;
             padding-bottom: 0;
        }
        .presentation-nav-static {
            grid-column: 1;
            width: 100%;
            justify-content: space-between;
            padding-bottom: 0;
            margin-top: 0;
        }
        
        .presentation-content { padding-left: 0; text-align: left; padding-bottom: 4rem; } /* Add padding for arrows */
        .presentation-nav { display: none; } /* Hide the loop nav */
        /* Override static nav for mobile */
        .nav-arrow { font-size: 2rem; padding: 0.5rem; pointer-events: auto; }
        .presentation-img { max-width: 100%; margin: 0 auto; display: block; }
      }
      .article-menu {
        width: 280px;
        flex-shrink: 0;
      }

      .article-menu-inner {
        position: sticky;
        top: 80px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 1rem;
        background-color: var(--pico-card-background-color);
        border: 1px solid var(--pico-muted-border-color);
        border-radius: 0.5rem;
      }

      .article-menu h6 {
        margin-bottom: 0.75rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--pico-muted-color);
      }

      .article-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .article-menu ul li {
        margin-bottom: 0.25rem;
      }

      .article-menu ul li a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
        color: var(--pico-color);
        text-decoration: none;
        border-radius: 0.25rem;
        transition: background-color 0.2s, color 0.2s;
      }

      .article-menu ul li a:hover {
        background-color: var(--pico-primary-background);
        color: var(--pico-border-color);
      }

      /* Light theme specific adjustments for menu */
      [data-theme="light"] .article-menu ul li a:hover,
      :root:not([data-theme="dark"]) .article-menu ul li a:hover {
        background-color: rgba(0, 172, 193, 0.1);
      }

      .article-menu ul li a svg {
        flex-shrink: 0;
        opacity: 0.5;
      }

      .article-menu ul li a:hover svg {
        opacity: 1;
      }

      /* Hide floating menu on mobile */
      @media (max-width: 992px) {
        .article-with-menu {
          flex-direction: column;
        }

        .article-menu {
          display: none;
        }
      }

      /* Smooth scrolling for anchor links */
      html {
        scroll-behavior: smooth;
      }

      /* Scroll offset for fixed header */
      :target {
        scroll-margin-top: 80px;
      }


      /* User Guide Grid */
      .doc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin: 3rem 0;
      }

      .doc-card {
        text-align: left;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease;
      }

      .doc-card:hover {
        transform: translateY(-5px);
        color: inherit;
      }

      .doc-card .icon-box {
        color: var(--pico-primary);
      }

      .doc-card .icon-box svg {
        width: 64px;
        height: 64px;
      }

      .doc-card h3 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
      }

      .doc-card p {
        font-size: 1rem;
        color: var(--pico-muted-color);
        line-height: 1.5;
        margin-bottom: 0;
      }

      @media (max-width: 992px) {
        .doc-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
        }
      }

      @media (max-width: 576px) {
        .doc-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
          margin: 2rem 0;
        }
        .doc-card {
            text-align: center;
            align-items: center;
        }
      }

/* Beauty Figure Styles */
.article-figure {
  margin: 2.5rem 0;
  text-align: center;
}

.figure-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  background-color: var(--pico-card-background-color);
  line-height: 0;
}

.figure-wrapper:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 1px 10px rgba(0, 0, 0, 0.1);
}

.figure-img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.figure-caption {
  font-size: 0.8rem;
  color: var(--pico-muted-color);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Ensure images in articles don't overflow */
article img {
  max-width: 100%;
  height: auto;
}

/* Download & Step Guide Styles */
.download-section {
  text-align: center;
  margin-bottom: 4rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.download-buttons a {
  width: auto;
}

.download-urls {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.download-url-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--pico-muted-border-color);
}

.download-url-row:last-child {
  border-bottom: none;
}

.download-url-row .icon-box {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-url-row .url-link {
  color: var(--pico-muted-color);
  font-family: var(--pico-font-family-monospace);
  font-size: 0.9rem;
}

 

/* Mobile Responsiveness for Download Section */
@media (max-width: 576px) {
  .download-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .download-buttons a {
    width: 100% !important;
    justify-content: center;
    padding: 1rem !important;
    font-size: 0.9rem;
  }

  .download-url-row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .download-url-row .icon-box {
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .download-url-row span:not(.url-link) {
    width: 100%;
    display: block;
  }

  .download-url-row .url-link {
    width: 100%;
    word-break: break-all;
    font-size: 0.8rem;
  }
}

/* Improved Code Styling */
code {
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: var(--pico-font-family-monospace);
  font-size: 0.85em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"], :root:not([data-theme="dark"]) {
  code {
    background-color: rgba(0, 0, 0, 0.05);
    color: #d63384;
  }
}

[data-theme="dark"] {
  code {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ff79c6;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 320px;
  padding: 1.5rem;
  background: var(--pico-card-background-color);
  border-radius: var(--pico-border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  border: 1px solid var(--pico-muted-border-color);
}

.cookie-consent p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent a {
  color: var(--pico-primary);
}

.cookie-consent button {
  width: auto;
  margin: 0;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 576px) {
  .cookie-consent {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: var(--pico-border-radius) var(--pico-border-radius) 0 0;
  }
}
