
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --cream: #FFF8F0;
      --cream2: #FFF2E6;
      --peach: #FFE5D9;
      --warm-gray: #F5F0EB;
      --olive: #6B8E5A;
      --olive-light: #8FB07A;
      --olive-soft: rgba(107,142,90,0.12);
      --orange: #FF8C42;
      --orange-light: #FFB07A;
      --orange-soft: rgba(255,140,66,0.12);
      --dark: #3D3229;
      --dark2: #5C4F44;
      --gray: #8C7E72;
      --white: #FFFFFF;
      --shadow-sm: 0 2px 8px rgba(61,50,41,0.06);
      --shadow-md: 0 4px 20px rgba(61,50,41,0.08);
      --shadow-lg: 0 8px 40px rgba(61,50,41,0.1);
      --radius: 20px;
      --radius-sm: 12px;
      --radius-lg: 28px;
      --max-w: 1120px;
      --font: -apple-system, 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      background: var(--cream);
      color: var(--dark);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.7;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    svg use { pointer-events: none; }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

    /* Ambient blobs */
    .ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
    .ambient .blob {
      position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
    }
    .ambient .blob-1 { width: 400px; height: 400px; background: var(--peach); top: -100px; right: -100px; }
    .ambient .blob-2 { width: 350px; height: 350px; background: rgba(107,142,90,0.15); bottom: 10%; left: -80px; }
    .ambient .blob-3 { width: 300px; height: 300px; background: rgba(255,140,66,0.1); top: 40%; right: -50px; }

    /* Nav */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 16px 0; transition: all 0.3s ease;
    }
    .nav.scrolled {
      background: rgba(255,248,240,0.95);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-sm);
      padding: 12px 0;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-brand { display: flex; align-items: center; gap: 10px; }
    .nav-logo {
      width: 40px; height: 40px; border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--olive), var(--olive-light));
      display: grid; place-items: center;
      font-weight: 900; font-size: 15px; color: var(--white);
      box-shadow: 0 2px 10px rgba(107,142,90,0.3);
    }
    .nav-name { font-weight: 800; font-size: 20px; color: var(--dark); letter-spacing: -0.5px; }
    .nav-name span { color: var(--olive); }
    .nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--gray); font-weight: 500; }
    .nav-links a { transition: color 0.2s; position: relative; }
    .nav-links a:hover { color: var(--dark); }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 2px; background: var(--olive);
      border-radius: 1px; transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      padding: 8px 20px; border-radius: 999px;
      background: var(--olive); color: var(--white);
      font-size: 14px; font-weight: 600; border: none; cursor: pointer;
      transition: all 0.25s; box-shadow: 0 2px 10px rgba(107,142,90,0.25);
    }
    .nav-cta:hover { background: var(--olive-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(107,142,90,0.35); }
    .nav-mobile { display: none; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; cursor: pointer; }
    .nav-mobile span { display: block; height: 2px; background: var(--dark); border-radius: 2px; }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 2000;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 24px; padding: 88px 24px 32px;
      background: rgba(255,248,240,0.98);
      opacity: 0; visibility: hidden; pointer-events: none;
      transform: translateY(-12px); transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    }
    .mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
    .mobile-menu a {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 164px; min-height: 48px; padding: 0 24px; border-radius: 999px;
      background: rgba(255,255,255,0.72); color: var(--dark);
      font-size: 20px; font-weight: 800; line-height: 1; white-space: nowrap;
      box-shadow: 0 8px 28px rgba(61,50,41,0.08);
    }
    .mobile-close {
      position: absolute; top: max(16px, env(safe-area-inset-top)); right: max(16px, env(safe-area-inset-right));
      width: 44px; height: 44px; border: 1px solid rgba(61,50,41,0.1); border-radius: 999px;
      background: rgba(255,255,255,0.8); color: var(--dark);
      font-size: 20px; font-weight: 800; line-height: 1; cursor: pointer;
      box-shadow: 0 8px 24px rgba(61,50,41,0.08);
    }
    @media (min-width: 769px) { .mobile-menu { display: none !important; } }

    /* Section common */
    .section-label {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700; color: var(--olive);
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
      background: var(--olive-soft); padding: 4px 14px; border-radius: 999px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 40px); font-weight: 800;
      line-height: 1.3; letter-spacing: -0.5px; color: var(--dark);
      margin-bottom: 16px;
    }
    .section-desc { font-size: 16px; color: var(--gray); max-width: 560px; line-height: 1.7; }

    /* ====== HERO ====== */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; padding: 120px 0 80px;
    }
    .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 16px; border-radius: 999px;
      background: var(--orange-soft); border: 1px solid rgba(255,140,66,0.2);
      font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 20px;
      animation: float 3s ease-in-out infinite;
    }
    .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
    .hero h1 {
      font-size: clamp(36px, 5.5vw, 56px); font-weight: 900;
      line-height: 1.15; letter-spacing: -1px; color: var(--dark);
      margin-bottom: 8px;
    }
    .hero h1 .wave { display: inline-block; animation: wave 2s ease-in-out infinite; transform-origin: 70% 70%; }
    .hero-sub {
      font-size: clamp(16px, 2vw, 20px); color: var(--dark2);
      margin-bottom: 32px; font-weight: 500;
    }
    .hero-sub .highlight { color: var(--olive); font-weight: 700; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
    .btn-olive {
      padding: 14px 32px; border-radius: 999px;
      background: var(--olive); color: var(--white);
      font-size: 16px; font-weight: 700; border: none; cursor: pointer;
      transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 16px rgba(107,142,90,0.3);
    }
    .btn-olive:hover { background: var(--olive-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(107,142,90,0.4); }
    .btn-outline {
      padding: 14px 32px; border-radius: 999px;
      background: var(--white); color: var(--dark);
      font-size: 16px; font-weight: 600; border: 2px solid var(--warm-gray); cursor: pointer;
      transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { border-color: var(--olive); color: var(--olive); transform: translateY(-2px); }
    .hero-stats { display: flex; gap: 32px; }
    .hero-stat-value { font-size: 24px; font-weight: 800; color: var(--olive); }
    .hero-stat-label { font-size: 13px; color: var(--gray); margin-top: 2px; }

    /* Hero card */
    .hero-card {
      position: relative; background: var(--white);
      border-radius: var(--radius-lg); padding: 36px;
      box-shadow: var(--shadow-lg); border: 1px solid rgba(245,240,235,0.8);
    }
    .hero-card-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .hero-card-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, var(--olive), var(--olive-light));
      display: grid; place-items: center; font-size: 28px; color: var(--white);
      font-weight: 900; box-shadow: 0 4px 20px rgba(107,142,90,0.3);
    }
    .hero-card-name { font-size: 17px; font-weight: 800; color: var(--dark); }
    .hero-card-tag {
      display: inline-flex; padding: 4px 14px; border-radius: 999px;
      background: var(--peach); font-size: 13px; font-weight: 600; color: var(--orange);
    }
    .hero-card-features { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .hero-card-feat {
      padding: 8px 16px; border-radius: var(--radius-sm);
      background: var(--cream); border: 1px solid var(--warm-gray);
      font-size: 13px; font-weight: 600; color: var(--dark2);
    }
    .hero-card-bubble {
      background: var(--olive-soft); border-radius: 16px 16px 16px 4px;
      padding: 14px 20px; font-size: 14px; color: var(--dark2);
      align-self: flex-start; max-width: 90%;
    }
    .hero-card-bubble::before {
      content: ''; position: absolute; bottom: 50px; left: 70px;
      width: 0; height: 0;
      border-left: 8px solid transparent; border-right: 8px solid transparent;
      border-bottom: 10px solid var(--olive-soft);
    }

    /* Floating decorations */
    .hero-deco {
      position: absolute; z-index: 0; font-size: 24px; opacity: 0.6;
      animation: float 4s ease-in-out infinite;
    }
    .hero-deco:nth-child(1) { top: 15%; right: 10%; animation-delay: 0s; }
    .hero-deco:nth-child(2) { top: 35%; left: 5%; animation-delay: 1s; }
    .hero-deco:nth-child(3) { bottom: 20%; right: 25%; animation-delay: 2s; }
    .hero-deco:nth-child(4) { bottom: 35%; left: 15%; animation-delay: 0.5s; }

    /* Mascot bounce */
    .hero-card-inner svg use, .pillar-icon svg use {
      transition: transform 0.3s ease;
    }
    .pillar-icon:hover svg use {
      transform: scale(1.15) rotate(-5deg);
      transform-origin: center;
    }

    /* ====== PILLARS ====== */
    .pillars { padding: 100px 0; position: relative; z-index: 1; }
    .pillars-header { text-align: center; margin-bottom: 64px; }
    .pillars-header .section-desc { margin: 0 auto; }
    .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pillar-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 36px 28px; text-align: center;
      border: 1px solid rgba(245,240,235,0.8);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }
    .pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .pillar-icon {
      width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
      display: grid; place-items: center; font-size: 28px;
    }
    .pillar-card:nth-child(1) .pillar-icon { background: rgba(74,144,226,0.12); }
    .pillar-card:nth-child(2) .pillar-icon { background: rgba(255,140,66,0.12); }
    .pillar-card:nth-child(3) .pillar-icon { background: rgba(107,142,90,0.12); }
    .pillar-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
    .pillar-desc { font-size: 15px; color: var(--gray); line-height: 1.7; }

    /* ====== CAPABILITIES ====== */
    .capabilities { padding: 100px 0; background: var(--white); position: relative; z-index: 1; }
    .capabilities-header { text-align: center; margin-bottom: 64px; }
    .capabilities-header .section-desc { margin: 0 auto; }
    .capabilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cap-card {
      background: var(--cream); border-radius: var(--radius);
      padding: 28px 24px; display: flex; gap: 18px;
      border: 1px solid var(--warm-gray);
      transition: all 0.3s ease;
    }
    .cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--olive-light); }
    .cap-icon {
      width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
      display: grid; place-items: center; font-size: 22px;
      background: var(--olive-soft);
    }
    .cap-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .cap-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* ====== SCENARIOS ====== */
    .scenarios { padding: 100px 0; position: relative; z-index: 1; }
    .scenarios-header { text-align: center; margin-bottom: 64px; }
    .scenarios-header .section-desc { margin: 0 auto; }
    .scenarios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .scenario-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 32px 28px; position: relative; overflow: hidden;
      border: 1px solid rgba(245,240,235,0.8);
      box-shadow: var(--shadow-sm); transition: all 0.3s ease;
    }
    .scenario-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .scenario-role { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .scenario-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      display: grid; place-items: center; font-size: 20px;
    }
    .scenario-card:nth-child(1) .scenario-avatar { background: #E8F0FE; }
    .scenario-card:nth-child(2) .scenario-avatar { background: #FCE8E6; }
    .scenario-card:nth-child(3) .scenario-avatar { background: #E6F4EA; }
    .scenario-card:nth-child(4) .scenario-avatar { background: #FFF2E0; }
    .scenario-role-name { font-size: 16px; font-weight: 700; color: var(--dark); }
    .scenario-role-tag { font-size: 12px; color: var(--gray); }
    .scenario-bubble {
      background: var(--cream); border-radius: 16px 16px 16px 4px;
      padding: 14px 20px; font-size: 14px; color: var(--dark2); line-height: 1.6;
      margin-left: 8px;
    }
    .scenario-bubble + .scenario-bubble {
      border-radius: 16px 16px 4px 16px;
      background: var(--olive-soft); margin-left: auto; margin-right: 8px;
      margin-top: 12px;
    }

    /* ====== STEPS ====== */
    .steps { padding: 100px 0; background: var(--white); position: relative; z-index: 1; }
    .steps-header { text-align: center; margin-bottom: 64px; }
    .steps-header .section-desc { margin: 0 auto; }
    .steps-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
    .steps-list::before {
      content: ''; position: absolute; top: 48px; left: 16.6%; right: 16.6%;
      height: 3px; background: repeating-linear-gradient(90deg, var(--warm-gray) 0, var(--warm-gray) 8px, transparent 8px, transparent 16px);
    }
    .step { text-align: center; position: relative; z-index: 1; }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 20px;
      display: grid; place-items: center;
      font-size: 18px; font-weight: 800; color: var(--white);
      background: var(--olive); box-shadow: 0 3px 12px rgba(107,142,90,0.3);
    }
    .step-icon { font-size: 28px; margin-bottom: 12px; }
    .step-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .step-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* ====== CTA ====== */
    .cta-section {
      padding: 100px 0; position: relative; z-index: 1;
      text-align: center;
      background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
    }
    .cta-section .section-label { background: rgba(255,255,255,0.2); color: var(--white); }
    .cta-section .section-title { color: var(--white); }
    .cta-section .section-desc { color: rgba(255,255,255,0.85); margin: 0 auto 36px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      padding: 14px 36px; border-radius: 999px;
      background: var(--white); color: var(--olive);
      font-size: 16px; font-weight: 700; border: none; cursor: pointer;
      transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
    .btn-ghost {
      padding: 14px 36px; border-radius: 999px;
      background: transparent; color: var(--white);
      font-size: 16px; font-weight: 600; border: 2px solid rgba(255,255,255,0.4); cursor: pointer;
      transition: all 0.25s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }

    /* ====== FOOTER ====== */
    .footer {
      padding: 40px 0; background: var(--cream2); border-top: 1px solid var(--warm-gray);
      position: relative; z-index: 1;
    }
    .footer-inner {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-brand { font-weight: 800; font-size: 18px; color: var(--dark); }
    .footer-brand span { color: var(--olive); }
    .footer-copy { font-size: 13px; color: var(--gray); }
    .footer-links { display: flex; gap: 20px; font-size: 13px; color: var(--gray); }
    .footer-links a:hover { color: var(--olive); }

    /* ====== VERSION SWITCHER ====== */
        .version-switcher {
      position: fixed; right: 24px; bottom: 24px; z-index: 9999;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      min-width: 162px; height: 52px; padding: 0 24px;
      border: 0; border-radius: 999px; cursor: pointer;
      background: #080912; color: #f5f5f7;
      box-shadow: 0 18px 44px rgba(8,9,18,0.28), inset 0 0 0 1px rgba(255,255,255,0.04);
      font-size: 17px; font-weight: 800; line-height: 1; letter-spacing: 0;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      -webkit-tap-highlight-color: transparent; touch-action: manipulation; user-select: none;
    }
    .version-switcher:hover { transform: translateY(-2px); box-shadow: 0 22px 52px rgba(8,9,18,0.34), inset 0 0 0 1px rgba(255,255,255,0.06); }
    .version-switcher:focus { outline: none; }
    .version-switcher:focus-visible { outline: 2px solid rgba(196,30,36,0.55); outline-offset: 4px; }
    .version-dot { width: 10px; height: 10px; border-radius: 50%; background: #C41E24; flex: 0 0 auto; box-shadow: 0 0 0 2px rgba(196,30,36,0.08); }
    .version-label { white-space: nowrap; }
    @media (max-width: 560px) {
      .version-switcher { right: 14px; bottom: 14px; min-width: 144px; height: 46px; padding: 0 20px; font-size: 15px; gap: 8px; }
      .version-dot { width: 9px; height: 9px; }
    }
  
    /* PsyGo final footer beian alignment override */
    .footer-copy {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 8px !important;
      line-height: 1.7 !important;
      text-align: center !important;
    }
    .footer-primary {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      flex-wrap: wrap !important;
    }
    .beian-link {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 6px !important;
      white-space: nowrap !important;
      line-height: 1.4 !important;
    }
    .beian-link img {
      width: 16px !important;
      height: 16px !important;
      display: block !important;
      flex: 0 0 16px !important;
      object-fit: contain !important;
    }
    .beian-link span { display: inline-block !important; white-space: nowrap !important; }
    @media (max-width: 560px) {
      .footer-primary { flex-direction: column !important; gap: 2px !important; }
      .footer-copy, .beian-link { font-size: 12px !important; }
    }
  
    /* PsyGo final logo layout override */
    .nav-brand {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: flex-start !important;
      gap: 8px !important;
      width: auto !important;
      min-width: 0 !important;
      height: auto !important;
      line-height: 1 !important;
      flex-direction: row !important;
    }
    .nav-logo {
      width: 36px !important;
      height: 36px !important;
      max-width: 36px !important;
      min-width: 36px !important;
      flex: 0 0 36px !important;
      display: block !important;
      object-fit: contain !important;
      border-radius: 50% !important;
      background: transparent !important;
      box-shadow: none !important;
      clip-path: none !important;
    }
    .nav-name {
      display: inline-block !important;
      font-size: 20px !important;
      font-weight: 800 !important;
      line-height: 1 !important;
      white-space: nowrap !important;
    }
    .footer-brand {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 6px !important;
      width: auto !important;
      min-width: 0 !important;
      line-height: 1 !important;
      flex-direction: row !important;
    }
    .footer-logo {
      width: 18px !important;
      height: 18px !important;
      max-width: 18px !important;
      min-width: 18px !important;
      flex: 0 0 18px !important;
      display: block !important;
      object-fit: contain !important;
      border-radius: 50% !important;
      background: transparent !important;
      box-shadow: none !important;
      clip-path: none !important;
    }
    .footer-wordmark {
      display: inline-flex !important;
      align-items: baseline !important;
      font-size: 13px !important;
      font-weight: 800 !important;
      line-height: 1 !important;
      white-space: nowrap !important;
    }
  
    /* PsyGo final footer compact centered layout */
    .footer-inner {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      text-align: center !important;
    }
    .footer-links {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      gap: 12px !important;
      flex-wrap: wrap !important;
    }
  
    /* PsyGo final responsive navigation override */
    @media (max-width: 768px) {
      .nav {
        min-height: 64px !important;
        padding: 10px 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
      }
      .nav-inner {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
      }
      .nav-brand {
        flex: 0 1 auto !important;
        max-width: 148px !important;
        gap: 7px !important;
      }
      .nav-logo {
        width: 32px !important;
        height: 32px !important;
        max-width: 32px !important;
        min-width: 32px !important;
        flex-basis: 32px !important;
      }
      .nav-name {
        font-size: 18px !important;
        letter-spacing: -0.4px !important;
      }
      .nav-links {
        display: none !important;
      }
      .nav-links.open {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1002 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 24px !important;
        background: rgba(250,248,245,0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
      }
      .nav-links.open a {
        font-size: 20px !important;
        line-height: 1.2 !important;
        writing-mode: horizontal-tb !important;
        white-space: nowrap !important;
        opacity: 1 !important;
      }
      .nav-links.open .nav-cta {
        display: inline-flex !important;
        font-size: 16px !important;
        padding: 12px 24px !important;
      }
      .nav-cta {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        min-width: 88px !important;
        height: 42px !important;
        padding: 0 16px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        writing-mode: horizontal-tb !important;
      }
      .mobile-toggle,
      .nav-mobile {
        display: flex !important;
        flex: 0 0 34px !important;
        width: 34px !important;
        height: 34px !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 7px !important;
        border-radius: 10px !important;
      }
      .mobile-toggle svg {
        width: 22px !important;
        height: 22px !important;
      }
      .nav-mobile {
        flex-direction: column !important;
        gap: 4px !important;
      }
      .nav-mobile span {
        width: 20px !important;
        height: 2px !important;
      }
      .hero,
      .page-hero {
        padding-top: 112px !important;
      }
    }
    @media (max-width: 390px) {
      .nav { padding: 9px 12px !important; gap: 8px !important; }
      .nav-brand { max-width: 132px !important; }
      .nav-logo { width: 30px !important; height: 30px !important; max-width: 30px !important; min-width: 30px !important; flex-basis: 30px !important; }
      .nav-name { font-size: 16px !important; }
      .nav-cta { min-width: 78px !important; height: 40px !important; padding: 0 12px !important; font-size: 13px !important; }
      .mobile-toggle, .nav-mobile { flex-basis: 32px !important; width: 32px !important; height: 32px !important; }
    }
  