@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700;900&family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #e8e8e8;
  color: #111;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: #f5f5f3;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }

.logo {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.6; }

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid #111;
  border-radius: 50px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-start::before {
  content: '↓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn-start:hover { background: #111; color: #fff; }
.btn-start:hover::before { transform: translateY(2px); }

.hero {
  position: relative;
  background: #f5f5f3;
  padding: 28px 48px 48px;
  overflow: hidden;
  min-height: 0;
}

.hero-gradient {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 720px;
  height: 720px;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255,106,0,0.45) 0%, rgba(255,140,40,0.3) 25%, rgba(255,170,80,0.18) 45%, transparent 70%),
    radial-gradient(ellipse at 40% 60%, rgba(255,120,20,0.25) 0%, rgba(255,150,60,0.12) 40%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
}

.hero-badge-icon { flex-shrink: 0; display: block; }

.hero-badge-text { flex: 1; min-width: 200px; }

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 780px;
  margin-bottom: 22px;
}

.hero-title .highlight {
  display: inline-block;
  padding: 0 14px;
  border: 2.5px solid #111;
  border-radius: 8px;
  background: #fff;
}

.hero-bottom {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.hero-visual {
  flex: 1;
  min-width: 200px;
  max-width: 340px;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-width: 340px;
  max-height: min(280px, 38vh);
  object-fit: contain;
  display: block;
}

.social-sidebar { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.social-handle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 500;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.social-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: #111; }
.social-icon svg { width: 18px; height: 18px; }
.social-line { width: 1.5px; height: 32px; background: #111; }

.hero-info { max-width: 440px; }

.hero-desc { font-size: 14px; line-height: 1.75; color: #555; margin-bottom: 18px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid #111;
  border-radius: 50px;
  background: #111;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-download::before {
  content: '↓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
}

.btn-download:hover { background: #333; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid #111;
  border-radius: 50px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: #111; color: #fff; }

.dark-section {
  background: #111;
  color: #fff;
  padding: 80px 48px 100px;
  position: relative;
}

.dark-section::before {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  width: 50%;
  height: 60px;
  background: linear-gradient(to right, transparent, rgba(255,106,0,0.25), rgba(255,140,40,0.4));
  filter: blur(20px);
  pointer-events: none;
}

.dark-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.badge-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }

.badge-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.dark-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  max-width: 500px;
}

.dark-desc {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  padding-top: 60px;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover { border-color: rgba(255,106,0,0.5); background: rgba(255,255,255,0.08); }
.feature-card .card-icon { font-size: 28px; margin-bottom: 18px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); }

.feature-card p a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feature-card p a:hover { color: #bae6fd; }

.download-section {
  background: #f5f5f3;
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.download-section .section-gradient {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,0.2) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.download-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }

.download-header h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
}

.download-header p {
  font-size: 15px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.download-header p a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-header p a:hover { color: #111; }

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}

.dl-card:hover { border-color: #111; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.dl-card .dl-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #f0f0f0; border-radius: 12px; flex-shrink: 0; }
.dl-card .dl-icon svg { width: 24px; height: 24px; color: #333; }

.dl-card .dl-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.dl-card .dl-info { flex: 1; }
.dl-card .os-name { display: block; font-size: 15px; font-weight: 700; color: #111; margin-bottom: 2px; }
.dl-card .os-ver { display: block; font-size: 12px; color: #888; }
.dl-card .dl-arrow { font-size: 18px; color: #999; transition: transform 0.2s; }
.dl-card:hover .dl-arrow { transform: translateY(2px); color: #111; }

.stats-bar { background: #111; padding: 48px; }
.stats-grid { display: flex; justify-content: center; gap: 80px; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Noto Serif SC', serif; font-size: 36px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-item .num .accent { color: rgba(255,106,0,0.9); }
.stat-item .label { font-size: 13px; color: rgba(255,255,255,0.5); }

.blog-section { background: #f5f5f3; padding: 80px 48px; }

.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }

.blog-header h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
}

.blog-header .view-all { font-size: 14px; font-weight: 500; color: #555; border-bottom: 1px solid #ccc; padding-bottom: 2px; transition: color 0.2s; }
.blog-header .view-all:hover { color: #111; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.2s, transform 0.15s;
}

.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-2px); }
.blog-card .blog-date { font-size: 12px; color: #999; margin-bottom: 12px; }
.blog-card h3 { font-size: 16px; font-weight: 700; line-height: 1.5; margin-bottom: 10px; color: #111; }
.blog-card p { font-size: 13px; line-height: 1.7; color: #777; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .blog-link { font-size: 13px; font-weight: 600; color: #111; transition: opacity 0.2s; }
.blog-card .blog-link:hover { opacity: 0.6; }

.seo-section { background: #fff; padding: 80px 48px; }
.seo-section .seo-header { text-align: center; margin-bottom: 48px; }
.seo-section .seo-header h2 { font-family: 'Noto Serif SC', serif; font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.seo-section .seo-header p { font-size: 14px; color: #888; }
.seo-articles { max-width: 800px; margin: 0 auto; }

.seo-article { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid #eee; }
.seo-article:last-child { border-bottom: none; margin-bottom: 0; }
.seo-article h2 { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 900; margin-bottom: 24px; line-height: 1.4; }
.seo-article h3 { font-size: 17px; font-weight: 700; margin: 28px 0 12px; color: #111; }
.seo-article h4 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; color: #333; }
.seo-article p { font-size: 14px; line-height: 1.9; color: #555; margin-bottom: 12px; }
.seo-article ul, .seo-article ol { padding-left: 20px; margin-bottom: 16px; }
.seo-article li { font-size: 14px; line-height: 1.8; color: #555; margin-bottom: 4px; }
.seo-article dt { font-size: 14px; font-weight: 700; color: #333; margin: 12px 0 4px; }
.seo-article dd { font-size: 14px; line-height: 1.8; color: #555; margin-bottom: 8px; margin-left: 0; }

.site-footer { background: #111; color: #fff; padding: 64px 48px 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand-text { font-family: 'Noto Sans SC', sans-serif; font-size: 20px; font-weight: 900; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-nav { display: flex; gap: 64px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 20px 24px 36px; }
  .hero-title { font-size: clamp(26px, 8vw, 34px); margin-bottom: 16px; }
  .hero-visual img { max-height: 220px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-visual {
    margin-left: 0;
    max-width: 100%;
    order: 3;
    justify-content: flex-start;
  }
  .social-sidebar { flex-direction: row; }
  .social-handle { writing-mode: horizontal-tb; transform: none; }
  .social-line { width: 32px; height: 1.5px; }
  .dark-section { padding: 48px 24px 64px; }
  .dark-section-header { flex-direction: column; }
  .dark-desc { padding-top: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .download-section { padding: 60px 24px; }
  .download-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 24px; }
  .blog-section { padding: 48px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .seo-section { padding: 48px 24px; }
  .site-footer { padding: 40px 24px 24px; }
  .footer-top { flex-direction: column; }
  .footer-nav { flex-wrap: wrap; gap: 32px; }
  .hero-btns { flex-direction: column; }
}
