* { box-sizing: border-box; }
[hidden] { display: none !important; }
svg { max-width: 100%; height: auto; }
.fc-icon, .sc-icon { overflow: hidden; }

html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #1a1a1a;
  color: #e8e8e8;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.land-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid #2a2a2a;
}
.land-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5f5f5;
  text-decoration: none;
}
.land-brand .lock {
  display: inline-flex;
  width: 24px; height: 24px;
  background: #0d2530;
  border: 1px solid #3a5a70;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  color: #9de;
}
.land-brand-name {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.land-brand-name .wm-no { color: #cef; }
.land-brand-name .wm-cloud { color: #7bc; }
.land-brand-name .wm-pdf { color: #5b8df6; }
.land-brand:hover .land-brand-name { filter: brightness(1.15); }
.land-nav { display: flex; gap: 22px; align-items: center; }
.land-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.12s;
}
.land-nav a:hover { color: #fff; }
.land-lang-select {
  background: #1d1d1d;
  color: #ccc;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.land-lang-select:hover { border-color: #555; color: #eee; }

.land-main {
  flex: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 36px 28px 64px;
}

.land-hero { text-align: center; margin-bottom: 28px; }
.land-hero h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 12px;
  color: #f5f5f5;
}
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #888;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 6px; }
.trust-bar .dot { color: #4ade80; font-size: 14px; }

/* Featured live tool card */
.featured-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #1e2a3e 0%, #1a1a1a 70%);
  border: 1px solid #2a3a55;
  border-radius: 14px;
  padding: 28px 32px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 32px;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.featured-card:hover {
  border-color: #4a6a90;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 255, 0.12);
}
.fc-left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.fc-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, #5b8df6 18%, transparent);
  color: #5b8df6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fc-icon svg { width: 34px; height: 34px; }
.fc-title {
  font-size: 20px;
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.fc-desc {
  color: #a8a8a8;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}
.fc-cta {
  flex-shrink: 0;
  background: #2e7dff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.12s;
}
.featured-card:hover .fc-cta { background: #1e6ff0; }

/* Soon row */
.soon-head {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 0.09em;
  margin: 0 0 12px;
  padding-inline-start: 4px;
}
.soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.soon-card {
  background: #171717;
  border: 1px dashed #2a2a2a;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.78;
  transition: opacity 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.soon-card:hover { opacity: 1; }
.soon-card.live {
  opacity: 1;
  border-style: solid;
  border-color: #2a2a2a;
  cursor: pointer;
}
.soon-card.live:hover {
  border-color: color-mix(in srgb, var(--accent, #4ade80) 60%, #2a2a2a);
  transform: translateY(-2px);
}
.soon-card .sc-cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent, #4ade80);
  margin-top: auto;
}
.soon-card .sc-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent, #888) 14%, transparent);
  color: var(--accent, #888);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.soon-card .sc-icon svg { width: 14px; height: 14px; }
.soon-card .sc-title {
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  letter-spacing: -0.005em;
}
.soon-card .sc-ship {
  font-size: 12px;
  color: #777;
  margin-top: auto;
}
.soon-card.t-merge    { --accent: #4ade80; }
.soon-card.t-compress { --accent: #a78bfa; }
.soon-card.t-invoice  { --accent: #fbbf24; }

/* Blog — single-line link */
.blog-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  background: #161616;
  border: 1px solid #222;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.12s, background 0.12s;
}
.blog-line:hover {
  border-color: #3a5a70;
  background: #1a1a1a;
}
.blog-line .bl-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.09em;
  flex-shrink: 0;
}
.blog-line .bl-title {
  color: #ddd;
  font-size: 13.5px;
  flex: 1;
  line-height: 1.4;
}
.blog-line .bl-arrow {
  color: #888;
  font-size: 14px;
  flex-shrink: 0;
}
.blog-line:hover .bl-arrow { color: #9de; }

/* Footer */
.land-footer {
  padding: 20px 28px 26px;
  border-top: 1px solid #1f1f1f;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  color: #666;
  font-size: 12.5px;
}
.land-footer a { color: #888; text-decoration: none; }
.land-footer a:hover { color: #ccc; }

@media (max-width: 720px) {
  .land-hero h1 { font-size: 26px; }
  .land-main { padding: 24px 18px 48px; }
  .land-header { padding: 10px 18px; }
  .land-nav { gap: 14px; }
  .trust-bar { gap: 12px; font-size: 11.5px; }

  .featured-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 20px;
  }
  .fc-cta { text-align: center; padding: 11px 18px; }
  .fc-title { font-size: 18px; }

  .soon-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .soon-card { padding: 10px 10px; }
  .soon-card .sc-title { font-size: 12.5px; }
  .soon-card .sc-ship { font-size: 10.5px; }

  .blog-line { flex-direction: column; align-items: flex-start; gap: 6px; }
  .blog-line .bl-arrow { align-self: flex-end; }
}
@media (max-width: 420px) {
  .soon-grid { grid-template-columns: 1fr; }
}
