﻿/* ===== CSS Variables & Reset ===== */
:root {
  --bg-primary: #FFF9E6;
  --bg-secondary: #FDF3D7;
  --bg-card: rgba(255, 252, 240, 0.85);
  --bg-card-hover: rgba(255, 247, 220, 0.95);
  --accent-cyan: #C8962E;
  --accent-cyan-dim: rgba(200, 150, 46, 0.15);
  --accent-cyan-glow: rgba(200, 150, 46, 0.25);
  --accent-orange: #D4722A;
  --accent-orange-dim: rgba(212, 114, 42, 0.15);
  --text-primary: #3D2914;
  --text-secondary: #6B5344;
  --text-muted: #9C8B7A;
  --border-subtle: rgba(200, 150, 46, 0.2);
  --border-card: rgba(200, 150, 46, 0.12);
  --gradient-cyan: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
  --gradient-orange: linear-gradient(135deg, #D4722A 0%, #E8943A 100%);
  --gradient-text: linear-gradient(135deg, #C8962E 0%, #F0C850 50%, #C8962E 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Background Effects ===== */
.bg-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(200, 150, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 150, 46, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  position: fixed;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-2 {
  position: fixed;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212, 114, 42, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 249, 230, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
    width: 30px;
    height: 30px;
}

.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #FFF9E6;
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-cyan);
  color: #FFF9E6;
  box-shadow: 0 4px 20px var(--accent-cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-cyan-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn-secondary:hover {
  background: var(--accent-cyan-dim);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-cyan-dim);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent-cyan);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -1px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-line-1 {
  text-align: left;
  color: var(--accent-cyan);
  font-size: 56px;
}

.hero-title .title-line-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-left: 32px;
}

.hero-title .title-sub {
  display: inline-block;
}

.hero-title .title-sub-1 {
  color: #2A1A0A;
}

.hero-title .title-sub-2 {
  color: #2A1A0A;
}

.hero-title .title-divider {
  color: #8B6914;
  font-weight: 400;
  font-size: 0.8em;
}

.hero-title .title-line-3 {
  text-align: right;
  color: var(--accent-orange);
  padding-left: 64px;
}

.hero-title .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

/* ===== Platform Download Buttons ===== */
.platform-download {
  margin-bottom: 40px;
}

.platform-download-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-download-label::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--gradient-cyan);
  border-radius: 2px;
}

.platform-grid ul {
    display: flex;
    justify-content: space-between;
}

li {
    list-style: none;
}

.pcgn {
    position: relative;
}

.modern-download-box {
    position: relative;
    width: 8.3333vw;
    height: 8.3333vw;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0.5208vw 1.0417vw;
    background: rgb(255, 255, 255);
    border-radius: 1.2500vw;
    overflow: visible;
}

.state-default {
    opacity: 1;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}

.modern-download-box .state-default, .modern-download-box .state-hover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 1.2500vw;
    box-sizing: border-box;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
    background: rgb(255, 255, 255);
    border-radius: 1.2500vw;
}

.modern-download-box .icon-tr {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 2.8125vw;
    height: 2.8125vw;
}

.modern-download-box .icon-main {
    width: 4.1667vw;
    height: auto;
    margin-bottom: 0.8333vw;
}

.modern-download-box .txt {
    font-size: 0.8333vw;
    color: #666;
    margin-top: 0;
    line-height: 1;
}

.modern-download-box .icon-tr {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 2.8125vw;
    height: 2.8125vw;
}

.modern-download-box .icon-main {
    width: 4.1667vw;
    height: auto;
    margin-bottom: 0.8333vw;
}

.modern-download-box .txt {
    font-size: 0.8333vw;
    color: rgb(102, 102, 102);
    margin-top: 0px;
    line-height: 1;
}

.modern-download-box .state-hover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
}

.modern-download-box .state-hover {
    opacity: 0;
    z-index: 2;
    background: rgb(255, 255, 255);
}

.btn-warp ul li:hover>a,
.btn-warp ul li:hover>.modern-download-box {
    transform: translateY(-0.2083vw);
}

.btn-warp ul li>a:hover,
.btn-warp ul li>.modern-download-box:hover {
    outline: none;
    text-decoration: none;
    color: #fff;
}

.modern-download-box:hover .state-hover {
    opacity: 1;
}

.modern-download-box:hover .state-default {
    opacity: 0;
}

.qr-code-container {
    width: 4.1667vw;
    height: 4.1667vw;
    margin: 0 auto;
}

.qr-code-container img {
    width: 4.1667vw;
    height: 4.1667vw;
}

.qr-popup {
    display: none;
    position: absolute;
    bottom: 75%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 10;
    margin-bottom: 10px;
    width: 120px;
    height: 120px;
    box-sizing: content-box;
}

/* Arrow for popup */
.qr-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.more-list-item:hover .qr-popup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-list-item:hover .qr-popup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-list-item:first-child {
    border-top-left-radius: 1.2500vw;
    border-top-right-radius: 1.2500vw;
}
.more-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 33.33%;
    text-decoration: none;
    color: #666;
    font-size: 0.8333vw;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s;
}

.more-list-item .mini-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

.qr-popup img {
    width: 100%;
    height: 100%;
    display: block;
}

.modern-download-box .state-hover .txt {
    margin-top: 0.8333vw;
    display: block;
}
.modern-download-box .txt {
    font-size: 0.8333vw;
    color: #666;
    margin-top: 0;
    line-height: 1;
}

.state-hover .in {
    display: none;
}

.modern-download-box .state-hover .txt {
    margin-top: 0.8333vw;
    display: block;
}

.modern-download-box .txt {
    font-size: 0.8333vw;
    color: #666;
    margin-top: 0;
    line-height: 1;
}

.platform-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 22px 10px 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 150, 46, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 150, 46, 0.2);
}

.platform-card:hover::before {
  transform: scaleX(1);
}

.platform-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
}

.platform-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.platform-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  opacity: 0.35;
}

.platform-badge svg {
  width: 100%;
  height: 100%;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
}

.platform-download-full {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  margin-top: 48px;
  width: 100%;
}

.platform-download-full .platform-card {
  padding: 28px 12px 20px;
}

.platform-download-full .platform-icon {
  width: 48px;
  height: 48px;
}

.platform-download-full .platform-name {
  font-size: 14px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-image-glow {
  position: absolute;
  top: 10%; left: 10%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, var(--accent-cyan-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: float-glow 6s ease-in-out infinite;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(10px, -10px) scale(1.1); opacity: 0.8; }
}

.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(200, 150, 46, 0.15);
  animation: float-card 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%; left: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 15%; right: -20px;
  animation-delay: 2s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-card-icon.cyan {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
}

.float-card-icon.orange {
  background: var(--accent-orange-dim);
  color: var(--accent-orange);
}

.float-card-text {
  display: flex;
  flex-direction: column;
}

.float-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.float-card-desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== Section Common ===== */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Features Strip ===== */
.features-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}
.features-strip-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.strip-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 2;
}

.strip-text {
  display: flex;
  flex-direction: column;
}

.strip-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.strip-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== Cloud Hosting Section ===== */
.hosting-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hosting-image {
  position: relative;
}

.hosting-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.hosting-image-border {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-cyan), transparent, var(--accent-orange));
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
}

.hosting-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hosting-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hosting-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-check svg {
  width: 16px; height: 16px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 3;
}

.benefit-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== Features Grid ===== */
.features-section {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-subtle);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(200, 150, 46, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--accent-cyan);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  stroke: #FFF9E6;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Multi-Instance Section ===== */
.multi-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

.multi-content {
  text-align: center;
  margin-bottom: 60px;
}

.multi-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.multi-content p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.multi-devices {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  perspective: 1000px;
}

.device-card {
  width: 160px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.device-card:nth-child(odd) {
  transform: translateY(20px);
}

.device-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 40px var(--accent-cyan-glow);
  z-index: 10;
}

.device-screen {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #FFF5D6 0%, #F5E6B8 100%);
  border-radius: 12px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-screen::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(200, 150, 46, 0.1) 0%, transparent 100%);
}

.device-screen-icon {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.device-screen-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.8;
}

.device-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.device-status {
  font-size: 11px;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.device-status-dot {
  width: 5px; height: 5px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.multi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.multi-stat {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
}

.multi-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.multi-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== Scenarios Section ===== */
.scenarios-section {
  background: var(--bg-primary);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scenario-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.scenario-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, var(--accent-cyan-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.scenario-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
}

.scenario-card:hover::after {
  opacity: 1;
}

.scenario-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.scenario-icon.game { background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.05)); }
.scenario-icon.marketing { background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05)); }
.scenario-icon.office { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05)); }
.scenario-icon.testing { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05)); }

.scenario-icon svg {
  width: 32px; height: 32px;
  fill: none;
  stroke-width: 1.8;
}

.scenario-icon.game svg { stroke: #FF6B35; }
.scenario-icon.marketing svg { stroke: #00D4FF; }
.scenario-icon.office svg { stroke: #8B5CF6; }
.scenario-icon.testing svg { stroke: #22C55E; }

.scenario-content {
  position: relative;
  z-index: 1;
}

.scenario-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.scenario-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.scenario-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.scenario-tag {
  padding: 4px 12px;
  background: rgba(200, 150, 46, 0.08);
  border: 1px solid rgba(200, 150, 46, 0.15);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== News Section ===== */
.news-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
    padding-bottom: 24px;
}

.news-card .label {
    display: flex;
    justify-content: space-between;
    color: #000;
    padding: 24px;
}

.news-card .label div {
    width: 20px;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-subtle);
  box-shadow: 0 20px 40px rgba(200, 150, 46, 0.15);
}

.news-image {
  width: 100%;
  aspect-ratio: 16/9;
  /*background: linear-gradient(135deg, #FFF5D6 0%, #F0DFA8 100%);*/
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

.news-image img {
    width: 100%;
    height: 100%;
}

.news-image svg {
  width: 60px; height: 60px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 1;
  opacity: 0.5;
}

.news-content {
  padding: 24px 24px 0 24px;
}

.news-category {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news-title {
  font-size: 16px;
  font-weight: normal;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
    padding: 0 24px;
}

.news-title span {
    margin-right: 10px;
}

.news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--accent-cyan-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-container h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-container p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 18px; height: 18px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}
.menu-list,.menu-btn {display: none}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-container { padding: 0 24px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 14px; }

  .hero { padding: 100px 0 60px; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
  .hero-title { font-size: 40px; }
  .hero-title .title-line-1 { font-size: 44px; }
  .hero-subtitle { font-size: 16px; }

  .platform-download-full { padding: 0 24px; margin-top: 40px; }
  .platform-download-full .platform-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .platform-download-full .platform-card { padding: 22px 10px 16px; }
  .platform-download-full .platform-icon { width: 40px; height: 40px; }
  .platform-download-full .platform-name { font-size: 13px; }

  .section { padding: 70px 0; }
  .section-container { padding: 0 24px; }
  .section-title { font-size: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hosting-grid { grid-template-columns: 1fr; gap: 36px; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-strip-container { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .multi-devices { flex-wrap: wrap; justify-content: center; }
  .cta-buttons { flex-wrap: wrap; justify-content: center; }

}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    .menu-list {
        overflow: hidden;
        position: absolute;
        height: 0;
        left: 0;
        top: 55px;
        width: 100%;
        display: flex;
        flex-direction: column;
        transition: height .5s;
    }
    .menu-list .menu-list-item {
        display: flex;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        height: 10.6666666667vw;
        color: #333;
        font-size: 3.2vw;
        background: #fff;
        border-bottom: .2666666667vw solid hsla(0, 0%, 90.2%, .2);
        box-sizing: border-box;
        font-weight: 700;
    }
    .menu-list .menu-list-on {
        background: #fffaf4;
        color: #ffb83d;
        font-weight: 700;
    }
  /* Navigation */
  .nav { padding: 8px 0; }
  .nav-container { padding: 0 14px; }
  .nav-links { display: none; }
  .nav-logo-icon { width: 30px; height: 30px; font-size: 14px; }
  .nav-logo-text { font-size: 16px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 6px 12px; font-size: 11px; border-radius: 6px; }
  .nav-cta .btn-secondary { padding: 6px 10px; }

  /* Hero */
  .hero { padding: 76px 0 36px; min-height: auto; }
  .hero-container { padding: 0 14px; gap: 20px; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 100%; }
  .hero-badge { font-size: 11px; padding: 4px 10px; margin-bottom: 12px; }
  .hero-title { font-size: 24px; gap: 4px; margin-bottom: 12px; }
  .hero-title .title-line-1 { font-size: 28px; }
  .hero-title .title-line-2 { padding-left: 10px; gap: 6px; font-size: 20px; }
  .hero-title .title-divider { font-size: 0.7em; }
  .hero-subtitle { font-size: 13px; line-height: 1.6; margin-bottom: 18px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-value { font-size: 20px; }
  .hero-stat-label { font-size: 11px; margin-top: 2px; }
  .hero-float-card { display: none; }

  /* Platform Download - Hidden on Mobile */
  .platform-download-full { display: none; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-container { padding: 0 14px; }
  .section-header { margin-bottom: 28px; }
  .section-eyebrow { font-size: 11px; margin-bottom: 8px; }
  .section-title { font-size: 22px; margin-bottom: 10px; }
  .section-desc { font-size: 13px; line-height: 1.6; }

  /* Features Strip */
  .features-strip { padding: 20px; margin: 10px; border: 1px solid var(--border-subtle); }
  .features-strip-container { padding: 0 14px; }
  .strip-item { gap: 10px; }
  .strip-icon { width: 36px; height: 36px; border-radius: 10px; }
  .strip-icon svg { width: 18px; height: 18px; }
  .strip-title { font-size: 12px; }
  .strip-desc { font-size: 10px; }

  /* Feature Cards */
  .features-grid { gap: 12px; text-align: center }
  .feature-card { padding: 20px 18px; border-radius: 14px; }
  .feature-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-card h3 { font-size: 15px; margin-bottom: 6px; }
  .feature-card p { font-size: 12px; line-height: 1.6; }

  /* Hosting */
  .hosting-grid { gap: 24px; }
  .hosting-content h2 { font-size: 22px; margin-bottom: 12px; }
  .hosting-content p { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
  .hosting-benefits { gap: 14px; }
  .benefit-item { gap: 12px; }
  .benefit-check { width: 22px; height: 22px; }
  .benefit-check svg { width: 12px; height: 12px; }
  .benefit-text h4 { font-size: 14px; margin-bottom: 2px; }
  .benefit-text p { font-size: 12px; }

  /* Multi Instance */
  .multi-content { margin-bottom: 28px; }
  .multi-content h2 { font-size: 22px; margin-bottom: 10px; }
  .multi-content p { font-size: 13px; }
  .multi-devices { gap: 8px; margin-bottom: 28px; }
  .device-card { width: 90px; padding: 12px 8px; border-radius: 14px; }
  .device-card:nth-child(odd) { transform: translateY(12px); }
  .device-screen { margin-bottom: 8px; border-radius: 10px; }
  .device-screen-icon { width: 28px; height: 28px; }
  .device-name { font-size: 11px; margin-bottom: 2px; }
  .device-status { font-size: 10px; }
  .multi-stats { gap: 12px; }
  .multi-stat { padding: 20px; border-radius: 14px; }
  .multi-stat-value { font-size: 28px; margin-bottom: 4px; }
  .multi-stat-label { font-size: 10px; }

  /* Scenarios */
  .scenarios-grid { gap: 12px; }
  .scenario-card { align-items: center; padding: 20px; border-radius: 16px; gap: 14px; }
  .scenario-icon { width: 48px; height: 48px; border-radius: 12px; }
  .scenario-icon svg { width: 24px; height: 24px; }
  .scenario-content h3 { font-size: 17px; margin-bottom: 6px; }
  .scenario-content p { font-size: 12px; line-height: 1.6; margin-bottom: 10px; }
  .scenario-tags { gap: 6px; }
  .scenario-tag { font-size: 10px; padding: 3px 5px; }

  /* News */
  .news-grid { grid-template-columns: 1fr; gap: 12px; }
  .news-card { border-radius: 14px; }
  .news-content { padding: 16px; }
  .news-category { font-size: 10px; padding: 3px 8px; margin-bottom: 8px; }
  .news-title { font-size: 14px; margin-bottom: 6px; }
  .news-excerpt { font-size: 12px; }

  /* CTA */
  .cta-section { padding: 40px 0; }
  .cta-container { padding: 0 14px; }
  .cta-container h2 { font-size: 22px; margin-bottom: 12px; }
  .cta-container p { font-size: 13px; margin-bottom: 24px; }
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-lg { padding: 12px 24px; font-size: 14px; border-radius: 8px; }

  /* Footer */
  .footer { padding: 32px 0 20px; }
  .footer-container { padding: 0 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 20px}
  .footer-brand p { font-size: 12px; margin-top: 10px; line-height: 1.6; max-width: 100% }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-col ul { gap: 8px; flex-direction: row; justify-content: space-between; }
  .footer-col a { font-size: 12px; }
  .footer-contact-item { font-size: 12px; margin-bottom: 8px; gap: 8px; }
  .footer-contact-item svg { width: 16px; height: 16px; }
  .footer-bottom { padding-top: 16px; flex-direction: row; align-items: flex-start; gap: 10px; }
  .footer-copyright,.footer-filing, .footer-cybersecurity { font-size: 11px!important; }
  .footer-links { gap: 14px; display: flex; justify-content: center; width: 100% }
  .footer-links a { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero { padding: 70px 0 30px; }
  .hero-title { font-size: 20px; gap: 3px; margin-bottom: 10px; }
  .hero-title .title-line-1 { font-size: 24px; }
  .hero-title .title-line-2 { font-size: 17px; padding-left: 8px; gap: 4px; }
  .hero-subtitle { font-size: 12px; margin-bottom: 14px; }
  .hero-stats { gap: 12px; }
  .hero-stat-value { font-size: 18px; }
  .hero-stat-label { font-size: 10px; }
  .device-card { width: 80px; padding: 10px 6px; }
  .device-card:nth-child(odd) { transform: translateY(10px); }
  .multi-devices { gap: 6px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn { padding: 5px 10px; font-size: 10px; border-radius: 5px; }
  .nav-cta .btn-secondary { padding: 5px 8px; }
  .nav-logo-text { font-size: 14px; }
  .nav-logo-icon { width: 28px; height: 28px; font-size: 13px; }
  .section { padding: 32px 0; }
  .section-title { font-size: 20px; }
  .feature-card { padding: 16px 14px; }
  .feature-icon { width: 40px; height: 40px;margin: 10px auto; }
  .feature-icon svg { width: 20px; height: 20px; }
  .feature-card h3 { font-size: 14px; }
  .feature-card p { font-size: 11px; }
}

/* ===== Scroll Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal img {
    width: 100%;
    border-radius: 20px;
}

.footer-filing, .footer-cybersecurity { font-size: 13px;color: var(--text-muted); }