/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral: #FF6B6B;
  --coral-dark: #e85555;
  --coral-light: #fff0f0;
  --coral-mid: #ffeded;
  --black: #111111;
  --gray-900: #1a1a1a;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #cccccc;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --border: #e8e8e8;
  --border-dark: #d0d0d0;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --font: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--black);
}
.logo-icon { height: 32px; width: auto; display: block; }
.logo-text { color: var(--black); letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-xs);
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--black);
  background: var(--gray-100);
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-xs);
  margin-left: 8px;
  transition: background 0.15s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gray-900) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--black);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  gap: 4px;
  background: var(--white);
}
.mobile-menu a {
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--black); background: var(--gray-100); }
.mobile-menu.open { display: flex; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-xs);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 2px 12px rgba(255,107,107,0.3);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,107,107,0.4); }

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--border-dark);
}
.btn-ghost:hover { color: var(--black); border-color: var(--black); background: var(--gray-100); }

.btn-outline {
  background: transparent;
  color: var(--coral);
  border: 1.5px solid var(--coral);
}
.btn-outline:hover { background: var(--coral); color: #fff; }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--gray-900); transform: translateY(-1px); }

.btn-full { width: 100%; }
.btn-lg { padding: 15px 40px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* ===== Section Shared ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Hero ===== */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-mid);
  color: var(--coral-dark);
  border: 1px solid rgba(255,107,107,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  color: var(--black);
}

.coral-text { color: var(--coral); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  color: var(--gray-500);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.hero-note span { color: var(--gray-300); margin: 0 4px; }

/* Hero Right — Anime Character Illustration */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 520px;
}

.hero-scene {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #c8e6c9 0%, #a5d6a7 30%, #81c784 55%, #66bb6a 70%, #4caf50 85%, #388e3c 100%);
}

/* Ghibli-style sky */
.hero-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255,255,255,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 15%, rgba(255,255,255,0.4) 0%, transparent 50%),
    linear-gradient(180deg, #87ceeb 0%, #b0e0e6 25%, #c8e6c9 50%, transparent 100%);
  z-index: 1;
}

/* Rolling hills */
.hero-scene::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 55%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, #4caf50 0%, #66bb6a 40%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 100%, #388e3c 0%, #4caf50 50%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, #2e7d32 0%, #388e3c 50%, transparent 70%);
  z-index: 2;
}

.hero-clouds {
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.cloud {
  background: rgba(255,255,255,0.85);
  border-radius: 100px;
  position: relative;
  flex-shrink: 0;
}
.cloud-1 { width: 80px; height: 28px; top: 0; }
.cloud-2 { width: 120px; height: 36px; top: 20px; margin-left: 40px; }
.cloud-3 { width: 60px; height: 22px; top: 5px; margin-left: auto; }

.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
}
.cloud-1::before { width: 40px; height: 40px; top: -18px; left: 12px; }
.cloud-1::after { width: 30px; height: 30px; top: -12px; left: 36px; }
.cloud-2::before { width: 55px; height: 55px; top: -25px; left: 18px; }
.cloud-2::after { width: 40px; height: 40px; top: -18px; left: 55px; }
.cloud-3::before { width: 30px; height: 30px; top: -14px; left: 8px; }
.cloud-3::after { width: 22px; height: 22px; top: -10px; left: 28px; }

/* Anime character */
.hero-character {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.char-body {
  position: relative;
  width: 200px;
  height: 340px;
}

/* Head */
.char-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 88px;
  background: #fde8d0;
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hair */
.char-head::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -6px;
  right: -6px;
  height: 52px;
  background: #2c1810;
  border-radius: 50% 50% 30% 30%;
  z-index: 1;
}

/* Hair side strands */
.char-head::after {
  content: '';
  position: absolute;
  top: 8px;
  left: -14px;
  width: 16px;
  height: 40px;
  background: #2c1810;
  border-radius: 8px 0 8px 12px;
  z-index: 0;
}

/* Eyes */
.char-eyes {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}

.char-eye {
  width: 14px;
  height: 16px;
  background: #1a0a00;
  border-radius: 50%;
  position: relative;
}
.char-eye::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}

/* Blush */
.char-blush-left, .char-blush-right {
  position: absolute;
  top: 52px;
  width: 14px;
  height: 8px;
  background: rgba(255,150,130,0.45);
  border-radius: 50%;
  z-index: 5;
}
.char-blush-left { left: 8px; }
.char-blush-right { right: 8px; }

/* Mouth */
.char-mouth {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 7px;
  border-bottom: 2.5px solid #c0705a;
  border-radius: 0 0 50% 50%;
  z-index: 5;
}

/* Torso */
.char-torso {
  position: absolute;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 90px;
  background: #FF6B6B;
  border-radius: 12px 12px 8px 8px;
}

/* Collar */
.char-torso::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 20px;
  background: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Skirt */
.char-skirt {
  position: absolute;
  top: 162px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 70px;
  background: #2c1810;
  border-radius: 4px 4px 20px 20px;
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
}

/* Legs */
.char-leg-left, .char-leg-right {
  position: absolute;
  top: 224px;
  width: 22px;
  height: 80px;
  background: #fde8d0;
  border-radius: 4px 4px 8px 8px;
}
.char-leg-left { left: 52px; }
.char-leg-right { right: 52px; }

/* Shoes */
.char-leg-left::after, .char-leg-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 30px;
  height: 16px;
  background: #2c1810;
  border-radius: 4px 8px 8px 4px;
}

/* Arms */
.char-arm-left, .char-arm-right {
  position: absolute;
  top: 90px;
  width: 18px;
  height: 70px;
  background: #FF6B6B;
  border-radius: 6px;
}
.char-arm-left { left: 28px; transform: rotate(8deg); transform-origin: top center; }
.char-arm-right { right: 28px; transform: rotate(-8deg); transform-origin: top center; }

/* Hands */
.char-arm-left::after, .char-arm-right::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #fde8d0;
  border-radius: 50%;
}

/* Floating laptop in hand */
.char-laptop {
  position: absolute;
  top: 148px;
  right: 14px;
  width: 52px;
  height: 36px;
  background: #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 8;
}
.char-laptop::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: #1a1a2e;
  border-radius: 2px;
}
.char-laptop::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -4px;
  right: -4px;
  height: 6px;
  background: #c8c8c8;
  border-radius: 0 0 4px 4px;
}

/* Floating UI elements */
.hero-float-1, .hero-float-2, .hero-float-3 {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  z-index: 15;
  white-space: nowrap;
  animation: float-bob 3s ease-in-out infinite;
}

.hero-float-1 {
  top: 18%;
  right: 8%;
  animation-delay: 0s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-float-1::before { content: '⚡'; font-size: 1rem; }

.hero-float-2 {
  top: 42%;
  left: 5%;
  animation-delay: 1s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-float-2::before { content: '🎨'; font-size: 1rem; }

.hero-float-3 {
  bottom: 28%;
  right: 6%;
  animation-delay: 2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-float-3::before { content: '✨'; font-size: 1rem; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero full-width sections below */
.hero-below {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo Strip */
.logo-strip-wrapper {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-100);
}
.logo-strip-label {
  color: var(--gray-300);
  font-size: 0.78rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 600;
}

.logo-strip {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logo-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}

.logo-track span {
  color: var(--gray-300);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Video Demo Section ===== */
.video-demo {
  padding: 80px 32px;
  background: var(--white);
}

.video-demo-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.video-mockup-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #c8e6c9 0%, #a5d6a7 30%, #81c784 55%, #4caf50 80%, #2e7d32 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ghibli pastoral background for video */
.video-mockup-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, #87ceeb 0%, rgba(135,206,235,0.6) 40%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, #2e7d32 0%, #388e3c 30%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 100%, #1b5e20 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, #1b5e20 0%, transparent 50%);
}

/* Floating clouds in video bg */
.video-mockup-wrap::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 100px;
  height: 36px;
  background: rgba(255,255,255,0.7);
  border-radius: 100px;
  box-shadow: 160px 20px 0 rgba(255,255,255,0.5), 300px -10px 0 rgba(255,255,255,0.6);
}

.video-screen {
  position: relative;
  z-index: 5;
  width: 72%;
  max-width: 680px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}

.video-screen-bar {
  background: #f0f0f0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.vs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.vs-dot:nth-child(1) { background: #ff5f57; }
.vs-dot:nth-child(2) { background: #febc2e; }
.vs-dot:nth-child(3) { background: #28c840; }

.video-screen-content {
  background: #1a1a2e;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255,107,107,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,107,0.5);
}
.play-btn:hover { transform: scale(1.1); background: var(--coral); }
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

/* ===== Plugins Preview (Home) ===== */
.plugins-preview {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.plugin-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plugin-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plugin-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.plugin-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); letter-spacing: -0.02em; }
.plugin-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }

.card-link {
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { opacity: 0.75; }

.plugins-more { text-align: center; }

/* ===== Guarantees ===== */
.guarantees {
  background: var(--gray-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.guarantee-item {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.guarantee-item:last-child { border-right: none; }

.g-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.guarantee-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); letter-spacing: -0.02em; }
.guarantee-item p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.65; }

/* ===== Testimonials ===== */
.testimonials {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}

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

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
}

.stars { color: var(--coral); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--gray-700); font-size: 0.92rem; line-height: 1.75; margin-bottom: 18px; }
.testimonial-author { color: var(--gray-300); font-size: 0.82rem; font-weight: 600; }

/* ===== FAQ ===== */
.faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--coral); }

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s;
  color: var(--black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--coral);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--coral); }

.faq-item p {
  padding: 0 22px 18px;
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 32px 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}

.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .logo-icon { height: 36px; width: auto; display: block; margin-bottom: 4px; }
.footer-brand .logo-text { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-top: 10px; line-height: 1.6; }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* ===== Page Hero (About / Plugins) ===== */
.page-hero {
  text-align: center;
  padding: 80px 32px 60px;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.page-hero p {
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== About Page ===== */
.about-story {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--black);
  letter-spacing: -0.03em;
}
.about-text p { color: var(--gray-500); margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}
.about-stat:hover { border-color: var(--coral); }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--coral); letter-spacing: -0.04em; }
.stat-label { color: var(--gray-500); font-size: 0.85rem; font-weight: 500; }

.values {
  background: var(--gray-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

.values-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--black); letter-spacing: -0.02em; }
.value-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.65; }

.team {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.team-card:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); }
.team-avatar {
  width: 64px;
  height: 64px;
  background: var(--coral-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 14px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.team-role { color: var(--coral); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }

.social-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--coral);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 3px;
}

.contact {
  background: var(--gray-100);
  border-top: 1px solid var(--border);
  padding: 80px 32px;
}

.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.contact-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.contact-card p { color: var(--gray-500); font-size: 0.9rem; }
.contact-note { color: var(--gray-300) !important; font-size: 0.8rem !important; margin-top: 6px; }

/* ===== Plugins Page ===== */
.plugins-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border-dark);
  background: transparent;
  color: var(--gray-500);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
  font-weight: 600;
}

.plugins-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plugin-full-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plugin-full-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
a.plugin-full-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.plugin-full-card.hidden { display: none; }

.pfc-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pfc-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pfc-icon img {
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: 0px;
}
.pfc-header h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--black); letter-spacing: -0.02em; }

.pfc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
/* 已有分类 */
.pfc-tag.export  { background: #e8f4fd; color: #2980b9; }
.pfc-tag.convert { background: #f3eeff; color: #7c3aed; }
.pfc-tag.review  { background: #edfaf3; color: #16a34a; }
.pfc-tag.collab  { background: var(--coral-mid); color: var(--coral-dark); }

/* 通用语义标签 */
.pfc-tag.new     { background: #e8f4fd; color: #0369a1; }   /* 蓝 — 新上线 */
.pfc-tag.beta    { background: #fef9c3; color: #a16207; }   /* 黄 — 内测/Beta */
.pfc-tag.free    { background: #edfaf3; color: #16a34a; }   /* 绿 — 免费 */
.pfc-tag.hot     { background: #fff0f0; color: #dc2626; }   /* 红 — 热门 */
.pfc-tag.ai      { background: #f3eeff; color: #7c3aed; }   /* 紫 — AI */
.pfc-tag.plugin  { background: #fff7ed; color: #c2410c; }   /* 橙 — 插件 */
.pfc-tag.tool    { background: #f0fdf4; color: #15803d; }   /* 深绿 — 工具 */
.pfc-tag.gray    { background: #f3f4f6; color: #6b7280; }   /* 灰 — 归档/停更 */
.pfc-tag.eagle   { background: #fff7ed; color: #c2410c; }   /* 橙 — Eagle 插件 */
.pfc-tag.figma   { background: #f0f4ff; color: #4f46e5; }   /* 靛蓝 — Figma 插件 */
.pfc-tag.paid    { background: #fdf4ff; color: #9333ea; }   /* 紫红 — 按量付费 */

.plugin-full-card > p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.65; }

.pfc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.pfc-features li {
  color: var(--gray-700);
  font-size: 0.86rem;
  padding-left: 18px;
  position: relative;
}
.pfc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 800;
  font-size: 0.8rem;
}

.pfc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 0; }
  .hero-right { height: 400px; }
  .hero-left { padding-bottom: 40px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .plugins-full-grid { grid-template-columns: repeat(2, 1fr); }
  .plugin-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero { padding: 48px 20px 0; }
  .hero-right { height: 320px; }
  .hero-character { width: 160px; }
  .char-body { width: 160px; height: 280px; }

  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .guarantees { grid-template-columns: 1fr; }
  .guarantee-item { border-right: none; border-bottom: 1px solid var(--border); }
  .guarantee-item:last-child { border-bottom: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .plugins-full-grid { grid-template-columns: 1fr; }
  .plugin-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: column; gap: 32px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .video-screen { width: 90%; }
}

@media (max-width: 480px) {
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .plugin-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-right { height: 260px; }
}
