﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;}
    body{width:100%;margin:0;overflow-x:hidden;background:#F7F5F2;color:#14161F;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;}
    img,video,iframe,embed{max-width:100%;}
    a{text-decoration:none;transition:all .3s ease;}
    
    :root {
      --primary: rgb(5,150,105);
      --plum: #6D28D9;
      --aqua: #14B8A6;
      --dark: #14161F;
      --light-bg: #F7F5F2;
      --card-bg: rgba(255,255,255,.76);
      --glass-border: rgba(255,255,255,.58);
      --shadow: 0 24px 70px rgba(17,24,39,.08);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(255,255,255,.56);
      backdrop-filter:blur(20px) saturate(150%);
      border-bottom:1px solid rgba(255,255,255,.48);
      box-shadow:0 10px 40px rgba(17,24,39,.06);
    }
    .header-inner{
      width:min(1200px, calc(100% - 32px));
      min-height:76px;
      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:900;
      line-height:1.2;
      color:#14161F;
      white-space:nowrap;
      max-width:190px;
      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 14px;
      border-radius:999px;
      color:#4B5563;
      text-decoration:none;
      font-size:14px;
      font-weight:800;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{
      color:#14161F;
      background:rgba(255,255,255,.56);
      border-color:rgba(109,40,217,.18);
      box-shadow:0 8px 24px rgba(109,40,217,.10);
    }
    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(255,255,255,.54);
      border-radius:16px;
      background:rgba(255,255,255,.46);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
      box-shadow:0 8px 20px rgba(17,24,39,.08);
    }
    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#14161F;
    }
    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(15,23,42,.48);
      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:linear-gradient(180deg,#14161F 0%,#171923 100%);
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.28);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(255,255,255,.12);
      flex:0 0 auto;
    }
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;color:#F8FAFC;}
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(255,255,255,.10);
      color:#F8FAFC;
      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(255,255,255,.08);
      color:#F8FAFC;
      text-decoration:none;
      font-size:15px;
      font-weight:800;
      line-height:1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(255,255,255,.10);
    }
    .drawer-nav a:hover{
      background:rgba(109,40,217,.26);
    }
    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);}
    @media (max-width:900px){
      .header-inner{width:min(100% - 24px, 1200px);min-height:68px;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;}
    }
    @media (max-width:420px){
      .mobile-drawer{width:88vw;}
      .logo span{max-width:118px;}
    }

    .hero-section {
      position: relative;
      padding: 100px 0 140px;
      background: radial-gradient(circle at 50% 100%, rgba(5,150,105,0.06) 0%, rgba(109,40,217,0.04) 50%, #F7F5F2 100%);
      overflow: hidden;
      text-align: center;
    }
    .hero-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid var(--glass-border);
      border-radius: 99px;
      font-size: 13px;
      font-weight: 700;
      color: var(--plum);
      box-shadow: 0 4px 15px rgba(0,0,0,0.02);
      margin-bottom: 28px;
    }
    .hero-badge span {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--primary);
      border-radius: 50%;
    }
    .hero-title {
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 900;
      line-height: 1.15;
      color: var(--dark);
      margin: 0 auto 24px;
      max-width: 900px;
    }
    .hero-title span {
      background: linear-gradient(135deg, var(--primary) 0%, var(--plum) 50%, var(--aqua) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: clamp(16px, 2vw, 19px);
      color: #667085;
      line-height: 1.6;
      max-width: 680px;
      margin: 0 auto 40px;
    }
    .hero-ctas {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 70px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 28px;
      border-radius: 99px;
      font-weight: 700;
      font-size: 15px;
      transition: all .3s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 10px 30px rgba(5,150,105,0.25);
    }
    .btn-primary:hover {
      background: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(17,24,39,0.25);
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.8);
      color: var(--dark);
      border: 1px solid var(--glass-border);
    }
    .btn-secondary:hover {
      background: white;
      transform: translateY(-2px);
    }
    
    .showcase-wrapper {
      position: relative;
      max-width: 840px;
      margin: 0 auto;
      height: 380px;
    }
    .opal-card-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 500px;
      height: 250px;
      background: radial-gradient(circle, rgba(20,184,166,0.25) 0%, rgba(109,40,217,0.2) 70%, transparent 100%);
      filter: blur(40px);
      z-index: 1;
    }
    .mockup-card {
      position: absolute;
      width: 380px;
      height: 240px;
      border-radius: 24px;
      padding: 28px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 30px 60px rgba(0,0,0,0.18);
      backdrop-filter: blur(10px);
      transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 2;
    }
    .mockup-card-primary {
      background: linear-gradient(135deg, rgba(20,22,31,0.9) 0%, rgba(41,45,64,0.95) 100%);
      border: 1px solid rgba(255,255,255,0.15);
      left: 50%;
      transform: translateX(-50%) rotate(-4deg);
    }
    .mockup-card-opal {
      background: linear-gradient(135deg, rgba(109,40,217,0.7) 0%, rgba(20,184,166,0.6) 100%);
      border: 1px solid rgba(255,255,255,0.25);
      left: calc(50% + 40px);
      top: 40px;
      transform: translateX(-50%) rotate(5deg);
      z-index: 3;
    }
    .mockup-card:hover {
      transform: translateX(-50%) translateY(-10px) rotate(0deg);
      z-index: 10;
    }
    .card-logo {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 1px;
    }
    .card-chip {
      width: 45px;
      height: 32px;
      background: linear-gradient(135deg, #e5e7eb, #9ca3af);
      border-radius: 6px;
      opacity: 0.8;
    }
    .card-number {
      font-size: 20px;
      letter-spacing: 2px;
      font-family: monospace;
    }
    .card-footer-info {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: rgba(255,255,255,0.7);
    }
    .floating-badge {
      position: absolute;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      padding: 12px 20px;
      border-radius: 16px;
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 5;
    }
    .badge-left {
      left: 5%;
      top: 40%;
    }
    .badge-right {
      right: 5%;
      top: 20%;
    }
    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

    .main-section {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      padding: 80px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-subtitle {
      font-size: 14px;
      font-weight: 800;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 900;
      color: var(--dark);
      margin: 0;
    }

    .grid-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-bottom: 80px;
    }
    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      padding: 40px;
      box-shadow: var(--shadow);
      transition: all .3s ease;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(5,150,105,0.3);
    }
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: rgba(5,150,105,0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .feature-title {
      font-size: 20px;
      font-weight: 800;
      margin: 0 0 16px;
    }
    .feature-desc {
      color: #667085;
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }

    .articles-section {
      margin-top: 100px;
    }
    .article-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 32px;
    }
    .article-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.03);
      border: 1px solid rgba(229,231,235,0.6);
      transition: all .3s ease;
    }
    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }
    .article-img-wrap {
      aspect-ratio: 16 / 10;
      background: #e5e7eb;
      overflow: hidden;
      position: relative;
    }
    .article-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .article-card:hover .article-img-wrap img {
      transform: scale(1.04);
    }
    .article-body {
      padding: 28px;
    }
    .article-meta {
      display: flex;
      gap: 12px;
      font-size: 13px;
      color: #6B7280;
      margin-bottom: 14px;
    }
    .article-title-link h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--dark);
      margin: 0 0 12px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-title-link:hover h3 {
      color: var(--primary);
    }
    .article-excerpt {
      font-size: 14px;
      color: #667085;
      line-height: 1.55;
      margin: 0 0 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .tag-pill {
      font-size: 12px;
      font-weight: 700;
      color: var(--plum);
      background: rgba(109,40,217,0.06);
      padding: 4px 10px;
      border-radius: 99px;
    }

    .cta-banner {
      background: linear-gradient(135deg, var(--dark) 0%, #171923 100%);
      border-radius: 32px;
      padding: 60px;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-top: 100px;
      box-shadow: var(--shadow);
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(5,150,105,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-banner h2 {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 900;
      margin: 0 0 16px;
    }
    .cta-banner p {
      color: rgba(248, 250, 252, 0.76);
      max-width: 580px;
      margin: 0 auto 32px;
      font-size: 16px;
      line-height: 1.6;
    }

    .site-footer{
      position:relative;
      width:100%;
      background:linear-gradient(180deg,#171923 0%,#111827 100%);
      color:#F8FAFC;
      padding:60px 0 24px;
      overflow:hidden;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .site-footer .logo span{color:#F8FAFC;}
    .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,.footer-column{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(248,250,252,.76);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column h3{
      margin:0 0 14px;
      font-size:15px;
      color:#fff;
    }
    .footer-column ul{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(248,250,252,.76);
      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:#fff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(248,250,252,.62);
      font-size:13px;
    }
    .footer-bottom p{
      margin:0;
      min-width:0;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-bottom a{
      color:rgba(248,250,252,.76);
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    @media (max-width:900px){
      .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;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }

    @media (max-width: 900px) {
      .showcase-wrapper {
        height: 280px;
        max-width: 450px;
      }
      .mockup-card {
        width: 260px;
        height: 165px;
        padding: 16px;
      }
      .mockup-card-opal {
        left: calc(50% + 20px);
        top: 30px;
      }
      .floating-badge {
        font-size: 11px;
        padding: 6px 12px;
      }
      .card-logo { font-size: 14px; }
      .card-number { font-size: 14px; }
      .card-chip { width: 30px; height: 22px; }
    }