/* app2u brand hub */
:root {
  --bg: #07080c;
  --bg2: #0e1118;
  --card: #141922;
  --line: #243044;
  --text: #e8edf7;
  --muted: #93a0b8;
  --accent: #5b8cff;
  --accent2: #38e8c4;
  --warn: #f5c451;
  --radius: 18px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 10% -10%, #15203a 0%, transparent 55%),
              radial-gradient(900px 500px at 100% 0%, #0c2a28 0%, transparent 45%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7,8,12,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .9rem 0;
}
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; letter-spacing: -.02em; }
.logo {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #041018; font-size: .85rem; font-weight: 900;
}
.nav-links { display: flex; gap: 1.1rem; color: var(--muted); font-size: .95rem; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: .55rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .62rem 1rem; font-weight: 700; font-size: .92rem;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #7aa4ff);
  color: #061018;
}
.btn-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.hero { padding: 4.5rem 0 2.5rem; }
.eyebrow {
  display: inline-block; color: var(--accent2); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; font-size: .75rem;
}
h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08; margin: .55rem 0 1rem; letter-spacing: -.03em;
}
h1 .xp {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--muted); font-size: 1.12rem; max-width: 48rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .9fr; gap: 2rem; align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent), var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.chip {
  border: 1px solid var(--line); border-radius: 999px; padding: .35rem .7rem;
  color: var(--muted); font-size: .82rem; background: rgba(255,255,255,.02);
}
.section { padding: 3rem 0; }
.head { margin-bottom: 1.4rem; }
h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: .35rem 0 .5rem; letter-spacing: -.02em;
}
.text-muted { color: var(--muted); max-width: 42rem; }
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: #3a5078; transform: translateY(-2px); }
.card h3 { margin: .35rem 0 .45rem; font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(91,140,255,.12); color: var(--accent);
  font-weight: 800;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem;
}
@media (max-width: 880px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 1rem;
}
.stat .num { font-size: 1.45rem; font-weight: 800; letter-spacing: -.03em; }
.stat .lbl { color: var(--muted); font-size: .85rem; margin-top: .2rem; }
.table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
}
.table th, .table td {
  text-align: left; padding: .75rem .6rem;
  border-bottom: 1px solid var(--line);
}
.table th { color: var(--muted); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0 3rem; color: var(--muted); font-size: .9rem;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: 999px;
  background: rgba(56,232,196,.12); color: var(--accent2);
}
.tag.soft { background: rgba(91,140,255,.12); color: #9bb8ff; }
.lang a { opacity: .55; margin-left: .35rem; font-weight: 700; font-size: .85rem; }
.lang a.is-on { opacity: 1; color: var(--text); }
.note {
  border-left: 3px solid var(--accent2);
  padding: .6rem 0 .6rem 1rem;
  color: var(--muted);
  margin: 1rem 0;
}
.apps-list { display: grid; gap: .75rem; }
.app-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.1rem;
}
.app-row small { color: var(--muted); }
