﻿:root {
      --primary: #B45309;
      --primary-hover: #92400E;
      --secondary: #FBBF24;
      --bg-light: #FFFBEB;
      --bg-white: #FFFFFF;
      --text-main: #1E293B;
      --text-muted: #64748B;
      --accent: #FEF3C7;
      --theme-legacy: rgb(108,92,231);
      --navy-dark: #0F172A;
      --navy-light: #1E293B;
      --border-color: rgba(180,83,9,0.15);
      --shadow-sm: 0 2px 8px rgba(15,23,42,0.04);
      --shadow-md: 0 10px 30px rgba(180,83,9,0.08);
      --shadow-lg: 0 20px 40px rgba(15,23,42,0.12);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
    }

    *,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;scroll-behavior:smooth;}
    body{width:100%;margin:0;overflow-x:hidden;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;color:var(--text-main);background-color:var(--bg-white);line-height:1.6;}
    img{max-width:100%;height:auto;display:block;}
    a{color:inherit;text-decoration:none;transition:all 0.25s ease;}

    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }

    .header-inner{
      width:min(1200px, calc(100% - 32px));
      min-height:72px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }

    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      max-width:100%;
      text-decoration:none;
      flex-shrink:0;
    }

    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:150px;
      object-fit:contain;
      flex-shrink:0;
    }

    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:800;
      line-height:1.2;
      color:#111827;
      white-space:nowrap;
      max-width:180px;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      white-space:nowrap;
    }

    .desktop-nav::-webkit-scrollbar{display:none;}

    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 13px;
      border-radius:999px;
      color:#334155;
      text-decoration:none;
      font-size:14px;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
    }
    .desktop-nav a:hover{
      background:var(--accent);
      color:var(--primary);
    }

    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
    }

    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#111827;
    }

    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(15,23,42,.56);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }

    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:#ffffff;
      color:#111827;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(15,23,42,.24);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }

    .drawer-head{
      min-height:76px;
      padding:16px 16px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      flex:0 0 auto;
    }

    .drawer-logo{min-width:0;}
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;}

    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      color:#111827;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }

    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      -webkit-overflow-scrolling:touch;
      padding:14px;
    }

    .drawer-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }

    .drawer-nav a{
      display:flex;
      align-items:center;
      width:100%;
      min-height:48px;
      padding:13px 14px;
      border-radius:14px;
      background:rgba(15,23,42,.045);
      color:#111827;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      line-height:1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }

    body.drawer-open{overflow:hidden;touch-action:none;}
    body.drawer-open .mobile-nav-mask{opacity:1;visibility:visible;pointer-events:auto;}
    body.drawer-open .mobile-drawer{transform:translateX(0);}

    
    .hero-layout-09 {
      padding: 80px 0 60px;
      background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 100%);
      border-bottom: 1px solid var(--border-color);
      text-align: center;
    }
    .hero-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .hero-tagline {
      display: inline-flex;
      align-items: center;
      padding: 6px 16px;
      background: var(--accent);
      color: var(--primary);
      font-size: 14px;
      font-weight: 700;
      border-radius: 99px;
      margin-bottom: 24px;
      border: 1px solid rgba(180,83,9,0.2);
    }
    .hero-layout-09 h1 {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      color: var(--navy-dark);
      line-height: 1.25;
      margin: 0 auto 16px;
      max-width: 900px;
    }
    .hero-layout-09 h1 span {
      color: var(--primary);
    }
    .hero-subtitle {
      font-size: clamp(16px, 2.5vw, 18px);
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 36px;
    }
    .capsule-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
    }
    .capsule-btn {
      padding: 10px 24px;
      border-radius: 99px;
      font-size: 14px;
      font-weight: 700;
      border: 1px solid var(--primary);
      background: transparent;
      color: var(--primary);
      cursor: pointer;
    }
    .capsule-btn.active, .capsule-btn:hover {
      background: var(--primary);
      color: var(--bg-white);
      box-shadow: 0 4px 12px rgba(180,83,9,0.2);
    }
    .portal-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      margin-top: 16px;
    }
    .portal-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 32px;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }
    .portal-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--secondary);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .portal-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--secondary);
    }
    .portal-card:hover::before {
      opacity: 1;
    }
    .portal-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: var(--accent);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .portal-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 10px;
      color: var(--navy-dark);
    }
    .portal-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 20px;
      line-height: 1.5;
    }
    .portal-action {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    
    .stats-strip {
      background: var(--navy-dark);
      color: var(--bg-white);
      padding: 40px 0;
    }
    .stats-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      text-align: center;
    }
    .stat-item h4 {
      font-size: clamp(24px, 4vw, 36px);
      color: var(--secondary);
      margin: 0 0 8px;
      font-weight: 800;
    }
    .stat-item p {
      margin: 0;
      font-size: 14px;
      color: rgba(255,255,255,0.7);
    }

    
    .section-wrap {
      padding: 80px 0;
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-title h2 {
      font-size: clamp(24px, 3.5vw, 32px);
      color: var(--navy-dark);
      margin: 0 0 12px;
      font-weight: 800;
    }
    .section-title p {
      color: var(--text-muted);
      margin: 0 auto;
      max-width: 600px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .feature-item {
      padding: 24px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      background: var(--bg-white);
    }
    .feature-item h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy-dark);
      margin: 16px 0 10px;
    }

    
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 28px;
    }
    .article-card {
      background: var(--bg-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }
    .article-thumb {
      position: relative;
      aspect-ratio: 16/10;
      background: var(--bg-light);
      overflow: hidden;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--primary);
      color: var(--bg-white);
      padding: 4px 12px;
      border-radius: 99px;
      font-size: 12px;
      font-weight: 700;
    }
    .article-info {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .article-meta {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .article-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 12px;
      line-height: 1.4;
    }
    .article-card h3 a:hover {
      color: var(--primary);
    }
    .article-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 20px;
      line-height: 1.6;
      flex-grow: 1;
    }
    .article-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid rgba(15,23,42,0.06);
    }
    .article-more {
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
    }

    
    .cta-box {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
      color: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 60px 40px;
      text-align: center;
      margin-top: 40px;
      position: relative;
      overflow: hidden;
    }
    .cta-box h2 {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 800;
      margin: 0 0 16px;
      color: var(--secondary);
    }
    .cta-box p {
      max-width: 600px;
      margin: 0 auto 32px;
      color: rgba(255,255,255,0.8);
    }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      padding: 14px 36px;
      background: var(--primary);
      color: var(--bg-white);
      border-radius: 99px;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(180,83,9,0.3);
    }
    .cta-btn:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    
    .site-footer{
      position:relative;
      z-index:1;
      width:100%;
      background:#0f172a;
      color:#e5e7eb;
      padding:56px 0 24px;
      overflow:hidden;
    }

    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(260px,1.35fr) repeat(3, minmax(150px,1fr));
      gap:28px;
      align-items:start;
    }

    .footer-brand{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(229,231,235,.74);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-logo span{color:#ffffff;}
    .footer-column{min-width:0;}
    .footer-column h3{margin:0 0 14px;font-size:15px;color:#ffffff;}
    .footer-column ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;}
    .footer-column li{min-width:0;}
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(229,231,235,.74);
      text-decoration:none;
      font-size:14px;
      line-height:1.55;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{color:#ffffff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(229,231,235,.62);
      font-size:13px;
    }
    .footer-bottom p{margin:0;min-width:0;word-break:break-word;overflow-wrap:anywhere;}
    .footer-bottom a{color:rgba(229,231,235,.74);text-decoration:none;word-break:break-word;overflow-wrap:anywhere;}

    @media (max-width: 900px){
      .header-inner{width:min(100% - 24px, 1200px);min-height:64px;gap:12px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
      .footer-inner{grid-template-columns:1fr 1fr;gap:24px;}
      .footer-brand{grid-column:1 / -1;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
    }

    @media (max-width: 640px){
      .footer-inner{grid-template-columns:1fr;}
      .portal-grid{grid-template-columns: 1fr;}
    }

    @media (max-width: 420px){
      .mobile-drawer{width:88vw;}
      .logo span{max-width:112px;}
      .drawer-logo span{max-width:118px;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }