/* ============================================================
       CSS CUSTOM PROPERTIES
       ============================================================ */
    :root {
      --primary:        #2563eb;
      --secondary:      #1e40af;
      --accent:         #60a5fa;
      --dark:           #0f172a;
      --white:          #ffffff;
      --glass-bg:       rgba(255, 255, 255, 0.12);
      --glass-bg-solid: rgba(255, 255, 255, 0.92);
      --glass-border:   rgba(255, 255, 255, 0.25);
      --shadow-sm:      0 4px 16px rgba(15, 23, 42, 0.08);
      --shadow-md:      0 8px 32px rgba(15, 23, 42, 0.14);
      --shadow-lg:      0 20px 60px rgba(15, 23, 42, 0.20);
      --blur:           saturate(180%) blur(20px);
      --radius-pill:    20px;
      --radius-card:    16px;
      --radius-sm:      8px;
      --font-display:   'Sora', sans-serif;
      --font-body:      'Inter', sans-serif;
      --nav-height:     76px;
      --nav-height-sm:  64px;
      --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html { scroll-behavior: smooth; }
body {
    width: 100%;
    overflow-x: hidden;
}
    

    /* ============================================================
       HEADER WRAPPER — floats above page content
       ============================================================ */
    .my-home-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 14px 20px;

      /* Fade-down entrance */
      animation: my-home-fadeDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    @keyframes my-home-fadeDown {
      from { opacity: 0; transform: translateY(-24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ============================================================
       NAVBAR PILL — the floating glass card
       ============================================================ */
    .my-home-navbar {
      max-width: 1280px;
      margin: 0 auto;
      /*height: var(--nav-height);*/
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;

      background: rgb(255, 255, 255);
      backdrop-filter: var(--blur);
      -webkit-backdrop-filter: var(--blur);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-pill);
      padding: 0 10px 0 20px;

      box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: height var(--transition), background var(--transition),
                  box-shadow var(--transition), padding var(--transition);
    }

    /* Scrolled state — tighter + more opaque */
    .my-home-header.my-home-sticky .my-home-navbar {
      /*height: var(--nav-height-sm);*/
      background: rgba(255, 255, 255, 0.8);
      box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
    }

    /* ============================================================
       LOGO
       ============================================================ */
    .my-home-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
      outline: none;
    }

    .my-home-logo:focus-visible .my-home-logo-mark {
      box-shadow: 0 0 0 3px var(--accent);
    }

    .my-home-logo-mark {
      width: 38px;
      /*height: 38px;*/
      border-radius: 10px;
      /*background: linear-gradient(135deg, var(--primary), var(--accent));*/
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    

    .my-home-logo-mark svg {
      width: 20px;
      height: 20px;
    }

    .my-home-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .my-home-logo-name {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .my-home-logo-tag {
      font-size: 0.62rem;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ============================================================
       CENTER MENU
       ============================================================ */
    .my-home-menu {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }

    /* ── Menu item ── */
    .my-home-menu > li {
      position: relative;
    }

    .my-home-menu > li > a,
    .my-home-menu > li > button {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      /*font-size: 0.875rem;*/
      font-weight: 500;
      color: rgba(0, 0, 0, 0.82);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      transition: color var(--transition), background var(--transition),
                  transform var(--transition);
      position: relative;
      white-space: nowrap;
      font-family: "Fredoka", sans-serif;
      letter-spacing: 0.01em;
    }

    /* Animated underline */
    .my-home-menu > li > a::after,
    .my-home-menu > li > button::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 14px;
      right: 14px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .my-home-menu > li > a:hover,
    .my-home-menu > li > button:hover {
      color: #7ed437;
      background: rgba(255, 255, 255, 0.07);
      transform: translateY(-1px);
    }

    .my-home-menu > li > a:hover::after,
    .my-home-menu > li > button:hover::after,
    .my-home-menu > li.my-home-active > a::after {
      transform: scaleX(1);
    }

    .my-home-menu > li.my-home-active > a {
      color: #7ed437;
    }

    /* Chevron icon */
    .my-home-chevron {
      width: 14px;
      height: 14px;
      transition: transform var(--transition);
      flex-shrink: 0;
    }

    .my-home-has-dropdown:hover .my-home-chevron,
    .my-home-has-dropdown.my-home-open .my-home-chevron {
      transform: rotate(180deg);
    }

    /* ── Focus ring ── */
    .my-home-menu > li > a:focus-visible,
    .my-home-menu > li > button:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* ============================================================
       DROPDOWN MENUS
       ============================================================ */
    .my-home-dropdown {
      position: absolute;
      top: calc(100% + -5px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      min-width: 380px;
      padding: 8px;
      border-radius: var(--radius-card);
      background: rgba(255, 255, 255, 0.85);
      /*backdrop-filter: var(--blur);*/
      -webkit-backdrop-filter: var(--blur);
      border: 1px solid rgba(255, 255, 255, 0.10);
      box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
      list-style: none;
    }

    /* Arrow pointer */
    .my-home-dropdown::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 12px;
      height: 12px;
      /*background: rgba(10, 18, 40, 0.85);*/
      border-left: 1px solid rgba(255, 255, 255, 0.10);
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      clip-path: polygon(0 100%, 50% 0, 100% 100%);
    }

    .my-home-has-dropdown:hover .my-home-dropdown,
    .my-home-has-dropdown.my-home-open .my-home-dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .my-home-dropdown li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      font-size: 16px;
      font-weight: 600;
      color: #000;
      text-decoration: none;
      transition: color var(--transition), background var(--transition),
                  padding-left var(--transition);
    }

    .my-home-dropdown li a:hover {
      color: var(--white);
      background: rgba(37, 99, 235, 0.22);
      padding-left: 18px;
    }

    .my-home-dropdown li a:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .my-home-dropdown-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: rgba(37, 99, 235, 0.2);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .my-home-dropdown-icon svg {
      width: 14px;
      height: 14px;
      color: var(--accent);
    }

    /* Divider between dropdown groups */
    .my-home-dropdown-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin: 4px 0;
    }

    /* ============================================================
       CTA BUTTON
       ============================================================ */
    .my-home-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 20px;
      border-radius: var(--radius-pill);
      /*font-size: 0.875rem;*/
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-body);
      letter-spacing: 0.01em;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: #0473bf;
      background-size: 200% 200%;
      transition: transform var(--transition), box-shadow var(--transition),
                  background-position var(--transition);
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
      outline: none;
    }

    /* Animated shine sweep */
    .my-home-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: skewX(-20deg);
      transition: left 0.55s ease;
    }

    .my-home-btn:hover::before { left: 160%; }

    .my-home-btn:hover {
      transform: translateY(-2px) scale(1.03);
      background-position: 100% 0;
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.55);
    }

    .my-home-btn:active {
      transform: translateY(0) scale(0.98);
    }

    .my-home-btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .my-home-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ============================================================
       HAMBURGER TOGGLE — mobile only
       ============================================================ */
    .my-home-mobile-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      border: none;
      background: rgb(0, 0, 0);
      border-radius: 10px;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }

    .my-home-mobile-toggle:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .my-home-bar {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }

    /* X animation */
    .my-home-mobile-toggle.my-home-open .my-home-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .my-home-mobile-toggle.my-home-open .my-home-bar:nth-child(2) {
      opacity: 0;
      width: 0;
    }
    .my-home-mobile-toggle.my-home-open .my-home-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ============================================================
       MOBILE MENU PANEL
       ============================================================ */
    .my-home-mobile-panel {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(8, 14, 30, 0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      padding: 96px 24px 40px;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .my-home-mobile-panel.my-home-open {
      transform: translateX(0);
    }

    .my-home-mobile-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    /* Top-level mobile links */
    .my-home-mobile-nav > li > a,
    .my-home-mobile-nav > li > button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 14px 16px;
      border-radius: var(--radius-card);
      font-size: 1rem;
      font-weight: 600;
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-body);
      transition: background var(--transition), color var(--transition);
    }

    .my-home-mobile-nav > li > a:hover,
    .my-home-mobile-nav > li > button:hover {
      background: rgba(255,255,255,0.06);
      color: var(--white);
    }

    .my-home-mobile-nav > li > a:focus-visible,
    .my-home-mobile-nav > li > button:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Mobile accordion chevron */
    .my-home-mobile-chevron {
      width: 18px;
      height: 18px;
      transition: transform var(--transition);
      color: var(--accent);
    }

    .my-home-mobile-nav > li.my-home-open > button .my-home-mobile-chevron {
      transform: rotate(180deg);
    }

    /* Mobile sub-menu */
    .my-home-mobile-sub {
      list-style: none;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      padding-left: 16px;
    }

    .my-home-mobile-nav > li.my-home-open .my-home-mobile-sub {
      max-height: 400px;
    }

    .my-home-mobile-sub li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255,255,255,0.68);
      text-decoration: none;
      transition: color var(--transition), background var(--transition);
    }

    .my-home-mobile-sub li a:hover {
      color: var(--white);
      background: rgba(37,99,235,0.15);
    }

    .my-home-mobile-sub li a:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Mobile CTA */
    .my-home-mobile-cta {
      margin-top: 24px;
    }

    .my-home-mobile-cta .my-home-btn {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
      font-size: 1rem;
      border-radius: var(--radius-card);
    }

    /* ============================================================
       DEMO HERO — visual backdrop so the navbar is showcased
       ============================================================ */
    .my-home-demo-hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      gap: 20px;
    }

    .my-home-demo-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      background: rgba(37, 99, 235, 0.18);
      border: 1px solid rgba(96, 165, 250, 0.3);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .my-home-demo-headline {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -0.03em;
      max-width: 760px;
    }

    .my-home-demo-headline span {
      background: linear-gradient(90deg, var(--accent), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .my-home-demo-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.58);
      max-width: 520px;
      line-height: 1.7;
    }

    .my-home-demo-scroll {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.3);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .my-home-demo-scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
      animation: my-home-scrollPulse 2s ease-in-out infinite;
    }

    @keyframes my-home-scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50%       { opacity: 1;   transform: scaleY(1.2); }
    }

    /* ============================================================
       TABLET — 991px
       ============================================================ */
    @media (max-width: 991px) {
      .my-home-header { padding: 12px 16px; }

      .my-home-navbar { gap: 12px; padding: 0 8px 0 16px; }

      .my-home-logo-tag { display: none; }
      .my-home-logo-name { font-size: 0.95rem; }

      .my-home-menu > li > a,
      .my-home-menu > li > button { padding: 7px 11px; font-size: 0.82rem; }
    }

    /* ============================================================
       MOBILE — 768px and below
       ============================================================ */
    @media (max-width: 768px) {
      .my-home-menu,
      .my-home-btn { display: none; }

      .my-home-mobile-toggle { display: flex; }
      .my-home-mobile-panel  { display: block; }

      .my-home-header { padding: 10px 14px; }

      .my-home-navbar {
        border-radius: 18px;
        padding: 0 10px 0 16px;
      }
      #you {
  width: 72px !important;
}
    }
    
    #you {
        width: 130px;
    }