/* FUGO Labs — Shared Stylesheet */
:root {
  --bg: #05070B;
  --bg2: #0B1020;
  --card: #0f1520;
  --border: rgba(255,255,255,0.07);
  --fugo: #0A84FF;
  --tam2: #FF6B00;
  --success: #30D158;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.45);
  --subtle: rgba(255,255,255,0.12);
  --radius: 20px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,7,11,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
}
.nav-brand span { opacity: 0.45; font-weight: 400; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--text); transition: color 0.2s; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--subtle); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 14px; font-size: 12px;
  color: var(--muted); margin-bottom: 28px; letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 80px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.08; margin-bottom: 20px;
}
.hero h1 .accent-fugo { color: var(--fugo); }
.hero h1 .accent-tam2 { color: var(--tam2); }
.hero p {
  font-size: clamp(16px, 2.5vw, 20px); color: var(--muted);
  max-width: 560px; margin: 0 auto 48px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 14px; font-size: 15px;
  font-weight: 600; cursor: pointer; transition: all 0.2s; border: none;
  font-family: var(--font);
}
.btn-fugo { background: var(--fugo); color: #fff; }
.btn-fugo:hover { background: #3399ff; transform: translateY(-1px); }
.btn-tam2 { background: var(--tam2); color: #fff; }
.btn-tam2:hover { background: #ff8533; transform: translateY(-1px); }
.btn-ghost { background: var(--subtle); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-soon { opacity: 0.5; cursor: default; }

/* Section */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 520px; }

/* Product Cards */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
@media (max-width: 720px) { .products { grid-template-columns: 1fr; } }

.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px; position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.card-fugo::before { background: var(--fugo); }
.card-tam2::before { background: var(--tam2); }

.product-icon {
  width: 72px; height: 72px; border-radius: 18px; margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.product-name { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.product-tagline { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.product-features { list-style: none; margin-bottom: 28px; }
.product-features li {
  font-size: 14px; color: rgba(255,255,255,0.7);
  padding: 5px 0; display: flex; align-items: center; gap: 8px;
}
.product-features li::before { content: '✓'; font-size: 12px; }
.card-fugo .product-features li::before { color: var(--fugo); }
.card-tam2 .product-features li::before { color: var(--tam2); }

.tf-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 10px; font-size: 11px; color: var(--muted);
  margin-top: 10px;
}

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 720px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

.feature-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-text { font-size: 13px; color: var(--muted); }

/* Divider */
.divider { width: 100%; height: 1px; background: var(--border); }

/* Footer */
footer {
  padding: 48px 24px; text-align: center;
  font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--border);
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }

/* Legal Pages */
.legal-content {
  max-width: 720px; margin: 120px auto 80px; padding: 0 24px;
}
.legal-content h1 { font-size: 36px; font-weight: 800; margin-bottom: 32px; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.legal-content p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.legal-content a { color: var(--fugo); }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }

/* Lang Switch */
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; gap: 2px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 8px; padding: 3px; flex-shrink: 0; }
.lang-btn { background: none; border: none; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 8px; border-radius: 5px; color: var(--muted); font-family: var(--font); transition: all 0.15s; }
.lang-btn.active { background: rgba(255,255,255,0.14); color: var(--text); }
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.7); }

/* Social Footer */
.footer-social { display: flex; gap: 20px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.footer-social a { color: var(--muted); font-size: 13px; transition: color 0.2s; }
.footer-social a:hover { color: var(--text); }

@media (max-width: 600px) {
  .nav-links { gap: 16px; font-size: 13px; }
  .nav-links a.nav-hide-sm { display: none; }
}

/* Coming Soon Page */
.coming-soon {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 40px 24px;
}
.coming-soon h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 800; margin-bottom: 16px; }
.coming-soon p { font-size: 18px; color: var(--muted); max-width: 440px; margin-bottom: 40px; }
