﻿:root {
      --primary: rgb(234,67,53);
      --twilight-blue: #4F7CFF;
      --rose-gold: #F59EBC;
      --mist-gray: #f8fafc;
      --dark-bg: #0f172a;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --border-color: rgba(15,23,42,.08);
      --card-bg: #ffffff;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-main);
      background-color: var(--mist-gray);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 900;
      width: 100%;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-color);
    }

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

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

    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      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 {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      min-width: 0;
      flex: 1;
      overflow-x: auto;
      scrollbar-width: none;
    }

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

    .desktop-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      color: #334155;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .desktop-nav a:hover {
      background: rgba(79, 124, 255, 0.08);
      color: var(--twilight-blue);
    }

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

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

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

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

    .drawer-head {
      min-height: 76px;
      padding: 18px 18px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--border-color);
      flex-shrink: 0;
    }

    .drawer-logo img {
      height: 36px;
      max-width: 130px;
    }

    .drawer-logo span {
      max-width: 150px;
      font-size: 17px;
    }

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

    .drawer-body {
      flex: 1;
      overflow-y: auto;
      -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, 0.04);
      color: #111827;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    .drawer-nav a:hover {
      background: rgba(79, 124, 255, 0.12);
      color: var(--twilight-blue);
    }

    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-10 {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: calc(100vh - 72px);
      min-height: calc(100dvh - 72px);
      display: block;
      background: #0f172a;
      color: #ffffff;
    }

    .hero-layout-10 .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(135deg, rgba(15,23,42,.88), rgba(79,124,255,.52), rgba(244,114,182,.38)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
      transform: scale(1.02);
    }

    .hero-layout-10 .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 18% 18%, rgba(79,124,255,.38), transparent 30%),
        radial-gradient(circle at 78% 62%, rgba(251,191,36,.22), transparent 28%),
        linear-gradient(180deg, rgba(15,23,42,.25), rgba(15,23,42,.78));
      pointer-events: none;
    }

    .hero-layout-10 .hero-shell {
      position: relative;
      z-index: 1;
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      min-height: calc(100vh - 72px);
      min-height: calc(100dvh - 72px);
      padding: 96px 0 52px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 44px;
    }

    .hero-layout-10 .hero-copy-block {
      width: min(820px, 100%);
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-layout-10 .hero-kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      color: rgba(255,255,255,.9);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.4;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      white-space: normal;
    }

    .hero-layout-10 h1 {
      margin: 22px 0 0;
      max-width: 900px;
      font-size: clamp(42px, 6vw, 82px);
      line-height: 1.02;
      letter-spacing: -.055em;
      color: #ffffff;
      text-wrap: balance;
    }

    .hero-layout-10 .hero-desc {
      margin: 22px 0 0;
      max-width: 720px;
      color: rgba(255,255,255,.82);
      font-size: clamp(16px, 1.5vw, 20px);
      line-height: 1.8;
      text-wrap: pretty;
    }

    .hero-layout-10 .hero-actions {
      margin-top: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-layout-10 .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      max-width: 100%;
    }

    .hero-layout-10 .hero-btn-primary {
      background: linear-gradient(135deg, #4F7CFF, #F59EBC);
      color: #ffffff;
      box-shadow: 0 18px 45px rgba(79,124,255,.35);
    }

    .hero-layout-10 .hero-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 50px rgba(79,124,255,.5);
    }

    .hero-layout-10 .hero-btn-secondary {
      background: rgba(255,255,255,.12);
      color: #ffffff;
      border: 1px solid rgba(255,255,255,.24);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .hero-layout-10 .hero-btn-secondary:hover {
      background: rgba(255,255,255,0.2);
    }

    .hero-layout-10 .hero-island {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(260px, .95fr) minmax(420px, 1.35fr);
      gap: 18px;
      align-items: stretch;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 32px;
      background: rgba(255,255,255,.14);
      box-shadow: 0 26px 80px rgba(15,23,42,.36);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
    }

    .hero-layout-10 .island-main,
    .hero-layout-10 .island-card {
      min-width: 0;
      border-radius: 24px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.18);
    }

    .hero-layout-10 .island-main {
      padding: 24px;
    }

    .hero-layout-10 .island-eyebrow,
    .hero-layout-10 .island-card span {
      display: inline-flex;
      width: max-content;
      max-width: 100%;
      color: #FDE68A;
      font-size: 13px;
      font-weight: 900;
      line-height: 1.4;
    }

    .hero-layout-10 .island-main strong {
      display: block;
      margin-top: 10px;
      color: #ffffff;
      font-size: 24px;
      line-height: 1.25;
      letter-spacing: -.025em;
    }

    .hero-layout-10 .island-main p {
      margin: 12px 0 0;
      color: rgba(255,255,255,.78);
      line-height: 1.75;
      font-size: 14px;
    }

    .hero-layout-10 .island-grid {
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .hero-layout-10 .island-card {
      padding: 20px;
    }

    .hero-layout-10 .island-card strong {
      display: block;
      margin-top: 12px;
      color: #ffffff;
      font-size: 17px;
      line-height: 1.35;
    }

    .hero-layout-10 .island-card p {
      margin: 8px 0 0;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.6;
    }

    
    .section-container {
      width: min(1200px, calc(100% - 32px));
      margin: 80px auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title h2 {
      font-size: clamp(28px, 4vw, 38px);
      color: var(--dark-bg);
      letter-spacing: -0.02em;
    }

    .section-title p {
      color: var(--text-muted);
      margin-top: 12px;
      font-size: 16px;
    }

    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 32px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(79, 124, 255, 0.1);
      color: var(--twilight-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 24px;
    }

    .feature-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--dark-bg);
    }

    .feature-card p {
      color: var(--text-muted);
      font-size: 15px;
    }

    
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
    }

    .article-card {
      background: var(--card-bg);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    }

    .article-image {
      position: relative;
      aspect-ratio: 16/10;
      background: #e2e8f0;
      overflow: hidden;
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .article-title {
      font-size: 18px;
      line-height: 1.4;
      font-weight: 700;
      color: var(--dark-bg);
      margin-bottom: 10px;
    }

    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-tags {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .article-tag {
      background: var(--mist-gray);
      color: var(--text-muted);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 500;
    }

    
    .tag-cloud-box {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 32px;
      margin-top: 40px;
    }

    .tag-cloud-box h3 {
      font-size: 18px;
      margin-bottom: 20px;
      color: var(--dark-bg);
    }

    .tag-list-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag-item {
      display: inline-flex;
      align-items: center;
      background: var(--mist-gray);
      color: var(--text-main);
      padding: 8px 16px;
      border-radius: 99px;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid transparent;
    }

    .tag-item:hover {
      background: rgba(79, 124, 255, 0.08);
      color: var(--twilight-blue);
      border-color: rgba(79, 124, 255, 0.2);
    }

    .tag-count {
      margin-left: 6px;
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .cta-banner {
      background: linear-gradient(135deg, var(--dark-bg), var(--twilight-blue));
      color: #ffffff;
      border-radius: 32px;
      padding: 60px 40px;
      text-align: center;
      margin: 80px auto;
      width: min(1200px, calc(100% - 32px));
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(245, 158, 188, 0.2), transparent 50%);
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: clamp(26px, 3.5vw, 36px);
      margin-bottom: 16px;
    }

    .cta-content p {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 30px;
      font-size: 16px;
    }

    
    .site-footer {
      width: 100%;
      background: #0f172a;
      color: #e5e7eb;
      overflow: hidden;
    }

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

    .footer-logo span {
      color: #ffffff;
    }

    .footer-brand p {
      margin: 18px 0 0;
      color: rgba(226, 232, 240, 0.78);
      line-height: 1.8;
      font-size: 14px;
      max-width: 420px;
    }

    .footer-column h3 {
      margin: 0 0 14px;
      color: #ffffff;
      font-size: 15px;
      font-weight: 800;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-column li,
    .footer-column a {
      color: rgba(226, 232, 240, 0.78);
      font-size: 14px;
      line-height: 1.55;
      text-decoration: none;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    .footer-column a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      padding: 18px 0 24px;
      border-top: 1px solid rgba(226, 232, 240, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: rgba(226, 232, 240, 0.68);
      font-size: 13px;
      line-height: 1.6;
    }

    
    @media (max-width: 900px) {
      .hero-layout-10 {
        min-height: auto;
      }

      .hero-layout-10 .hero-shell {
        width: min(100% - 24px, 1200px);
        min-height: auto;
        padding: 72px 0 34px;
        justify-content: flex-start;
        gap: 28px;
      }

      .hero-layout-10 .hero-copy-block {
        align-items: flex-start;
        text-align: left;
        margin: 0;
      }

      .hero-layout-10 h1 {
        margin-top: 18px;
        font-size: clamp(34px, 11vw, 54px);
        line-height: 1.06;
        letter-spacing: -.045em;
      }

      .hero-layout-10 .hero-desc {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.75;
      }

      .hero-layout-10 .hero-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        margin-top: 24px;
      }

      .hero-layout-10 .hero-btn {
        min-height: 46px;
        padding: 0 18px;
        font-size: 14px;
      }

      .hero-layout-10 .hero-island {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 24px;
      }

      .hero-layout-10 .island-main {
        padding: 20px;
        border-radius: 20px;
      }

      .hero-layout-10 .island-main strong {
        font-size: 20px;
      }

      .hero-layout-10 .island-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .hero-layout-10 .island-card {
        padding: 18px;
        border-radius: 20px;
      }

      .header-inner {
        width: min(100% - 24px, 1200px);
        min-height: 64px;
        gap: 12px;
      }

      .desktop-nav {
        display: none !important;
      }

      .mobile-menu-btn {
        display: inline-flex !important;
      }

      .logo img {
        height: 34px;
        max-width: 120px;
      }

      .logo span {
        font-size: 16px;
        max-width: 150px;
      }

      .footer-inner {
        width: min(100% - 24px, 1200px);
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
        padding: 42px 0 28px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        width: min(100% - 24px, 1200px);
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .hero-layout-10 .hero-shell {
        width: min(100% - 20px, 1200px);
        padding: 56px 0 28px;
        gap: 22px;
      }

      .hero-layout-10 h1 {
        font-size: clamp(30px, 12vw, 42px);
      }

      .hero-layout-10 .hero-kicker {
        font-size: 12px;
        padding: 7px 11px;
      }

      .hero-layout-10 .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-layout-10 .hero-btn {
        width: 100%;
      }

      .hero-layout-10 .hero-island {
        padding: 12px;
        border-radius: 22px;
      }

      .hero-layout-10 .island-main,
      .hero-layout-10 .island-card {
        padding: 16px;
        border-radius: 18px;
      }

      .mobile-drawer {
        width: 88vw;
      }

      .logo span, .drawer-logo span {
        max-width: 120px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }
    }